Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 1 | project('flashromutils', 'c', |
Nikolai Artemiev | 47cb6fc | 2022-07-22 09:58:14 +1000 | [diff] [blame] | 2 | version : run_command('util/getversion.sh', '--version', check : true).stdout().strip(), |
Nico Huber | b417c0c | 2019-09-24 22:12:40 +0200 | [diff] [blame] | 3 | license : 'GPL-2.0', |
Angel Pons | 3064943 | 2021-01-26 10:21:46 +0100 | [diff] [blame] | 4 | meson_version : '>=0.50.0', |
Anastasia Klimchuk | 3c50843 | 2022-04-13 15:15:24 +1000 | [diff] [blame] | 5 | default_options : [ |
| 6 | 'warning_level=2', |
| 7 | 'c_std=c99', |
Anastasia Klimchuk | c676be9 | 2022-04-26 14:53:18 +1000 | [diff] [blame] | 8 | 'werror=true', |
Anastasia Klimchuk | 3c50843 | 2022-04-13 15:15:24 +1000 | [diff] [blame] | 9 | 'optimization=s', |
Nikolai Artemiev | 47cb6fc | 2022-07-22 09:58:14 +1000 | [diff] [blame] | 10 | 'debug=false', |
| 11 | ], |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 12 | ) |
| 13 | |
| 14 | # libtool versioning |
| 15 | lt_current = '1' |
| 16 | lt_revision = '0' |
| 17 | lt_age = '0' |
| 18 | lt_version = '@0@.@1@.@2@'.format(lt_current, lt_age, lt_revision) |
| 19 | |
Jacob Garber | 4a84ec2 | 2019-07-25 19:12:31 -0600 | [diff] [blame] | 20 | # hide/enable some warnings |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 21 | warning_flags = [ |
Anastasia Klimchuk | cde7011 | 2021-10-25 13:20:26 +1100 | [diff] [blame] | 22 | '-Wshadow', |
| 23 | '-Wmissing-prototypes', |
Jacob Garber | 4a84ec2 | 2019-07-25 19:12:31 -0600 | [diff] [blame] | 24 | '-Wwrite-strings', |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 25 | '-Wno-unused-parameter', |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 26 | '-Wno-address-of-packed-member', |
| 27 | '-Wno-enum-conversion', |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 28 | '-Wno-missing-braces', |
| 29 | ] |
| 30 | |
| 31 | conf = configuration_data() |
| 32 | |
| 33 | cc = meson.get_compiler('c') |
| 34 | add_project_arguments(cc.get_supported_arguments(warning_flags), language : 'c') |
| 35 | add_project_arguments('-D_DEFAULT_SOURCE', language : 'c') |
Rosen Penev | 566193f | 2020-07-18 12:50:16 -0700 | [diff] [blame] | 36 | add_project_arguments('-D_POSIX_C_SOURCE=200809L', language : 'c') # required for fileno, nanosleep, and strndup |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 37 | add_project_arguments('-D_BSD_SOURCE', language : 'c') # required for glibc < v2.19 |
| 38 | add_project_arguments('-DFLASHROM_VERSION="' + meson.project_version() + '"', language : 'c') |
| 39 | |
| 40 | # get defaults from configure |
| 41 | config_atahpt = get_option('config_atahpt') |
| 42 | config_atapromise = get_option('config_atapromise') |
| 43 | config_atavia = get_option('config_atavia') |
| 44 | config_buspirate_spi = get_option('config_buspirate_spi') |
| 45 | config_ch341a_spi = get_option('config_ch341a_spi') |
| 46 | config_dediprog = get_option('config_dediprog') |
| 47 | config_developerbox_spi = get_option('config_developerbox_spi') |
| 48 | config_digilent_spi = get_option('config_digilent_spi') |
Jean THOMAS | e28d8e4 | 2022-10-11 17:54:30 +0200 | [diff] [blame] | 49 | config_dirtyjtag_spi = get_option('config_dirtyjtag_spi') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 50 | config_drkaiser = get_option('config_drkaiser') |
| 51 | config_dummy = get_option('config_dummy') |
| 52 | config_ft2232_spi = get_option('config_ft2232_spi') |
| 53 | config_gfxnvidia = get_option('config_gfxnvidia') |
| 54 | config_internal = get_option('config_internal') |
| 55 | config_it8212 = get_option('config_it8212') |
Marc Schink | 7ec2d63 | 2020-12-08 22:20:50 +0100 | [diff] [blame] | 56 | config_jlink_spi = get_option('config_jlink_spi') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 57 | config_linux_mtd = get_option('config_linux_mtd') |
| 58 | config_linux_spi = get_option('config_linux_spi') |
| 59 | config_mstarddc_spi = get_option('config_mstarddc_spi') |
| 60 | config_nic3com = get_option('config_nic3com') |
| 61 | config_nicintel_eeprom = get_option('config_nicintel_eeprom') |
| 62 | config_nicintel = get_option('config_nicintel') |
| 63 | config_nicintel_spi = get_option('config_nicintel_spi') |
| 64 | config_nicnatsemi = get_option('config_nicnatsemi') |
| 65 | config_nicrealtek = get_option('config_nicrealtek') |
| 66 | config_ogp_spi = get_option('config_ogp_spi') |
| 67 | config_pickit2_spi = get_option('config_pickit2_spi') |
| 68 | config_pony_spi = get_option('config_pony_spi') |
| 69 | config_rayer_spi = get_option('config_rayer_spi') |
| 70 | config_satamv = get_option('config_satamv') |
| 71 | config_satasii = get_option('config_satasii') |
| 72 | config_serprog = get_option('config_serprog') |
| 73 | config_usbblaster_spi = get_option('config_usbblaster_spi') |
Miklós Márton | 324929c | 2019-08-01 19:14:10 +0200 | [diff] [blame] | 74 | config_stlinkv3_spi = get_option('config_stlinkv3_spi') |
Thomas Heijligen | 84e9c91 | 2021-06-01 16:22:14 +0200 | [diff] [blame] | 75 | config_default_programmer_name = get_option('default_programmer_name') |
| 76 | config_default_programmer_args = get_option('default_programmer_args') |
Daniel Campello | f7a84fd | 2021-03-16 17:17:14 -0600 | [diff] [blame] | 77 | config_print_wiki= get_option('print_wiki') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 78 | |
| 79 | cargs = [] |
| 80 | deps = [] |
Thomas Heijligen | 51208f3 | 2022-04-28 11:07:29 +0200 | [diff] [blame] | 81 | srcs = files( |
| 82 | '82802ab.c', |
| 83 | 'at45db.c', |
| 84 | 'bitbang_spi.c', |
| 85 | 'edi.c', |
| 86 | 'en29lv640b.c', |
| 87 | 'flashchips.c', |
| 88 | 'flashrom.c', |
| 89 | 'fmap.c', |
| 90 | 'helpers.c', |
| 91 | 'ich_descriptors.c', |
| 92 | 'jedec.c', |
| 93 | 'layout.c', |
| 94 | 'libflashrom.c', |
| 95 | 'opaque.c', |
| 96 | 'print.c', |
| 97 | 'programmer.c', |
| 98 | 'programmer_table.c', |
| 99 | 'sfdp.c', |
| 100 | 'spi25.c', |
| 101 | 'spi25_statusreg.c', |
| 102 | 'spi95.c', |
| 103 | 'spi.c', |
| 104 | 'sst28sf040.c', |
| 105 | 'sst49lfxxxc.c', |
| 106 | 'sst_fwhub.c', |
| 107 | 'stm50.c', |
| 108 | 'udelay.c', |
| 109 | 'w29ee011.c', |
| 110 | 'w39.c', |
| 111 | 'writeprotect.c', |
| 112 | 'writeprotect_ranges.c', |
| 113 | ) |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 114 | |
Thomas Heijligen | 328a64a | 2022-04-25 14:42:17 +0200 | [diff] [blame] | 115 | subdir('platform') |
| 116 | |
Peter Marheine | 306c8b7 | 2022-01-21 02:07:30 +0000 | [diff] [blame] | 117 | host_is_x86 = ['x86', 'x86_64'].contains(host_machine.cpu_family()) |
| 118 | |
| 119 | need_serial = [ |
| 120 | config_buspirate_spi, config_pony_spi, config_serprog, |
| 121 | ].contains(true) |
| 122 | need_bitbang_spi = [ |
| 123 | config_internal, config_nicintel_spi, config_ogp_spi, |
| 124 | config_pony_spi, config_rayer_spi, |
| 125 | ].contains(true) |
| 126 | need_raw_mem_access = [ |
| 127 | config_atapromise, config_drkaiser, config_gfxnvidia, config_internal, |
| 128 | config_it8212, config_nicintel, config_nicintel_eeprom, config_nicintel_spi, |
| 129 | config_ogp_spi, config_satamv, config_satasii, |
| 130 | ].contains(true) |
| 131 | # Internal programmer uses x86 features if the system is x86 |
| 132 | need_x86_msr = config_internal and host_is_x86 |
| 133 | need_x86_port_io = [ |
| 134 | config_atahpt, config_atapromise, config_internal and host_is_x86, |
| 135 | config_nic3com, config_nicnatsemi, config_nicrealtek, config_rayer_spi, |
| 136 | config_satamv, |
| 137 | ].contains(true) |
| 138 | need_libpci = [ |
| 139 | config_atahpt, config_atapromise, config_atavia, |
| 140 | config_drkaiser, config_gfxnvidia, config_internal, config_it8212, |
| 141 | config_nic3com, config_nicintel, config_nicintel_eeprom, config_nicintel_spi, |
| 142 | config_nicnatsemi, config_nicrealtek, config_ogp_spi, config_satamv, |
| 143 | config_satasii, |
| 144 | ].contains(true) |
| 145 | need_libusb1 = [ |
| 146 | config_ch341a_spi, config_dediprog, config_developerbox_spi, |
| 147 | config_digilent_spi, config_dirtyjtag_spi, config_pickit2_spi, |
| 148 | config_stlinkv3_spi, |
| 149 | ].contains(true) |
| 150 | need_libftdi1 = [ |
| 151 | config_ft2232_spi, config_usbblaster_spi, |
| 152 | ].contains(true) |
| 153 | need_libjaylink = config_jlink_spi |
| 154 | |
| 155 | if (need_x86_port_io or need_x86_msr) and not host_is_x86 |
| 156 | error('one or more enabled programmer only supports x86 and target is not') |
| 157 | endif |
| 158 | |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 159 | |
| 160 | # check for required symbols |
| 161 | if cc.has_function('clock_gettime') |
| 162 | add_project_arguments('-DHAVE_CLOCK_GETTIME=1', language : 'c') |
| 163 | endif |
| 164 | if cc.has_function('strnlen') |
| 165 | add_project_arguments('-DHAVE_STRNLEN=1', language : 'c') |
| 166 | endif |
| 167 | if cc.check_header('sys/utsname.h') |
| 168 | add_project_arguments('-DHAVE_UTSNAME=1', language : 'c') |
| 169 | endif |
Thomas Heijligen | c02b1a9 | 2022-04-25 14:54:10 +0200 | [diff] [blame] | 170 | if host_machine.system() in ['cygwin', 'windows'] |
| 171 | add_project_arguments('-DIS_WINDOWS=1', language : 'c') |
| 172 | else |
| 173 | add_project_arguments('-DIS_WINDOWS=0', language : 'c') |
| 174 | endif |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 175 | |
| 176 | # some programmers require libusb |
| 177 | if get_option('usb') |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 178 | srcs += files('usbdev.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 179 | deps += dependency('libusb-1.0') |
Peter Marheine | 306c8b7 | 2022-01-21 02:07:30 +0000 | [diff] [blame] | 180 | elif need_libusb1 |
| 181 | error('usb is disabled but one or more enabled programmer requires USB access') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 182 | endif |
| 183 | |
| 184 | # some programmers require libpci |
| 185 | if get_option('pciutils') |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 186 | srcs += files('pcidev.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 187 | deps += dependency('libpci') |
Peter Marheine | 306c8b7 | 2022-01-21 02:07:30 +0000 | [diff] [blame] | 188 | elif need_libpci |
| 189 | error('pciutils is disabled but one or more enabled programmer requires PCI access') |
| 190 | endif |
| 191 | |
| 192 | if need_libftdi1 |
| 193 | deps += dependency('libftdi1') |
| 194 | endif |
| 195 | |
| 196 | if need_libjaylink |
| 197 | deps += dependency('libjaylink') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 198 | endif |
| 199 | |
| 200 | # set defines for configured programmers |
| 201 | if config_atahpt |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 202 | srcs += files('atahpt.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 203 | cargs += '-DCONFIG_ATAHPT=1' |
| 204 | endif |
| 205 | if config_atapromise |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 206 | srcs += files('atapromise.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 207 | cargs += '-DCONFIG_ATAPROMISE=1' |
| 208 | endif |
| 209 | if config_atavia |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 210 | srcs += files('atavia.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 211 | cargs += '-DCONFIG_ATAVIA=1' |
| 212 | endif |
| 213 | if config_buspirate_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 214 | srcs += files('buspirate_spi.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 215 | cargs += '-DCONFIG_BUSPIRATE_SPI=1' |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 216 | endif |
| 217 | if config_ch341a_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 218 | srcs += files('ch341a_spi.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 219 | cargs += '-DCONFIG_CH341A_SPI=1' |
| 220 | endif |
| 221 | if config_dediprog |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 222 | srcs += files('dediprog.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 223 | cargs += '-DCONFIG_DEDIPROG=1' |
| 224 | endif |
| 225 | if config_developerbox_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 226 | srcs += files('developerbox_spi.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 227 | cargs += '-DCONFIG_DEVELOPERBOX_SPI=1' |
| 228 | endif |
| 229 | if config_digilent_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 230 | srcs += files('digilent_spi.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 231 | cargs += '-DCONFIG_DIGILENT_SPI=1' |
| 232 | endif |
Jean THOMAS | e28d8e4 | 2022-10-11 17:54:30 +0200 | [diff] [blame] | 233 | if config_dirtyjtag_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 234 | srcs += files('dirtyjtag_spi.c') |
Jean THOMAS | e28d8e4 | 2022-10-11 17:54:30 +0200 | [diff] [blame] | 235 | cargs += '-DCONFIG_DIRTYJTAG_SPI=1' |
| 236 | endif |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 237 | if config_drkaiser |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 238 | srcs += files('drkaiser.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 239 | cargs += '-DCONFIG_DRKAISER=1' |
| 240 | endif |
| 241 | if config_dummy |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 242 | srcs += files('dummyflasher.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 243 | cargs += '-DCONFIG_DUMMY=1' |
| 244 | endif |
| 245 | if config_ft2232_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 246 | srcs += files('ft2232_spi.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 247 | cargs += '-DCONFIG_FT2232_SPI=1' |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 248 | cargs += '-DHAVE_FT232H=1' |
| 249 | endif |
| 250 | if config_gfxnvidia |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 251 | srcs += files('gfxnvidia.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 252 | cargs += '-DCONFIG_GFXNVIDIA=1' |
| 253 | endif |
| 254 | if config_internal |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 255 | srcs += files( |
| 256 | 'board_enable.c', |
| 257 | 'cbtable.c', |
| 258 | 'chipset_enable.c', |
| 259 | 'internal.c', |
| 260 | 'processor_enable.c', |
| 261 | ) |
Peter Marheine | 306c8b7 | 2022-01-21 02:07:30 +0000 | [diff] [blame] | 262 | if host_is_x86 |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 263 | srcs += files( |
| 264 | 'amd_imc.c', |
| 265 | 'dmi.c', |
| 266 | 'ichspi.c', |
| 267 | 'it87spi.c', |
| 268 | 'mcp6x_spi.c', |
| 269 | 'sb600spi.c', |
| 270 | 'wbsio_spi.c', |
| 271 | ) |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 272 | endif |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 273 | cargs += '-DCONFIG_INTERNAL=1' |
| 274 | if get_option('config_internal_dmi') |
| 275 | # Use internal DMI/SMBIOS decoder by default instead of relying on dmidecode. |
| 276 | cargs += '-DCONFIG_INTERNAL_DMI=1' |
| 277 | endif |
| 278 | endif |
| 279 | if config_it8212 |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 280 | srcs += files('it8212.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 281 | cargs += '-DCONFIG_IT8212=1' |
| 282 | endif |
Marc Schink | 7ec2d63 | 2020-12-08 22:20:50 +0100 | [diff] [blame] | 283 | if config_jlink_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 284 | srcs += files('jlink_spi.c') |
Marc Schink | 7ec2d63 | 2020-12-08 22:20:50 +0100 | [diff] [blame] | 285 | cargs += '-DCONFIG_JLINK_SPI=1' |
Marc Schink | 7ec2d63 | 2020-12-08 22:20:50 +0100 | [diff] [blame] | 286 | endif |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 287 | if config_linux_mtd |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 288 | srcs += files('linux_mtd.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 289 | cargs += '-DCONFIG_LINUX_MTD=1' |
| 290 | endif |
| 291 | if config_linux_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 292 | srcs += files('linux_spi.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 293 | cargs += '-DCONFIG_LINUX_SPI=1' |
| 294 | endif |
| 295 | if config_mstarddc_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 296 | srcs += files('mstarddc_spi.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 297 | cargs += '-DCONFIG_MSTARDDC_SPI=1' |
| 298 | endif |
| 299 | if config_nic3com |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 300 | srcs += files('nic3com.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 301 | cargs += '-DCONFIG_NIC3COM=1' |
| 302 | endif |
| 303 | if config_nicintel |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 304 | srcs += files('nicintel.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 305 | cargs += '-DCONFIG_NICINTEL=1' |
| 306 | endif |
| 307 | if config_nicintel_eeprom |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 308 | srcs += files('nicintel_eeprom.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 309 | cargs += '-DCONFIG_NICINTEL_EEPROM=1' |
| 310 | endif |
| 311 | if config_nicintel_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 312 | srcs += files('nicintel_spi.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 313 | cargs += '-DCONFIG_NICINTEL_SPI=1' |
| 314 | endif |
| 315 | if config_nicnatsemi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 316 | srcs += files('nicnatsemi.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 317 | cargs += '-DCONFIG_NICNATSEMI=1' |
| 318 | endif |
| 319 | if config_nicrealtek |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 320 | srcs += files('nicrealtek.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 321 | cargs += '-DCONFIG_NICREALTEK=1' |
| 322 | endif |
| 323 | if config_ogp_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 324 | srcs += files('ogp_spi.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 325 | cargs += '-DCONFIG_OGP_SPI=1' |
| 326 | endif |
| 327 | if config_pickit2_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 328 | srcs += files('pickit2_spi.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 329 | cargs += '-DCONFIG_PICKIT2_SPI=1' |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 330 | endif |
| 331 | if config_pony_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 332 | srcs += files('pony_spi.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 333 | cargs += '-DCONFIG_PONY_SPI=1' |
| 334 | endif |
| 335 | if config_rayer_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 336 | srcs += files('rayer_spi.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 337 | cargs += '-DCONFIG_RAYER_SPI=1' |
| 338 | endif |
| 339 | if config_satamv |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 340 | srcs += files('satamv.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 341 | cargs += '-DCONFIG_SATAMV=1' |
| 342 | endif |
| 343 | if config_satasii |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 344 | srcs += files('satasii.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 345 | cargs += '-DCONFIG_SATASII=1' |
| 346 | endif |
| 347 | if config_serprog |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 348 | srcs += files('serprog.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 349 | cargs += '-DCONFIG_SERPROG=1' |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 350 | endif |
| 351 | if config_usbblaster_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 352 | srcs += files('usbblaster_spi.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 353 | cargs += '-DCONFIG_USBBLASTER_SPI=1' |
| 354 | endif |
Miklós Márton | 324929c | 2019-08-01 19:14:10 +0200 | [diff] [blame] | 355 | if config_stlinkv3_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 356 | srcs += files('stlinkv3_spi.c') |
Miklós Márton | 324929c | 2019-08-01 19:14:10 +0200 | [diff] [blame] | 357 | cargs += '-DCONFIG_STLINKV3_SPI=1' |
| 358 | endif |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 359 | |
| 360 | # bitbanging SPI infrastructure |
Peter Marheine | 306c8b7 | 2022-01-21 02:07:30 +0000 | [diff] [blame] | 361 | if need_bitbang_spi |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 362 | srcs += files('bitbang_spi.c') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 363 | cargs += '-DCONFIG_BITBANG_SPI=1' |
| 364 | endif |
| 365 | |
Peter Marheine | 306c8b7 | 2022-01-21 02:07:30 +0000 | [diff] [blame] | 366 | if need_raw_mem_access |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 367 | srcs += files('hwaccess_physmap.c') |
Peter Marheine | 306c8b7 | 2022-01-21 02:07:30 +0000 | [diff] [blame] | 368 | endif |
| 369 | |
| 370 | if need_x86_port_io |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 371 | srcs += files('hwaccess_x86_io.c') |
Thomas Heijligen | a065520 | 2021-12-14 16:36:05 +0100 | [diff] [blame] | 372 | cargs += '-D__FLASHROM_HAVE_OUTB__=1' |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 373 | endif |
| 374 | |
Peter Marheine | 306c8b7 | 2022-01-21 02:07:30 +0000 | [diff] [blame] | 375 | if need_x86_msr |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 376 | srcs += files('hwaccess_x86_msr.c') |
Peter Marheine | 306c8b7 | 2022-01-21 02:07:30 +0000 | [diff] [blame] | 377 | endif |
| 378 | |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 379 | # raw serial IO |
| 380 | if need_serial |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 381 | srcs += files('serial.c') |
Thomas Heijligen | 140c126 | 2021-09-27 15:12:26 +0200 | [diff] [blame] | 382 | if host_machine.system() == 'linux' |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 383 | srcs += files('custom_baud_linux.c') |
Thomas Heijligen | 140c126 | 2021-09-27 15:12:26 +0200 | [diff] [blame] | 384 | else |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 385 | srcs += files('custom_baud.c') |
Thomas Heijligen | 140c126 | 2021-09-27 15:12:26 +0200 | [diff] [blame] | 386 | endif |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 387 | endif |
| 388 | |
Thomas Heijligen | 2ae9bf2 | 2022-05-03 12:00:14 +0200 | [diff] [blame] | 389 | if config_print_wiki |
Thomas Heijligen | 4bd966c | 2022-05-16 10:56:55 +0200 | [diff] [blame] | 390 | srcs += files('print_wiki.c') |
Thomas Heijligen | 2ae9bf2 | 2022-05-03 12:00:14 +0200 | [diff] [blame] | 391 | cargs += '-DCONFIG_PRINT_WIKI=1' |
| 392 | endif |
| 393 | |
| 394 | if config_default_programmer_name != '' |
| 395 | cargs += '-DCONFIG_DEFAULT_PROGRAMMER_NAME=&programmer_' + config_default_programmer_name |
| 396 | else |
| 397 | cargs += '-DCONFIG_DEFAULT_PROGRAMMER_NAME=NULL' |
| 398 | endif |
| 399 | |
| 400 | cargs += '-DCONFIG_DEFAULT_PROGRAMMER_ARGS="' + config_default_programmer_args + '"' |
| 401 | |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 402 | install_headers([ |
Thomas Heijligen | 58015c2 | 2022-04-14 13:50:55 +0200 | [diff] [blame] | 403 | 'include/libflashrom.h', |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 404 | ], |
| 405 | ) |
| 406 | |
Thomas Heijligen | 58015c2 | 2022-04-14 13:50:55 +0200 | [diff] [blame] | 407 | include_dir = include_directories('include') |
| 408 | |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 409 | mapfile = 'libflashrom.map' |
| 410 | vflag = '-Wl,--version-script,@0@/@1@'.format(meson.current_source_dir(), mapfile) |
Thomas Heijligen | f6a273b | 2022-05-03 12:21:47 +0200 | [diff] [blame] | 411 | libflashrom = both_libraries( |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 412 | 'flashrom', |
| 413 | sources : [ |
| 414 | srcs, |
| 415 | ], |
Thomas Heijligen | 58015c2 | 2022-04-14 13:50:55 +0200 | [diff] [blame] | 416 | include_directories : include_dir, |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 417 | soversion : lt_current, |
| 418 | version : lt_version, |
| 419 | dependencies : [ |
| 420 | deps, |
| 421 | ], |
| 422 | c_args : [ |
| 423 | cargs, |
| 424 | ], |
| 425 | install : true, |
| 426 | link_args : vflag, |
| 427 | link_depends : mapfile, |
| 428 | ) |
| 429 | |
Mario Limonciello | d954d5d | 2019-09-24 16:06:57 -0500 | [diff] [blame] | 430 | version = meson.project_version() |
| 431 | #strip leading characters |
| 432 | if version.startswith('v') |
| 433 | version = version.split('v')[1] |
| 434 | endif |
| 435 | if version.startswith('p') |
| 436 | version = version.split('p')[1] |
| 437 | endif |
| 438 | |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 439 | pkgg = import('pkgconfig') |
| 440 | pkgg.generate( |
Thomas Heijligen | f6a273b | 2022-05-03 12:21:47 +0200 | [diff] [blame] | 441 | libraries : libflashrom, |
Mario Limonciello | d954d5d | 2019-09-24 16:06:57 -0500 | [diff] [blame] | 442 | version : version, |
Mario Limonciello | 2a8d439 | 2019-10-15 13:32:19 -0500 | [diff] [blame] | 443 | name : 'flashrom', |
| 444 | filebase : 'flashrom', |
| 445 | description : 'library to interact with flashrom', |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 446 | ) |
| 447 | |
Richard Hughes | dad3a16 | 2020-02-17 09:57:01 +0000 | [diff] [blame] | 448 | conf.set('VERSION', version) |
Nikolai Artemiev | 47cb6fc | 2022-07-22 09:58:14 +1000 | [diff] [blame] | 449 | conf.set('MAN_DATE', run_command('util/getversion.sh', '--man-date', check : true).stdout().strip()) |
Richard Hughes | dad3a16 | 2020-02-17 09:57:01 +0000 | [diff] [blame] | 450 | configure_file( |
| 451 | input : 'flashrom.8.tmpl', |
| 452 | output : 'flashrom.8', |
| 453 | configuration : conf, |
| 454 | install: true, |
Thomas Heijligen | 454a28c | 2022-05-03 11:50:16 +0200 | [diff] [blame] | 455 | install_dir: join_paths(get_option('mandir'), 'man8'), |
Richard Hughes | dad3a16 | 2020-02-17 09:57:01 +0000 | [diff] [blame] | 456 | ) |
| 457 | |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 458 | executable( |
| 459 | 'flashrom', |
Thomas Heijligen | f6a273b | 2022-05-03 12:21:47 +0200 | [diff] [blame] | 460 | files( |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 461 | 'cli_classic.c', |
| 462 | 'cli_common.c', |
| 463 | 'cli_output.c', |
Thomas Heijligen | f6a273b | 2022-05-03 12:21:47 +0200 | [diff] [blame] | 464 | ), |
| 465 | c_args : cargs, |
Thomas Heijligen | 58015c2 | 2022-04-14 13:50:55 +0200 | [diff] [blame] | 466 | include_directories : include_dir, |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 467 | install : true, |
Thomas Heijligen | f6a273b | 2022-05-03 12:21:47 +0200 | [diff] [blame] | 468 | install_dir : get_option('sbindir'), |
| 469 | link_with : libflashrom.get_static_lib(), # flashrom needs internal symbols of libflashrom |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 470 | ) |
| 471 | |
| 472 | subdir('util') |