aboutsummaryrefslogtreecommitdiffstats
path: root/internal.c
Commit message (Expand)AuthorAgeFilesLines
* internal: Move parallel logic into internal_par implementationEdward O'Callaghan2023-02-151-57/+2
* internal.c: Factor out laptop alerts into helper funcEdward O'Callaghan2023-02-141-25/+31
* internal.c: Move sio register to own objectEdward O'Callaghan2023-02-041-28/+0
* internal,board_enable: Remove force_boardenable from globalsEdward O'Callaghan2023-01-151-4/+4
* parallel: Drop explicit fallback_chip_X boilerplateEdward O'Callaghan2023-01-111-1/+0
* internal.c: laptop_ok global state can become staleEdward O'Callaghan2022-12-011-0/+3
* tree/: Rename ERROR_FATAL to ERROR_FLASHROM_FATALEdward O'Callaghan2022-11-091-1/+1
* drivers: Move (un)map_flash_region to par/spi/opaque_masterJonathon Hall2022-10-081-2/+2
* drivers/: Make 'internal_delay' the default unless definedEdward O'Callaghan2022-09-271-1/+0
* internal.c: Pass `programmer_cfg` to `try_mtd()`Angel Pons2022-09-211-1/+1
* tree: Retype variable `laptop_ok` with boolFelix Singer2022-09-081-1/+1
* internal.c: Retype appropriate variables with boolFelix Singer2022-09-081-12/+13
* tree: plumb programmer_cfg into chipset_flash_enable()Edward O'Callaghan2022-09-071-1/+1
* tree: Port programmers to pass programmer_cfg to extractorsEdward O'Callaghan2022-09-071-4/+4
* it87spi.c: Allow passing programmer_cfg directlyEdward O'Callaghan2022-09-071-1/+1
* tree: Allow passing programmer_cfg directly to programmerEdward O'Callaghan2022-09-071-3/+5
* tree: Change signature of extract_programmer_param_str()Edward O'Callaghan2022-09-071-4/+4
* Add `str` extension to extract_programmer_param function nameChinmay Lonkar2022-07-021-4/+4
* tree: indent struct *_master consistently with tabsThomas Heijligen2022-06-271-8/+8
* pcidev: Move pci_dev_find() from internal to canonical placeEdward O'Callaghan2022-03-221-11/+0
* pcidev: Move pci_card_find() from internal to canonical placeEdward O'Callaghan2022-03-221-19/+0
* pcidev: Move scandev_inclass logic from internal to pcidevEdward O'Callaghan2022-03-041-19/+0
* pcidev: Avoid internal programmer relying on pacc globalEdward O'Callaghan2022-02-241-23/+14
* internal.c: Seperate out get_params() from internal_init()Edward O'Callaghan2022-02-171-15/+35
* hwaccess: fix build on non-x86 targetsPeter Marheine2022-01-251-6/+9
* hwaccess: move mmio functions into hwaccess_physmapThomas Heijligen2022-01-201-1/+0
* physmap: rename to hwaccess_physmap, create own headerThomas Heijligen2021-12-221-0/+1
* hwaccess: move x86 port I/O related code into own filesThomas Heijligen2021-12-221-0/+1
* pci.h: move include into own wrapperThomas Heijligen2021-12-221-0/+1
* hwaccess: replace flashrom specific macros by compiler definesThomas Heijligen2021-10-151-1/+0
* internal.c: unify the macro for x86 only codeThomas Heijligen2021-09-291-7/+7
* programmer_table: move each entry to the associated programmer sourceThomas Heijligen2021-06-101-1/+11
* programmer: Smoothen register_par_master APIAnastasia Klimchuk2021-05-231-1/+1
* Add missing platform.h includesMiriam Polzer2020-12-261-0/+1
* internal.c: De-maze the pre-processor wraps a littleEdward O'Callaghan2020-10-281-5/+3
* internal.c: Co-locate global variables to top of fileEdward O'Callaghan2020-10-271-8/+8
* internal.c: Reshuffle functions to avoid forward declsEdward O'Callaghan2020-10-271-50/+36
* internal: Fix board vendor and model memory leaksJacob Garber2019-09-241-15/+32
* tree: Remove unused functions with no prototypesJacob Garber2019-06-231-11/+0
* Rework internal bus handling and laptop bail-outNico Huber2019-06-061-31/+39
* linux_mtd: Import driver from ChromiumOSDavid Hendricks2018-05-171-0/+3
* Remove address from GPLv2 headersElyes HAOUAS2018-04-241-4/+0
* internal: Only build on x86 and mipselNico Huber2017-12-191-33/+3
* internal: Fix warnings about unused constantsNico Huber2017-12-091-0/+4
* Pimp the manpage to create nicer hyperlinks and HTML outputStefan Tauner2016-01-141-1/+1
* Unify target OS and CPU architecture checksStefan Tauner2015-01-101-8/+8
* Introduce generic shutdown_free() and remove redundant internal_shutdown()Stefan Tauner2014-08-311-7/+0
* Rename programmer registration functionsCarl-Daniel Hailfinger2014-07-191-2/+2
* IT87: Add ability to select between chips on GIGABYTE DualBIOS boardsVadim Girlin2013-08-241-3/+2
* Various cross-platform fixesCarl-Daniel Hailfinger2013-07-131-1/+5
585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099