Manuel Lauss | 5d400f5 | 2009-11-23 20:40:01 +0100 | [diff] [blame] | 1 | # au1000-style gpio and interrupt controllers |
| 2 | config ALCHEMY_GPIOINT_AU1000 |
Manuel Lauss | 51e02b0 | 2009-06-06 14:09:55 +0200 | [diff] [blame] | 3 | bool |
| 4 | |
Manuel Lauss | 809f36c | 2011-11-01 20:03:30 +0100 | [diff] [blame] | 5 | # au1300-style GPIO/INT controller |
| 6 | config ALCHEMY_GPIOINT_AU1300 |
| 7 | bool |
| 8 | |
Manuel Lauss | 51e02b0 | 2009-06-06 14:09:55 +0200 | [diff] [blame] | 9 | # select this in your board config if you don't want to use the gpio |
| 10 | # namespace as documented in the manuals. In this case however you need |
| 11 | # to create the necessary gpio_* functions in your board code/headers! |
| 12 | # see arch/mips/include/asm/mach-au1x00/gpio.h for more information. |
| 13 | config ALCHEMY_GPIO_INDIRECT |
| 14 | def_bool n |
| 15 | |
Yoichi Yuasa | c3543e2 | 2007-05-11 20:44:30 +0900 | [diff] [blame] | 16 | choice |
| 17 | prompt "Machine type" |
Manuel Lauss | 42a4f17 | 2010-07-15 21:45:04 +0200 | [diff] [blame] | 18 | depends on MIPS_ALCHEMY |
Manuel Lauss | 970e268 | 2014-02-20 14:59:24 +0100 | [diff] [blame] | 19 | default MIPS_DB1XXX |
Yoichi Yuasa | c3543e2 | 2007-05-11 20:44:30 +0900 | [diff] [blame] | 20 | |
| 21 | config MIPS_MTX1 |
| 22 | bool "4G Systems MTX-1 board" |
Yoichi Yuasa | c3543e2 | 2007-05-11 20:44:30 +0900 | [diff] [blame] | 23 | select HW_HAS_PCI |
Manuel Lauss | 376638603 | 2011-08-12 11:39:45 +0200 | [diff] [blame] | 24 | select ALCHEMY_GPIOINT_AU1000 |
Yoichi Yuasa | c3543e2 | 2007-05-11 20:44:30 +0900 | [diff] [blame] | 25 | select SYS_SUPPORTS_LITTLE_ENDIAN |
Manuel Lauss | 8402a15 | 2009-10-15 18:49:27 +0200 | [diff] [blame] | 26 | select SYS_HAS_EARLY_PRINTK |
Yoichi Yuasa | c3543e2 | 2007-05-11 20:44:30 +0900 | [diff] [blame] | 27 | |
Manuel Lauss | 970e268 | 2014-02-20 14:59:24 +0100 | [diff] [blame] | 28 | config MIPS_DB1XXX |
| 29 | bool "Alchemy DB1XXX / PB1XXX boards" |
Manuel Lauss | bd8510d | 2012-09-13 17:44:39 +0200 | [diff] [blame] | 30 | select ARCH_REQUIRE_GPIOLIB |
Yoichi Yuasa | c3543e2 | 2007-05-11 20:44:30 +0900 | [diff] [blame] | 31 | select HW_HAS_PCI |
Yoichi Yuasa | c3543e2 | 2007-05-11 20:44:30 +0900 | [diff] [blame] | 32 | select SYS_SUPPORTS_LITTLE_ENDIAN |
Manuel Lauss | 8402a15 | 2009-10-15 18:49:27 +0200 | [diff] [blame] | 33 | select SYS_HAS_EARLY_PRINTK |
Manuel Lauss | 970e268 | 2014-02-20 14:59:24 +0100 | [diff] [blame] | 34 | help |
| 35 | Select this option if you have one of the following Alchemy |
| 36 | development boards: DB1000 DB1500 DB1100 DB1550 DB1200 DB1300 |
| 37 | PB1500 PB1100 PB1550 PB1200 |
| 38 | Board type is autodetected during boot. |
Yoichi Yuasa | c3543e2 | 2007-05-11 20:44:30 +0900 | [diff] [blame] | 39 | |
Yoichi Yuasa | c3543e2 | 2007-05-11 20:44:30 +0900 | [diff] [blame] | 40 | config MIPS_XXS1500 |
| 41 | bool "MyCable XXS1500 board" |
Manuel Lauss | 376638603 | 2011-08-12 11:39:45 +0200 | [diff] [blame] | 42 | select ALCHEMY_GPIOINT_AU1000 |
Yoichi Yuasa | c3543e2 | 2007-05-11 20:44:30 +0900 | [diff] [blame] | 43 | select SYS_SUPPORTS_LITTLE_ENDIAN |
Manuel Lauss | 8402a15 | 2009-10-15 18:49:27 +0200 | [diff] [blame] | 44 | select SYS_HAS_EARLY_PRINTK |
Yoichi Yuasa | c3543e2 | 2007-05-11 20:44:30 +0900 | [diff] [blame] | 45 | |
Wolfgang Grandegger | cb8f55b | 2010-07-15 11:21:23 +0200 | [diff] [blame] | 46 | config MIPS_GPR |
| 47 | bool "Trapeze ITS GPR board" |
Manuel Lauss | 376638603 | 2011-08-12 11:39:45 +0200 | [diff] [blame] | 48 | select ALCHEMY_GPIOINT_AU1000 |
Wolfgang Grandegger | cb8f55b | 2010-07-15 11:21:23 +0200 | [diff] [blame] | 49 | select HW_HAS_PCI |
Wolfgang Grandegger | cb8f55b | 2010-07-15 11:21:23 +0200 | [diff] [blame] | 50 | select SYS_SUPPORTS_LITTLE_ENDIAN |
| 51 | select SYS_HAS_EARLY_PRINTK |
| 52 | |
Yoichi Yuasa | c3543e2 | 2007-05-11 20:44:30 +0900 | [diff] [blame] | 53 | endchoice |