]> git.enpas.org Git - openwrt.git/blob - target/linux/ifxmips/patches-2.6.30/110-drivers.patch
remove crypto moduels from ifxmips menuconfig
[openwrt.git] / target / linux / ifxmips / patches-2.6.30 / 110-drivers.patch
1 Index: linux-2.6.30.5/drivers/char/Makefile
2 ===================================================================
3 --- linux-2.6.30.5.orig/drivers/char/Makefile   2009-09-02 18:22:49.000000000 +0200
4 +++ linux-2.6.30.5/drivers/char/Makefile        2009-09-02 18:29:51.000000000 +0200
5 @@ -112,6 +112,10 @@
6  obj-$(CONFIG_JS_RTC)           += js-rtc.o
7  js-rtc-y = rtc.o
8  
9 +obj-$(CONFIG_IFXMIPS_SSC)  += ifxmips_ssc.o
10 +obj-$(CONFIG_IFXMIPS_EEPROM)   += ifxmips_eeprom.o
11 +obj-$(CONFIG_IFXMIPS_MEI)  += ifxmips_mei_core.o
12 +
13  # Files generated that shall be removed upon make clean
14  clean-files := consolemap_deftbl.c defkeymap.c
15  
16 Index: linux-2.6.30.5/drivers/mtd/maps/Makefile
17 ===================================================================
18 --- linux-2.6.30.5.orig/drivers/mtd/maps/Makefile       2009-08-16 23:19:38.000000000 +0200
19 +++ linux-2.6.30.5/drivers/mtd/maps/Makefile    2009-09-02 18:30:09.000000000 +0200
20 @@ -62,3 +62,4 @@
21  obj-$(CONFIG_MTD_BFIN_ASYNC)   += bfin-async-flash.o
22  obj-$(CONFIG_MTD_RBTX4939)     += rbtx4939-flash.o
23  obj-$(CONFIG_MTD_VMU)          += vmu-flash.o
24 +obj-$(CONFIG_MTD_IFXMIPS)  += ifxmips.o
25 Index: linux-2.6.30.5/drivers/net/Kconfig
26 ===================================================================
27 --- linux-2.6.30.5.orig/drivers/net/Kconfig     2009-09-02 18:22:49.000000000 +0200
28 +++ linux-2.6.30.5/drivers/net/Kconfig  2009-09-02 18:29:51.000000000 +0200
29 @@ -353,6 +353,12 @@
30  
31  source "drivers/net/arm/Kconfig"
32  
33 +config IFXMIPS_MII0
34 +       tristate "Infineon IFXMips eth0 driver"
35 +       depends on IFXMIPS
36 +       help
37 +         Support for the MII0 inside the IFXMips SOC
38 +
39  config AX88796
40         tristate "ASIX AX88796 NE2000 clone support"
41         depends on ARM || MIPS || SUPERH
42 Index: linux-2.6.30.5/drivers/serial/Kconfig
43 ===================================================================
44 --- linux-2.6.30.5.orig/drivers/serial/Kconfig  2009-08-16 23:19:38.000000000 +0200
45 +++ linux-2.6.30.5/drivers/serial/Kconfig       2009-09-02 18:29:51.000000000 +0200
46 @@ -1365,6 +1365,14 @@
47         help
48           Support for Console on the NWP serial ports.
49  
50 +config SERIAL_IFXMIPS
51 +       bool "IFXMips serial driver"
52 +       depends on IFXMIPS
53 +       select SERIAL_CORE
54 +       select SERIAL_CORE_CONSOLE
55 +       help
56 +         Driver for the ifxmipss built in ASC hardware
57 +
58  config SERIAL_QE
59         tristate "Freescale QUICC Engine serial port support"
60         depends on QUICC_ENGINE
61 Index: linux-2.6.30.5/drivers/serial/Makefile
62 ===================================================================
63 --- linux-2.6.30.5.orig/drivers/serial/Makefile 2009-08-16 23:19:38.000000000 +0200
64 +++ linux-2.6.30.5/drivers/serial/Makefile      2009-09-02 18:29:51.000000000 +0200
65 @@ -77,3 +77,4 @@
66  obj-$(CONFIG_SERIAL_KS8695) += serial_ks8695.o
67  obj-$(CONFIG_KGDB_SERIAL_CONSOLE) += kgdboc.o
68  obj-$(CONFIG_SERIAL_QE) += ucc_uart.o
69 +obj-$(CONFIG_SERIAL_IFXMIPS) += ifxmips_asc.o
70 Index: linux-2.6.30.5/drivers/watchdog/Makefile
71 ===================================================================
72 --- linux-2.6.30.5.orig/drivers/watchdog/Makefile       2009-08-16 23:19:38.000000000 +0200
73 +++ linux-2.6.30.5/drivers/watchdog/Makefile    2009-09-02 18:29:51.000000000 +0200
74 @@ -105,6 +105,7 @@
75  obj-$(CONFIG_SIBYTE_WDOG) += sb_wdog.o
76  obj-$(CONFIG_AR7_WDT) += ar7_wdt.o
77  obj-$(CONFIG_TXX9_WDT) += txx9wdt.o
78 +obj-$(CONFIG_IFXMIPS_WDT) += ifxmips_wdt.o
79  
80  # PARISC Architecture
81  
82 Index: linux-2.6.30.5/drivers/net/Makefile
83 ===================================================================
84 --- linux-2.6.30.5.orig/drivers/net/Makefile    2009-09-02 18:22:49.000000000 +0200
85 +++ linux-2.6.30.5/drivers/net/Makefile 2009-09-02 18:30:37.000000000 +0200
86 @@ -234,6 +234,7 @@
87  obj-$(CONFIG_MLX4_CORE) += mlx4/
88  obj-$(CONFIG_ENC28J60) += enc28j60.o
89  obj-$(CONFIG_ETHOC) += ethoc.o
90 +obj-$(CONFIG_IFXMIPS_MII0) += ifxmips_mii0.o
91  
92  obj-$(CONFIG_XTENSA_XT2000_SONIC) += xtsonic.o
93  
94 Index: linux-2.6.30.5/drivers/leds/Kconfig
95 ===================================================================
96 --- linux-2.6.30.5.orig/drivers/leds/Kconfig    2009-09-02 18:22:49.000000000 +0200
97 +++ linux-2.6.30.5/drivers/leds/Kconfig 2009-09-02 18:29:51.000000000 +0200
98 @@ -227,6 +227,12 @@
99           This option enables support for BD2802GU RGB LED driver chips
100           accessed via the I2C bus.
101  
102 +config LEDS_IFXMIPS
103 +       tristate "LED Support for IFXMIPS  LEDs"
104 +       depends on LEDS_CLASS && IFXMIPS
105 +       help
106 +         This option enables support for the CM-X270 LEDs.
107 +
108  comment "LED Triggers"
109  
110  config LEDS_TRIGGERS
111 Index: linux-2.6.30.5/drivers/leds/Makefile
112 ===================================================================
113 --- linux-2.6.30.5.orig/drivers/leds/Makefile   2009-09-02 18:22:49.000000000 +0200
114 +++ linux-2.6.30.5/drivers/leds/Makefile        2009-09-02 18:31:23.000000000 +0200
115 @@ -27,6 +27,7 @@
116  obj-$(CONFIG_LEDS_DA903X)              += leds-da903x.o
117  obj-$(CONFIG_LEDS_WM8350)              += leds-wm8350.o
118  obj-$(CONFIG_LEDS_PWM)                 += leds-pwm.o
119 +obj-$(CONFIG_LEDS_IFXMIPS)             += leds-ifxmips.o
120  
121  # LED SPI Drivers
122  obj-$(CONFIG_LEDS_DAC124S085)          += leds-dac124s085.o
123 Index: linux-2.6.30.5/drivers/watchdog/Kconfig
124 ===================================================================
125 --- linux-2.6.30.5.orig/drivers/watchdog/Kconfig        2009-08-16 23:19:38.000000000 +0200
126 +++ linux-2.6.30.5/drivers/watchdog/Kconfig     2009-09-02 18:29:51.000000000 +0200
127 @@ -764,6 +764,12 @@
128         help
129           Hardware driver for the built-in watchdog timer on TXx9 MIPS SoCs.
130  
131 +config IFXMIPS_WDT
132 +       bool "IFXMips watchdog"
133 +       depends on IFXMIPS
134 +       help
135 +         Hardware driver for the IFXMIPS Watchdog Timer.
136 +
137  # PARISC Architecture
138  
139  # POWERPC Architecture