aboutsummaryrefslogtreecommitdiffstats
path: root/src/linux/Kconfig
blob: edf575b08ad8b6c50f1b7be489232fd08c1510a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Kconfig settings for compiling and running the micro-controller code
# in a Linux process

if MACH_LINUX

config LINUX_SELECT
    bool
    default y
    select HAVE_GPIO_ADC
    select HAVE_GPIO_SPI
    select HAVE_GPIO_HARD_PWM
    select HAVE_GPIO_I2C
    select HAVE_GPIO_BITBANGING
    select HAVE_GPIO

config BOARD_DIRECTORY
    string
    default "linux"

config CLOCK_FREQ
    int
    default 50000000

endif