Philippe Mathieu-Daudé | de6cd75 | 2023-06-13 15:33:47 +0200 | [diff] [blame] | 1 | system_ss.add(when: 'CONFIG_GPIO_KEY', if_true: files('gpio_key.c')) |
| 2 | system_ss.add(when: 'CONFIG_GPIO_MPC8XXX', if_true: files('mpc8xxx.c')) |
| 3 | system_ss.add(when: 'CONFIG_GPIO_PWR', if_true: files('gpio_pwr.c')) |
| 4 | system_ss.add(when: 'CONFIG_MAX7310', if_true: files('max7310.c')) |
Cédric Le Goater | 6328d8f | 2024-03-25 14:48:32 +0100 | [diff] [blame] | 5 | system_ss.add(when: 'CONFIG_PCA9552', if_true: files('pca9552.c')) |
| 6 | system_ss.add(when: 'CONFIG_PCA9554', if_true: files('pca9554.c')) |
Philippe Mathieu-Daudé | de6cd75 | 2023-06-13 15:33:47 +0200 | [diff] [blame] | 7 | system_ss.add(when: 'CONFIG_PL061', if_true: files('pl061.c')) |
Peter Maydell | 504f935 | 2024-09-03 17:07:05 +0100 | [diff] [blame] | 8 | system_ss.add(when: 'CONFIG_ZAURUS_SCOOP', if_true: files('zaurus.c')) |
Marc-André Lureau | a7b057d | 2019-08-16 19:03:55 +0400 | [diff] [blame] | 9 | |
Philippe Mathieu-Daudé | de6cd75 | 2023-06-13 15:33:47 +0200 | [diff] [blame] | 10 | system_ss.add(when: 'CONFIG_IMX', if_true: files('imx_gpio.c')) |
| 11 | system_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_gpio.c')) |
| 12 | system_ss.add(when: 'CONFIG_NRF51_SOC', if_true: files('nrf51_gpio.c')) |
| 13 | system_ss.add(when: 'CONFIG_OMAP', if_true: files('omap_gpio.c')) |
Sergey Kambalin | 23c82c1 | 2024-02-25 18:02:24 -0600 | [diff] [blame] | 14 | system_ss.add(when: 'CONFIG_RASPI', if_true: files( |
| 15 | 'bcm2835_gpio.c', |
| 16 | 'bcm2838_gpio.c' |
| 17 | )) |
Inès Varhol | 1cdcfb6 | 2024-03-05 22:03:10 +0100 | [diff] [blame] | 18 | system_ss.add(when: 'CONFIG_STM32L4X5_SOC', if_true: files('stm32l4x5_gpio.c')) |
Philippe Mathieu-Daudé | de6cd75 | 2023-06-13 15:33:47 +0200 | [diff] [blame] | 19 | system_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_gpio.c')) |
| 20 | system_ss.add(when: 'CONFIG_SIFIVE_GPIO', if_true: files('sifive_gpio.c')) |
Dmitriy Sharikhin | 4cbb151 | 2024-03-11 09:58:31 +0000 | [diff] [blame] | 21 | system_ss.add(when: 'CONFIG_PCF8574', if_true: files('pcf8574.c')) |