diff options
107 files changed, 4413 insertions, 1158 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 8c4be1f301cf..3ca0fe1a9123 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig | |||
| @@ -22,6 +22,26 @@ choice | |||
| 22 | config MACH_ALCHEMY | 22 | config MACH_ALCHEMY |
| 23 | bool "Alchemy processor based machines" | 23 | bool "Alchemy processor based machines" |
| 24 | 24 | ||
| 25 | config AR7 | ||
| 26 | bool "Texas Instruments AR7" | ||
| 27 | select BOOT_ELF32 | ||
| 28 | select DMA_NONCOHERENT | ||
| 29 | select CEVT_R4K | ||
| 30 | select CSRC_R4K | ||
| 31 | select IRQ_CPU | ||
| 32 | select NO_EXCEPT_FILL | ||
| 33 | select SWAP_IO_SPACE | ||
| 34 | select SYS_HAS_CPU_MIPS32_R1 | ||
| 35 | select SYS_HAS_EARLY_PRINTK | ||
| 36 | select SYS_SUPPORTS_32BIT_KERNEL | ||
| 37 | select SYS_SUPPORTS_LITTLE_ENDIAN | ||
| 38 | select GENERIC_GPIO | ||
| 39 | select GCD | ||
| 40 | select VLYNQ | ||
| 41 | help | ||
| 42 | Support for the Texas Instruments AR7 System-on-a-Chip | ||
| 43 | family: TNETD7100, 7200 and 7300. | ||
| 44 | |||
| 25 | config BASLER_EXCITE | 45 | config BASLER_EXCITE |
| 26 | bool "Basler eXcite smart camera" | 46 | bool "Basler eXcite smart camera" |
| 27 | select CEVT_R4K | 47 | select CEVT_R4K |
| @@ -209,7 +229,7 @@ config MIPS_MALTA | |||
| 209 | select SYS_SUPPORTS_64BIT_KERNEL | 229 | select SYS_SUPPORTS_64BIT_KERNEL |
| 210 | select SYS_SUPPORTS_BIG_ENDIAN | 230 | select SYS_SUPPORTS_BIG_ENDIAN |
| 211 | select SYS_SUPPORTS_LITTLE_ENDIAN | 231 | select SYS_SUPPORTS_LITTLE_ENDIAN |
| 212 | select SYS_SUPPORTS_MIPS_CMP if BROKEN # because SYNC_R4K is broken | 232 | select SYS_SUPPORTS_MIPS_CMP |
| 213 | select SYS_SUPPORTS_MULTITHREADING | 233 | select SYS_SUPPORTS_MULTITHREADING |
| 214 | select SYS_SUPPORTS_SMARTMIPS | 234 | select SYS_SUPPORTS_SMARTMIPS |
| 215 | help | 235 | help |
| @@ -247,6 +267,7 @@ config MACH_VR41XX | |||
| 247 | select CEVT_R4K | 267 | select CEVT_R4K |
| 248 | select CSRC_R4K | 268 | select CSRC_R4K |
| 249 | select SYS_HAS_CPU_VR41XX | 269 | select SYS_HAS_CPU_VR41XX |
| 270 | select ARCH_REQUIRE_GPIOLIB | ||
| 250 | 271 | ||
| 251 | config NXP_STB220 | 272 | config NXP_STB220 |
| 252 | bool "NXP STB220 board" | 273 | bool "NXP STB220 board" |
| @@ -1635,7 +1656,7 @@ config MIPS_APSP_KSPD | |||
| 1635 | config MIPS_CMP | 1656 | config MIPS_CMP |
| 1636 | bool "MIPS CMP framework support" | 1657 | bool "MIPS CMP framework support" |
| 1637 | depends on SYS_SUPPORTS_MIPS_CMP | 1658 | depends on SYS_SUPPORTS_MIPS_CMP |
| 1638 | select SYNC_R4K if BROKEN | 1659 | select SYNC_R4K |
| 1639 | select SYS_SUPPORTS_SMP | 1660 | select SYS_SUPPORTS_SMP |
| 1640 | select SYS_SUPPORTS_SCHED_SMT if SMP | 1661 | select SYS_SUPPORTS_SCHED_SMT if SMP |
| 1641 | select WEAK_ORDERING | 1662 | select WEAK_ORDERING |
| @@ -2147,11 +2168,11 @@ menu "Power management options" | |||
| 2147 | 2168 | ||
| 2148 | config ARCH_HIBERNATION_POSSIBLE | 2169 | config ARCH_HIBERNATION_POSSIBLE |
| 2149 | def_bool y | 2170 | def_bool y |
| 2150 | depends on SYS_SUPPORTS_HOTPLUG_CPU | 2171 | depends on SYS_SUPPORTS_HOTPLUG_CPU || !SMP |
| 2151 | 2172 | ||
| 2152 | config ARCH_SUSPEND_POSSIBLE | 2173 | config ARCH_SUSPEND_POSSIBLE |
| 2153 | def_bool y | 2174 | def_bool y |
| 2154 | depends on SYS_SUPPORTS_HOTPLUG_CPU | 2175 | depends on SYS_SUPPORTS_HOTPLUG_CPU || !SMP |
| 2155 | 2176 | ||
| 2156 | source "kernel/power/Kconfig" | 2177 | source "kernel/power/Kconfig" |
| 2157 | 2178 | ||
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 807572a6a4d2..861da514a468 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile | |||
| @@ -173,6 +173,13 @@ libs-y += arch/mips/fw/lib/ | |||
| 173 | # | 173 | # |
| 174 | 174 | ||
| 175 | # | 175 | # |
| 176 | # Texas Instruments AR7 | ||
| 177 | # | ||
| 178 | core-$(CONFIG_AR7) += arch/mips/ar7/ | ||
| 179 | cflags-$(CONFIG_AR7) += -I$(srctree)/arch/mips/include/asm/mach-ar7 | ||
| 180 | load-$(CONFIG_AR7) += 0xffffffff94100000 | ||
| 181 | |||
| 182 | # | ||
| 176 | # Acer PICA 61, Mips Magnum 4000 and Olivetti M700. | 183 | # Acer PICA 61, Mips Magnum 4000 and Olivetti M700. |
| 177 | # | 184 | # |
| 178 | core-$(CONFIG_MACH_JAZZ) += arch/mips/jazz/ | 185 | core-$(CONFIG_MACH_JAZZ) += arch/mips/jazz/ |
diff --git a/arch/mips/ar7/Makefile b/arch/mips/ar7/Makefile new file mode 100644 index 000000000000..7435e44b3964 --- /dev/null +++ b/arch/mips/ar7/Makefile | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | |||
| 2 | obj-y := \ | ||
| 3 | prom.o \ | ||
| 4 | setup.o \ | ||
| 5 | memory.o \ | ||
| 6 | irq.o \ | ||
| 7 | time.o \ | ||
| 8 | platform.o \ | ||
| 9 | gpio.o \ | ||
| 10 | clock.o | ||
diff --git a/arch/mips/ar7/clock.c b/arch/mips/ar7/clock.c new file mode 100644 index 000000000000..27dc6663f2fa --- /dev/null +++ b/arch/mips/ar7/clock.c | |||
| @@ -0,0 +1,440 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2007 Felix Fietkau <nbd@openwrt.org> | ||
| 3 | * Copyright (C) 2007 Eugene Konev <ejka@openwrt.org> | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License as published by | ||
| 7 | * the Free Software Foundation; either version 2 of the License, or | ||
| 8 | * (at your option) any later version. | ||
| 9 | * | ||
| 10 | * This program is distributed in the hope that it will be useful, | ||
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | * GNU General Public License for more details. | ||
| 14 | * | ||
| 15 | * You should have received a copy of the GNU General Public License | ||
| 16 | * along with this program; if not, write to the Free Software | ||
| 17 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 18 | */ | ||
| 19 | |||
| 20 | #include <linux/kernel.h> | ||
| 21 | #include <linux/init.h> | ||
| 22 | #include <linux/types.h> | ||
| 23 | #include <linux/module.h> | ||
| 24 | #include <linux/delay.h> | ||
| 25 | #include <linux/gcd.h> | ||
| 26 | #include <linux/io.h> | ||
| 27 | |||
| 28 | #include <asm/addrspace.h> | ||
| 29 | #include <asm/mach-ar7/ar7.h> | ||
| 30 | |||
| 31 | #define BOOT_PLL_SOURCE_MASK 0x3 | ||
| 32 | #define CPU_PLL_SOURCE_SHIFT 16 | ||
| 33 | #define BUS_PLL_SOURCE_SHIFT 14 | ||
| 34 | #define USB_PLL_SOURCE_SHIFT 18 | ||
| 35 | #define DSP_PLL_SOURCE_SHIFT 22 | ||
| 36 | #define BOOT_PLL_SOURCE_AFE 0 | ||
| 37 | #define BOOT_PLL_SOURCE_BUS 0 | ||
| 38 | #define BOOT_PLL_SOURCE_REF 1 | ||
| 39 | #define BOOT_PLL_SOURCE_XTAL 2 | ||
| 40 | #define BOOT_PLL_SOURCE_CPU 3 | ||
| 41 | #define BOOT_PLL_BYPASS 0x00000020 | ||
| 42 | #define BOOT_PLL_ASYNC_MODE 0x02000000 | ||
| 43 | #define BOOT_PLL_2TO1_MODE 0x00008000 | ||
| 44 | |||
| 45 | #define TNETD7200_CLOCK_ID_CPU 0 | ||
| 46 | #define TNETD7200_CLOCK_ID_DSP 1 | ||
| 47 | #define TNETD7200_CLOCK_ID_USB 2 | ||
| 48 | |||
| 49 | #define TNETD7200_DEF_CPU_CLK 211000000 | ||
| 50 | #define TNETD7200_DEF_DSP_CLK 125000000 | ||
| 51 | #define TNETD7200_DEF_USB_CLK 48000000 | ||
| 52 | |||
| 53 | struct tnetd7300_clock { | ||
| 54 | u32 ctrl; | ||
| 55 | #define PREDIV_MASK 0x001f0000 | ||
| 56 | #define PREDIV_SHIFT 16 | ||
| 57 | #define POSTDIV_MASK 0x0000001f | ||
| 58 | u32 unused1[3]; | ||
| 59 | u32 pll; | ||
| 60 | #define MUL_MASK 0x0000f000 | ||
| 61 | #define MUL_SHIFT 12 | ||
| 62 | #define PLL_MODE_MASK 0x00000001 | ||
| 63 | #define PLL_NDIV 0x00000800 | ||
| 64 | #define PLL_DIV 0x00000002 | ||
| 65 | #define PLL_STATUS 0x00000001 | ||
| 66 | u32 unused2[3]; | ||
| 67 | }; | ||
| 68 | |||
| 69 | struct tnetd7300_clocks { | ||
| 70 | struct tnetd7300_clock bus; | ||
| 71 | struct tnetd7300_clock cpu; | ||
| 72 | struct tnetd7300_clock usb; | ||
| 73 | struct tnetd7300_clock dsp; | ||
| 74 | }; | ||
| 75 | |||
| 76 | struct tnetd7200_clock { | ||
| 77 | u32 ctrl; | ||
| 78 | u32 unused1[3]; | ||
| 79 | #define DIVISOR_ENABLE_MASK 0x00008000 | ||
| 80 | u32 mul; | ||
| 81 | u32 prediv; | ||
| 82 | u32 postdiv; | ||
| 83 | u32 postdiv2; | ||
| 84 | u32 unused2[6]; | ||
| 85 | u32 cmd; | ||
| 86 | u32 status; | ||
| 87 | u32 cmden; | ||
| 88 | u32 padding[15]; | ||
| 89 | }; | ||
| 90 | |||
| 91 | struct tnetd7200_clocks { | ||
| 92 | struct tnetd7200_clock cpu; | ||
| 93 | struct tnetd7200_clock dsp; | ||
| 94 | struct tnetd7200_clock usb; | ||
| 95 | }; | ||
| 96 | |||
| 97 | int ar7_cpu_clock = 150000000; | ||
| 98 | EXPORT_SYMBOL(ar7_cpu_clock); | ||
| 99 | int ar7_bus_clock = 125000000; | ||
| 100 | EXPORT_SYMBOL(ar7_bus_clock); | ||
| 101 | int ar7_dsp_clock; | ||
| 102 | EXPORT_SYMBOL(ar7_dsp_clock); | ||
| 103 | |||
| 104 | static void approximate(int base, int target, int *prediv, | ||
| 105 | int *postdiv, int *mul) | ||
| 106 | { | ||
| 107 | int i, j, k, freq, res = target; | ||
| 108 | for (i = 1; i <= 16; i++) | ||
| 109 | for (j = 1; j <= 32; j++) | ||
| 110 | for (k = 1; k <= 32; k++) { | ||
| 111 | freq = abs(base / j * i / k - target); | ||
| 112 | if (freq < res) { | ||
| 113 | res = freq; | ||
| 114 | *mul = i; | ||
| 115 | *prediv = j; | ||
| 116 | *postdiv = k; | ||
| 117 | } | ||
| 118 | } | ||
| 119 | } | ||
| 120 | |||
| 121 | static void calculate(int base, int target, int *prediv, int *postdiv, | ||
| 122 | int *mul) | ||
| 123 | { | ||
| 124 | int tmp_gcd, tmp_base, tmp_freq; | ||
| 125 | |||
| 126 | for (*prediv = 1; *prediv <= 32; (*prediv)++) { | ||
| 127 | tmp_base = base / *prediv; | ||
| 128 | tmp_gcd = gcd(target, tmp_base); | ||
| 129 | *mul = target / tmp_gcd; | ||
| 130 | *postdiv = tmp_base / tmp_gcd; | ||
| 131 | if ((*mul < 1) || (*mul >= 16)) | ||
| 132 | continue; | ||
| 133 | if ((*postdiv > 0) & (*postdiv <= 32)) | ||
| 134 | break; | ||
| 135 | } | ||
| 136 | |||
| 137 | if (base / *prediv * *mul / *postdiv != target) { | ||
| 138 | approximate(base, target, prediv, postdiv, mul); | ||
| 139 | tmp_freq = base / *prediv * *mul / *postdiv; | ||
| 140 | printk(KERN_WARNING | ||
| 141 | "Adjusted requested frequency %d to %d\n", | ||
| 142 | target, tmp_freq); | ||
| 143 | } | ||
| 144 | |||
| 145 | printk(KERN_DEBUG "Clocks: prediv: %d, postdiv: %d, mul: %d\n", | ||
| 146 | *prediv, *postdiv, *mul); | ||
| 147 | } | ||
| 148 | |||
| 149 | static int tnetd7300_dsp_clock(void) | ||
| 150 | { | ||
| 151 | u32 didr1, didr2; | ||
| 152 | u8 rev = ar7_chip_rev(); | ||
| 153 | didr1 = readl((void *)KSEG1ADDR(AR7_REGS_GPIO + 0x18)); | ||
| 154 | didr2 = readl((void *)KSEG1ADDR(AR7_REGS_GPIO + 0x1c)); | ||
| 155 | if (didr2 & (1 << 23)) | ||
| 156 | return 0; | ||
| 157 | if ((rev >= 0x23) && (rev != 0x57)) | ||
| 158 | return 250000000; | ||
| 159 | if ((((didr2 & 0x1fff) << 10) | ((didr1 & 0xffc00000) >> 22)) | ||
| 160 | > 4208000) | ||
| 161 | return 250000000; | ||
| 162 | return 0; | ||
| 163 | } | ||
| 164 | |||
| 165 | static int tnetd7300_get_clock(u32 shift, struct tnetd7300_clock *clock, | ||
| 166 | u32 *bootcr, u32 bus_clock) | ||
| 167 | { | ||
| 168 | int product; | ||
| 169 | int base_clock = AR7_REF_CLOCK; | ||
| 170 | u32 ctrl = readl(&clock->ctrl); | ||
| 171 | u32 pll = readl(&clock->pll); | ||
| 172 | int prediv = ((ctrl & PREDIV_MASK) >> PREDIV_SHIFT) + 1; | ||
| 173 | int postdiv = (ctrl & POSTDIV_MASK) + 1; | ||
| 174 | int divisor = prediv * postdiv; | ||
| 175 | int mul = ((pll & MUL_MASK) >> MUL_SHIFT) + 1; | ||
| 176 | |||
| 177 | switch ((*bootcr & (BOOT_PLL_SOURCE_MASK << shift)) >> shift) { | ||
| 178 | case BOOT_PLL_SOURCE_BUS: | ||
| 179 | base_clock = bus_clock; | ||
| 180 | break; | ||
| 181 | case BOOT_PLL_SOURCE_REF: | ||
| 182 | base_clock = AR7_REF_CLOCK; | ||
| 183 | break; | ||
| 184 | case BOOT_PLL_SOURCE_XTAL: | ||
| 185 | base_clock = AR7_XTAL_CLOCK; | ||
| 186 | break; | ||
| 187 | case BOOT_PLL_SOURCE_CPU: | ||
| 188 | base_clock = ar7_cpu_clock; | ||
| 189 | break; | ||
| 190 | } | ||
| 191 | |||
| 192 | if (*bootcr & BOOT_PLL_BYPASS) | ||
| 193 | return base_clock / divisor; | ||
| 194 | |||
| 195 | if ((pll & PLL_MODE_MASK) == 0) | ||
| 196 | return (base_clock >> (mul / 16 + 1)) / divisor; | ||
| 197 | |||
| 198 | if ((pll & (PLL_NDIV | PLL_DIV)) == (PLL_NDIV | PLL_DIV)) { | ||
| 199 | product = (mul & 1) ? | ||
| 200 | (base_clock * mul) >> 1 : | ||
| 201 | (base_clock * (mul - 1)) >> 2; | ||
| 202 | return product / divisor; | ||
| 203 | } | ||
| 204 | |||
| 205 | if (mul == 16) | ||
| 206 | return base_clock / divisor; | ||
| 207 | |||
| 208 | return base_clock * mul / divisor; | ||
| 209 | } | ||
| 210 | |||
| 211 | static void tnetd7300_set_clock(u32 shift, struct tnetd7300_clock *clock, | ||
| 212 | u32 *bootcr, u32 frequency) | ||
| 213 | { | ||
| 214 | int prediv, postdiv, mul; | ||
| 215 | int base_clock = ar7_bus_clock; | ||
| 216 | |||
| 217 | switch ((*bootcr & (BOOT_PLL_SOURCE_MASK << shift)) >> shift) { | ||
| 218 | case BOOT_PLL_SOURCE_BUS: | ||
| 219 | base_clock = ar7_bus_clock; | ||
| 220 | break; | ||
| 221 | case BOOT_PLL_SOURCE_REF: | ||
| 222 | base_clock = AR7_REF_CLOCK; | ||
| 223 | break; | ||
| 224 | case BOOT_PLL_SOURCE_XTAL: | ||
| 225 | base_clock = AR7_XTAL_CLOCK; | ||
| 226 | break; | ||
| 227 | case BOOT_PLL_SOURCE_CPU: | ||
| 228 | base_clock = ar7_cpu_clock; | ||
| 229 | break; | ||
| 230 | } | ||
| 231 | |||
| 232 | calculate(base_clock, frequency, &prediv, &postdiv, &mul); | ||
| 233 | |||
| 234 | writel(((prediv - 1) << PREDIV_SHIFT) | (postdiv - 1), &clock->ctrl); | ||
| 235 | msleep(1); | ||
| 236 | writel(4, &clock->pll); | ||
| 237 | while (readl(&clock->pll) & PLL_STATUS) | ||
| 238 | ; | ||
| 239 | writel(((mul - 1) << MUL_SHIFT) | (0xff << 3) | 0x0e, &clock->pll); | ||
| 240 | msleep(75); | ||
| 241 | } | ||
| 242 | |||
| 243 | static void __init tnetd7300_init_clocks(void) | ||
| 244 | { | ||
| 245 | u32 *bootcr = (u32 *)ioremap_nocache(AR7_REGS_DCL, 4); | ||
| 246 | struct tnetd7300_clocks *clocks = | ||
| 247 | ioremap_nocache(UR8_REGS_CLOCKS, | ||
| 248 | sizeof(struct tnetd7300_clocks)); | ||
| 249 | |||
| 250 | ar7_bus_clock = tnetd7300_get_clock(BUS_PLL_SOURCE_SHIFT, | ||
| 251 | &clocks->bus, bootcr, AR7_AFE_CLOCK); | ||
| 252 | |||
| 253 | if (*bootcr & BOOT_PLL_ASYNC_MODE) | ||
| 254 | ar7_cpu_clock = tnetd7300_get_clock(CPU_PLL_SOURCE_SHIFT, | ||
| 255 | &clocks->cpu, bootcr, AR7_AFE_CLOCK); | ||
| 256 | else | ||
| 257 | ar7_cpu_clock = ar7_bus_clock; | ||
| 258 | |||
| 259 | if (ar7_dsp_clock == 250000000) | ||
| 260 | tnetd7300_set_clock(DSP_PLL_SOURCE_SHIFT, &clocks->dsp, | ||
| 261 | bootcr, ar7_dsp_clock); | ||
| 262 | |||
| 263 | iounmap(clocks); | ||
| 264 | iounmap(bootcr); | ||
| 265 | } | ||
| 266 | |||
| 267 | static int tnetd7200_get_clock(int base, struct tnetd7200_clock *clock, | ||
| 268 | u32 *bootcr, u32 bus_clock) | ||
| 269 | { | ||
| 270 | int divisor = ((readl(&clock->prediv) & 0x1f) + 1) * | ||
| 271 | ((readl(&clock->postdiv) & 0x1f) + 1); | ||
| 272 | |||
| 273 | if (*bootcr & BOOT_PLL_BYPASS) | ||
| 274 | return base / divisor; | ||
| 275 | |||
| 276 | return base * ((readl(&clock->mul) & 0xf) + 1) / divisor; | ||
| 277 | } | ||
| 278 | |||
| 279 | |||
| 280 | static void tnetd7200_set_clock(int base, struct tnetd7200_clock *clock, | ||
| 281 | int prediv, int postdiv, int postdiv2, int mul, u32 frequency) | ||
| 282 | { | ||
| 283 | printk(KERN_INFO | ||
| 284 | "Clocks: base = %d, frequency = %u, prediv = %d, " | ||
| 285 | "postdiv = %d, postdiv2 = %d, mul = %d\n", | ||
| 286 | base, frequency, prediv, postdiv, postdiv2, mul); | ||
| 287 | |||
| 288 | writel(0, &clock->ctrl); | ||
| 289 | writel(DIVISOR_ENABLE_MASK | ((prediv - 1) & 0x1F), &clock->prediv); | ||
| 290 | writel((mul - 1) & 0xF, &clock->mul); | ||
| 291 | |||
| 292 | while (readl(&clock->status) & 0x1) | ||
| 293 | ; /* nop */ | ||
| 294 | |||
| 295 | writel(DIVISOR_ENABLE_MASK | ((postdiv - 1) & 0x1F), &clock->postdiv); | ||
| 296 | |||
| 297 | writel(readl(&clock->cmden) | 1, &clock->cmden); | ||
| 298 | writel(readl(&clock->cmd) | 1, &clock->cmd); | ||
| 299 | |||
| 300 | while (readl(&clock->status) & 0x1) | ||
| 301 | ; /* nop */ | ||
| 302 | |||
| 303 | writel(DIVISOR_ENABLE_MASK | ((postdiv2 - 1) & 0x1F), &clock->postdiv2); | ||
| 304 | |||
| 305 | writel(readl(&clock->cmden) | 1, &clock->cmden); | ||
| 306 | writel(readl(&clock->cmd) | 1, &clock->cmd); | ||
| 307 | |||
| 308 | while (readl(&clock->status) & 0x1) | ||
| 309 | ; /* nop */ | ||
| 310 | |||
| 311 | writel(readl(&clock->ctrl) | 1, &clock->ctrl); | ||
| 312 | } | ||
| 313 | |||
| 314 | static int tnetd7200_get_clock_base(int clock_id, u32 *bootcr) | ||
| 315 | { | ||
| 316 | if (*bootcr & BOOT_PLL_ASYNC_MODE) | ||
| 317 | /* Async */ | ||
| 318 | switch (clock_id) { | ||
| 319 | case TNETD7200_CLOCK_ID_DSP: | ||
| 320 | return AR7_REF_CLOCK; | ||
| 321 | default: | ||
| 322 | return AR7_AFE_CLOCK; | ||
| 323 | } | ||
| 324 | else | ||
| 325 | /* Sync */ | ||
| 326 | if (*bootcr & BOOT_PLL_2TO1_MODE) | ||
| 327 | /* 2:1 */ | ||
| 328 | switch (clock_id) { | ||
| 329 | case TNETD7200_CLOCK_ID_DSP: | ||
| 330 | return AR7_REF_CLOCK; | ||
| 331 | default: | ||
| 332 | return AR7_AFE_CLOCK; | ||
| 333 | } | ||
| 334 | else | ||
| 335 | /* 1:1 */ | ||
| 336 | return AR7_REF_CLOCK; | ||
| 337 | } | ||
| 338 | |||
| 339 | |||
| 340 | static void __init tnetd7200_init_clocks(void) | ||
| 341 | { | ||
| 342 | u32 *bootcr = (u32 *)ioremap_nocache(AR7_REGS_DCL, 4); | ||
| 343 | struct tnetd7200_clocks *clocks = | ||
| 344 | ioremap_nocache(AR7_REGS_CLOCKS, | ||
| 345 | sizeof(struct tnetd7200_clocks)); | ||
| 346 | int cpu_base, cpu_mul, cpu_prediv, cpu_postdiv; | ||
| 347 | int dsp_base, dsp_mul, dsp_prediv, dsp_postdiv; | ||
| 348 | int usb_base, usb_mul, usb_prediv, usb_postdiv; | ||
| 349 | |||
| 350 | cpu_base = tnetd7200_get_clock_base(TNETD7200_CLOCK_ID_CPU, bootcr); | ||
| 351 | dsp_base = tnetd7200_get_clock_base(TNETD7200_CLOCK_ID_DSP, bootcr); | ||
| 352 | |||
| 353 | if (*bootcr & BOOT_PLL_ASYNC_MODE) { | ||
| 354 | printk(KERN_INFO "Clocks: Async mode\n"); | ||
| 355 | |||
| 356 | printk(KERN_INFO "Clocks: Setting DSP clock\n"); | ||
| 357 | calculate(dsp_base, TNETD7200_DEF_DSP_CLK, | ||
| 358 | &dsp_prediv, &dsp_postdiv, &dsp_mul); | ||
| 359 | ar7_bus_clock = | ||
| 360 | ((dsp_base / dsp_prediv) * dsp_mul) / dsp_postdiv; | ||
| 361 | tnetd7200_set_clock(dsp_base, &clocks->dsp, | ||
| 362 | dsp_prediv, dsp_postdiv * 2, dsp_postdiv, dsp_mul * 2, | ||
| 363 | ar7_bus_clock); | ||
| 364 | |||
| 365 | printk(KERN_INFO "Clocks: Setting CPU clock\n"); | ||
| 366 | calculate(cpu_base, TNETD7200_DEF_CPU_CLK, &cpu_prediv, | ||
| 367 | &cpu_postdiv, &cpu_mul); | ||
| 368 | ar7_cpu_clock = | ||
| 369 | ((cpu_base / cpu_prediv) * cpu_mul) / cpu_postdiv; | ||
| 370 | tnetd7200_set_clock(cpu_base, &clocks->cpu, | ||
| 371 | cpu_prediv, cpu_postdiv, -1, cpu_mul, | ||
| 372 | ar7_cpu_clock); | ||
| 373 | |||
| 374 | } else | ||
| 375 | if (*bootcr & BOOT_PLL_2TO1_MODE) { | ||
| 376 | printk(KERN_INFO "Clocks: Sync 2:1 mode\n"); | ||
| 377 | |||
| 378 | printk(KERN_INFO "Clocks: Setting CPU clock\n"); | ||
| 379 | calculate(cpu_base, TNETD7200_DEF_CPU_CLK, &cpu_prediv, | ||
| 380 | &cpu_postdiv, &cpu_mul); | ||
| 381 | ar7_cpu_clock = ((cpu_base / cpu_prediv) * cpu_mul) | ||
| 382 | / cpu_postdiv; | ||
| 383 | tnetd7200_set_clock(cpu_base, &clocks->cpu, | ||
| 384 | cpu_prediv, cpu_postdiv, -1, cpu_mul, | ||
| 385 | ar7_cpu_clock); | ||
| 386 | |||
| 387 | printk(KERN_INFO "Clocks: Setting DSP clock\n"); | ||
| 388 | calculate(dsp_base, TNETD7200_DEF_DSP_CLK, &dsp_prediv, | ||
| 389 | &dsp_postdiv, &dsp_mul); | ||
| 390 | ar7_bus_clock = ar7_cpu_clock / 2; | ||
| 391 | tnetd7200_set_clock(dsp_base, &clocks->dsp, | ||
| 392 | dsp_prediv, dsp_postdiv * 2, dsp_postdiv, | ||
| 393 | dsp_mul * 2, ar7_bus_clock); | ||
| 394 | } else { | ||
| 395 | printk(KERN_INFO "Clocks: Sync 1:1 mode\n"); | ||
| 396 | |||
| 397 | printk(KERN_INFO "Clocks: Setting DSP clock\n"); | ||
| 398 | calculate(dsp_base, TNETD7200_DEF_DSP_CLK, &dsp_prediv, | ||
| 399 | &dsp_postdiv, &dsp_mul); | ||
| 400 | ar7_bus_clock = ((dsp_base / dsp_prediv) * dsp_mul) | ||
| 401 | / dsp_postdiv; | ||
| 402 | tnetd7200_set_clock(dsp_base, &clocks->dsp, | ||
| 403 | dsp_prediv, dsp_postdiv * 2, dsp_postdiv, | ||
| 404 | dsp_mul * 2, ar7_bus_clock); | ||
| 405 | |||
| 406 | ar7_cpu_clock = ar7_bus_clock; | ||
| 407 | } | ||
| 408 | |||
| 409 | printk(KERN_INFO "Clocks: Setting USB clock\n"); | ||
| 410 | usb_base = ar7_bus_clock; | ||
| 411 | calculate(usb_base, TNETD7200_DEF_USB_CLK, &usb_prediv, | ||
| 412 | &usb_postdiv, &usb_mul); | ||
| 413 | tnetd7200_set_clock(usb_base, &clocks->usb, | ||
| 414 | usb_prediv, usb_postdiv, -1, usb_mul, | ||
| 415 | TNETD7200_DEF_USB_CLK); | ||
| 416 | |||
| 417 | ar7_dsp_clock = ar7_cpu_clock; | ||
| 418 | |||
| 419 | iounmap(clocks); | ||
| 420 | iounmap(bootcr); | ||
| 421 | } | ||
| 422 | |||
| 423 | int __init ar7_init_clocks(void) | ||
| 424 | { | ||
| 425 | switch (ar7_chip_id()) { | ||
| 426 | case AR7_CHIP_7100: | ||
| 427 | case AR7_CHIP_7200: | ||
| 428 | tnetd7200_init_clocks(); | ||
| 429 | break; | ||
| 430 | case AR7_CHIP_7300: | ||
| 431 | ar7_dsp_clock = tnetd7300_dsp_clock(); | ||
| 432 | tnetd7300_init_clocks(); | ||
| 433 | break; | ||
| 434 | default: | ||
| 435 | break; | ||
| 436 | } | ||
| 437 | |||
| 438 | return 0; | ||
| 439 | } | ||
| 440 | arch_initcall(ar7_init_clocks); | ||
diff --git a/arch/mips/ar7/gpio.c b/arch/mips/ar7/gpio.c new file mode 100644 index 000000000000..74e14a3dbf4a --- /dev/null +++ b/arch/mips/ar7/gpio.c | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2007 Felix Fietkau <nbd@openwrt.org> | ||
| 3 | * Copyright (C) 2007 Eugene Konev <ejka@openwrt.org> | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License as published by | ||
| 7 | * the Free Software Foundation; either version 2 of the License, or | ||
| 8 | * (at your option) any later version. | ||
| 9 | * | ||
| 10 | * This program is distributed in the hope that it will be useful, | ||
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | * GNU General Public License for more details. | ||
| 14 | * | ||
| 15 | * You should have received a copy of the GNU General Public License | ||
| 16 | * along with this program; if not, write to the Free Software | ||
| 17 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 18 | */ | ||
| 19 | |||
| 20 | #include <linux/module.h> | ||
| 21 | |||
| 22 | #include <asm/mach-ar7/gpio.h> | ||
| 23 | |||
| 24 | static const char *ar7_gpio_list[AR7_GPIO_MAX]; | ||
| 25 | |||
| 26 | int gpio_request(unsigned gpio, const char *label) | ||
| 27 | { | ||
| 28 | if (gpio >= AR7_GPIO_MAX) | ||
| 29 | return -EINVAL; | ||
| 30 | |||
| 31 | if (ar7_gpio_list[gpio]) | ||
| 32 | return -EBUSY; | ||
| 33 | |||
| 34 | if (label) | ||
| 35 | ar7_gpio_list[gpio] = label; | ||
| 36 | else | ||
| 37 | ar7_gpio_list[gpio] = "busy"; | ||
| 38 | |||
| 39 | return 0; | ||
| 40 | } | ||
| 41 | EXPORT_SYMBOL(gpio_request); | ||
| 42 | |||
| 43 | void gpio_free(unsigned gpio) | ||
| 44 | { | ||
| 45 | BUG_ON(!ar7_gpio_list[gpio]); | ||
| 46 | ar7_gpio_list[gpio] = NULL; | ||
| 47 | } | ||
| 48 | EXPORT_SYMBOL(gpio_free); | ||
diff --git a/arch/mips/ar7/irq.c b/arch/mips/ar7/irq.c new file mode 100644 index 000000000000..c781556c44e4 --- /dev/null +++ b/arch/mips/ar7/irq.c | |||
| @@ -0,0 +1,176 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2006,2007 Felix Fietkau <nbd@openwrt.org> | ||
| 3 | * Copyright (C) 2006,2007 Eugene Konev <ejka@openwrt.org> | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License as published by | ||
| 7 | * the Free Software Foundation; either version 2 of the License, or | ||
| 8 | * (at your option) any later version. | ||
| 9 | * | ||
| 10 | * This program is distributed in the hope that it will be useful, | ||
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | * GNU General Public License for more details. | ||
| 14 | * | ||
| 15 | * You should have received a copy of the GNU General Public License | ||
| 16 | * along with this program; if not, write to the Free Software | ||
| 17 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 18 | */ | ||
| 19 | |||
| 20 | #include <linux/interrupt.h> | ||
| 21 | #include <linux/io.h> | ||
| 22 | |||
| 23 | #include <asm/irq_cpu.h> | ||
| 24 | #include <asm/mipsregs.h> | ||
| 25 | #include <asm/mach-ar7/ar7.h> | ||
| 26 | |||
| 27 | #define EXCEPT_OFFSET 0x80 | ||
| 28 | #define PACE_OFFSET 0xA0 | ||
| 29 | #define CHNLS_OFFSET 0x200 | ||
| 30 | |||
| 31 | #define REG_OFFSET(irq, reg) ((irq) / 32 * 0x4 + reg * 0x10) | ||
| 32 | #define SEC_REG_OFFSET(reg) (EXCEPT_OFFSET + reg * 0x8) | ||
| 33 | #define SEC_SR_OFFSET (SEC_REG_OFFSET(0)) /* 0x80 */ | ||
| 34 | #define CR_OFFSET(irq) (REG_OFFSET(irq, 1)) /* 0x10 */ | ||
| 35 | #define SEC_CR_OFFSET (SEC_REG_OFFSET(1)) /* 0x88 */ | ||
| 36 | #define ESR_OFFSET(irq) (REG_OFFSET(irq, 2)) /* 0x20 */ | ||
| 37 | #define SEC_ESR_OFFSET (SEC_REG_OFFSET(2)) /* 0x90 */ | ||
| 38 | #define ECR_OFFSET(irq) (REG_OFFSET(irq, 3)) /* 0x30 */ | ||
| 39 | #define SEC_ECR_OFFSET (SEC_REG_OFFSET(3)) /* 0x98 */ | ||
| 40 | #define PIR_OFFSET (0x40) | ||
| 41 | #define MSR_OFFSET (0x44) | ||
| 42 | #define PM_OFFSET(irq) (REG_OFFSET(irq, 5)) /* 0x50 */ | ||
| 43 | #define TM_OFFSET(irq) (REG_OFFSET(irq, 6)) /* 0x60 */ | ||
| 44 | |||
| 45 | #define REG(addr) ((u32 *)(KSEG1ADDR(AR7_REGS_IRQ) + addr)) | ||
| 46 | |||
| 47 | #define CHNL_OFFSET(chnl) (CHNLS_OFFSET + (chnl * 4)) | ||
| 48 | |||
| 49 | static int ar7_irq_base; | ||
| 50 | |||
| 51 | static void ar7_unmask_irq(unsigned int irq) | ||
| 52 | { | ||
| 53 | writel(1 << ((irq - ar7_irq_base) % 32), | ||
| 54 | REG(ESR_OFFSET(irq - ar7_irq_base))); | ||
| 55 | } | ||
| 56 | |||
| 57 | static void ar7_mask_irq(unsigned int irq) | ||
| 58 | { | ||
| 59 | writel(1 << ((irq - ar7_irq_base) % 32), | ||
| 60 | REG(ECR_OFFSET(irq - ar7_irq_base))); | ||
| 61 | } | ||
| 62 | |||
| 63 | static void ar7_ack_irq(unsigned int irq) | ||
| 64 | { | ||
| 65 | writel(1 << ((irq - ar7_irq_base) % 32), | ||
| 66 | REG(CR_OFFSET(irq - ar7_irq_base))); | ||
| 67 | } | ||
| 68 | |||
| 69 | static void ar7_unmask_sec_irq(unsigned int irq) | ||
| 70 | { | ||
| 71 | writel(1 << (irq - ar7_irq_base - 40), REG(SEC_ESR_OFFSET)); | ||
| 72 | } | ||
| 73 | |||
| 74 | static void ar7_mask_sec_irq(unsigned int irq) | ||
| 75 | { | ||
| 76 | writel(1 << (irq - ar7_irq_base - 40), REG(SEC_ECR_OFFSET)); | ||
| 77 | } | ||
| 78 | |||
| 79 | static void ar7_ack_sec_irq(unsigned int irq) | ||
| 80 | { | ||
| 81 | writel(1 << (irq - ar7_irq_base - 40), REG(SEC_CR_OFFSET)); | ||
| 82 | } | ||
| 83 | |||
| 84 | static struct irq_chip ar7_irq_type = { | ||
| 85 | .name = "AR7", | ||
| 86 | .unmask = ar7_unmask_irq, | ||
| 87 | .mask = ar7_mask_irq, | ||
| 88 | .ack = ar7_ack_irq | ||
| 89 | }; | ||
| 90 | |||
| 91 | static struct irq_chip ar7_sec_irq_type = { | ||
| 92 | .name = "AR7", | ||
| 93 | .unmask = ar7_unmask_sec_irq, | ||
| 94 | .mask = ar7_mask_sec_irq, | ||
| 95 | .ack = ar7_ack_sec_irq, | ||
| 96 | }; | ||
| 97 | |||
| 98 | static struct irqaction ar7_cascade_action = { | ||
| 99 | .handler = no_action, | ||
| 100 | .name = "AR7 cascade interrupt" | ||
| 101 | }; | ||
| 102 | |||
| 103 | static void __init ar7_irq_init(int base) | ||
| 104 | { | ||
| 105 | int i; | ||
| 106 | /* | ||
| 107 | * Disable interrupts and clear pending | ||
| 108 | */ | ||
| 109 | writel(0xffffffff, REG(ECR_OFFSET(0))); | ||
| 110 | writel(0xff, REG(ECR_OFFSET(32))); | ||
| 111 | writel(0xffffffff, REG(SEC_ECR_OFFSET)); | ||
| 112 | writel(0xffffffff, REG(CR_OFFSET(0))); | ||
| 113 | writel(0xff, REG(CR_OFFSET(32))); | ||
| 114 | writel(0xffffffff, REG(SEC_CR_OFFSET)); | ||
| 115 | |||
| 116 | ar7_irq_base = base; | ||
| 117 | |||
| 118 | for (i = 0; i < 40; i++) { | ||
| 119 | writel(i, REG(CHNL_OFFSET(i))); | ||
| 120 | /* Primary IRQ's */ | ||
| 121 | set_irq_chip_and_handler(base + i, &ar7_irq_type, | ||
| 122 | handle_level_irq); | ||
| 123 | /* Secondary IRQ's */ | ||
| 124 | if (i < 32) | ||
| 125 | set_irq_chip_and_handler(base + i + 40, | ||
| 126 | &ar7_sec_irq_type, | ||
| 127 | handle_level_irq); | ||
| 128 | } | ||
| 129 | |||
| 130 | setup_irq(2, &ar7_cascade_action); | ||
| 131 | setup_irq(ar7_irq_base, &ar7_cascade_action); | ||
| 132 | set_c0_status(IE_IRQ0); | ||
| 133 | } | ||
| 134 | |||
| 135 | void __init arch_init_irq(void) | ||
| 136 | { | ||
| 137 | mips_cpu_irq_init(); | ||
| 138 | ar7_irq_init(8); | ||
| 139 | } | ||
| 140 | |||
| 141 | static void ar7_cascade(void) | ||
| 142 | { | ||
| 143 | u32 status; | ||
| 144 | int i, irq; | ||
| 145 | |||
| 146 | /* Primary IRQ's */ | ||
| 147 | irq = readl(REG(PIR_OFFSET)) & 0x3f; | ||
| 148 | if (irq) { | ||
| 149 | do_IRQ(ar7_irq_base + irq); | ||
| 150 | return; | ||
| 151 | } | ||
| 152 | |||
| 153 | /* Secondary IRQ's are cascaded through primary '0' */ | ||
| 154 | writel(1, REG(CR_OFFSET(irq))); | ||
| 155 | status = readl(REG(SEC_SR_OFFSET)); | ||
| 156 | for (i = 0; i < 32; i++) { | ||
| 157 | if (status & 1) { | ||
| 158 | do_IRQ(ar7_irq_base + i + 40); | ||
| 159 | return; | ||
| 160 | } | ||
| 161 | status >>= 1; | ||
| 162 | } | ||
| 163 | |||
| 164 | spurious_interrupt(); | ||
| 165 | } | ||
| 166 | |||
| 167 | asmlinkage void plat_irq_dispatch(void) | ||
| 168 | { | ||
| 169 | unsigned int pending = read_c0_status() & read_c0_cause() & ST0_IM; | ||
| 170 | if (pending & STATUSF_IP7) /* cpu timer */ | ||
| 171 | do_IRQ(7); | ||
| 172 | else if (pending & STATUSF_IP2) /* int0 hardware line */ | ||
| 173 | ar7_cascade(); | ||
| 174 | else | ||
| 175 | spurious_interrupt(); | ||
| 176 | } | ||
diff --git a/arch/mips/ar7/memory.c b/arch/mips/ar7/memory.c new file mode 100644 index 000000000000..46fed44825a6 --- /dev/null +++ b/arch/mips/ar7/memory.c | |||
| @@ -0,0 +1,72 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2007 Felix Fietkau <nbd@openwrt.org> | ||
| 3 | * Copyright (C) 2007 Eugene Konev <ejka@openwrt.org> | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License as published by | ||
| 7 | * the Free Software Foundation; either version 2 of the License, or | ||
| 8 | * (at your option) any later version. | ||
| 9 | * | ||
| 10 | * This program is distributed in the hope that it will be useful, | ||
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | * GNU General Public License for more details. | ||
| 14 | * | ||
| 15 | * You should have received a copy of the GNU General Public License | ||
| 16 | * along with this program; if not, write to the Free Software | ||
| 17 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 18 | */ | ||
| 19 | #include <linux/bootmem.h> | ||
| 20 | #include <linux/init.h> | ||
| 21 | #include <linux/mm.h> | ||
| 22 | #include <linux/module.h> | ||
| 23 | #include <linux/pfn.h> | ||
| 24 | #include <linux/proc_fs.h> | ||
| 25 | #include <linux/string.h> | ||
| 26 | #include <linux/swap.h> | ||
| 27 | |||
| 28 | #include <asm/bootinfo.h> | ||
| 29 | #include <asm/page.h> | ||
| 30 | #include <asm/sections.h> | ||
| 31 | |||
| 32 | #include <asm/mach-ar7/ar7.h> | ||
| 33 | #include <asm/mips-boards/prom.h> | ||
| 34 | |||
| 35 | static int __init memsize(void) | ||
| 36 | { | ||
| 37 | u32 size = (64 << 20); | ||
| 38 | u32 *addr = (u32 *)KSEG1ADDR(AR7_SDRAM_BASE + size - 4); | ||
| 39 | u32 *kernel_end = (u32 *)KSEG1ADDR(CPHYSADDR((u32)&_end)); | ||
| 40 | u32 *tmpaddr = addr; | ||
| 41 | |||
| 42 | while (tmpaddr > kernel_end) { | ||
| 43 | *tmpaddr = (u32)tmpaddr; | ||
| 44 | size >>= 1; | ||
| 45 | tmpaddr -= size >> 2; | ||
| 46 | } | ||
| 47 | |||
| 48 | do { | ||
| 49 | tmpaddr += size >> 2; | ||
| 50 | if (*tmpaddr != (u32)tmpaddr) | ||
| 51 | break; | ||
| 52 | size <<= 1; | ||
| 53 | } while (size < (64 << 20)); | ||
| 54 | |||
| 55 | writel(tmpaddr, &addr); | ||
| 56 | |||
| 57 | return size; | ||
| 58 | } | ||
| 59 | |||
| 60 | void __init prom_meminit(void) | ||
| 61 | { | ||
| 62 | unsigned long pages; | ||
| 63 | |||
| 64 | pages = memsize() >> PAGE_SHIFT; | ||
| 65 | add_memory_region(PHYS_OFFSET, pages << PAGE_SHIFT, | ||
| 66 | BOOT_MEM_RAM); | ||
| 67 | } | ||
| 68 | |||
| 69 | void __init prom_free_prom_memory(void) | ||
| 70 | { | ||
| 71 | /* Nothing to free */ | ||
| 72 | } | ||
diff --git a/arch/mips/ar7/platform.c b/arch/mips/ar7/platform.c new file mode 100644 index 000000000000..542244961780 --- /dev/null +++ b/arch/mips/ar7/platform.c | |||
| @@ -0,0 +1,555 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2006,2007 Felix Fietkau <nbd@openwrt.org> | ||
| 3 | * Copyright (C) 2006,2007 Eugene Konev <ejka@openwrt.org> | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License as published by | ||
| 7 | * the Free Software Foundation; either version 2 of the License, or | ||
| 8 | * (at your option) any later version. | ||
| 9 | * | ||
| 10 | * This program is distributed in the hope that it will be useful, | ||
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | * GNU General Public License for more details. | ||
| 14 | * | ||
| 15 | * You should have received a copy of the GNU General Public License | ||
| 16 | * along with this program; if not, write to the Free Software | ||
| 17 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 18 | */ | ||
| 19 | |||
| 20 | #include <linux/init.h> | ||
| 21 | #include <linux/types.h> | ||
| 22 | #include <linux/module.h> | ||
| 23 | #include <linux/delay.h> | ||
| 24 | #include <linux/dma-mapping.h> | ||
| 25 | #include <linux/platform_device.h> | ||
| 26 | #include <linux/mtd/physmap.h> | ||
| 27 | #include <linux/serial.h> | ||
| 28 | #include <linux/serial_8250.h> | ||
| 29 | #include <linux/ioport.h> | ||
| 30 | #include <linux/io.h> | ||
| 31 | #include <linux/version.h> | ||
| 32 | #include <linux/vlynq.h> | ||
| 33 | #include <linux/leds.h> | ||
| 34 | #include <linux/string.h> | ||
| 35 | #include <linux/etherdevice.h> | ||
| 36 | |||
| 37 | #include <asm/addrspace.h> | ||
| 38 | #include <asm/mach-ar7/ar7.h> | ||
| 39 | #include <asm/mach-ar7/gpio.h> | ||
| 40 | #include <asm/mach-ar7/prom.h> | ||
| 41 | |||
| 42 | struct plat_vlynq_data { | ||
| 43 | struct plat_vlynq_ops ops; | ||
| 44 | int gpio_bit; | ||
| 45 | int reset_bit; | ||
| 46 | }; | ||
| 47 | |||
| 48 | |||
| 49 | static int vlynq_on(struct vlynq_device *dev) | ||
| 50 | { | ||
| 51 | int result; | ||
| 52 | struct plat_vlynq_data *pdata = dev->dev.platform_data; | ||
| 53 | |||
| 54 | result = gpio_request(pdata->gpio_bit, "vlynq"); | ||
| 55 | if (result) | ||
| 56 | goto out; | ||
| 57 | |||
| 58 | ar7_device_reset(pdata->reset_bit); | ||
| 59 | |||
| 60 | result = ar7_gpio_disable(pdata->gpio_bit); | ||
| 61 | if (result) | ||
| 62 | goto out_enabled; | ||
| 63 | |||
| 64 | result = ar7_gpio_enable(pdata->gpio_bit); | ||
| 65 | if (result) | ||
| 66 | goto out_enabled; | ||
| 67 | |||
| 68 | result = gpio_direction_output(pdata->gpio_bit, 0); | ||
| 69 | if (result) | ||
| 70 | goto out_gpio_enabled; | ||
| 71 | |||
| 72 | msleep(50); | ||
| 73 | |||
| 74 | gpio_set_value(pdata->gpio_bit, 1); | ||
| 75 | msleep(50); | ||
| 76 | |||
| 77 | return 0; | ||
| 78 | |||
| 79 | out_gpio_enabled: | ||
| 80 | ar7_gpio_disable(pdata->gpio_bit); | ||
| 81 | out_enabled: | ||
| 82 | ar7_device_disable(pdata->reset_bit); | ||
| 83 | gpio_free(pdata->gpio_bit); | ||
| 84 | out: | ||
| 85 | return result; | ||
| 86 | } | ||
| 87 | |||
| 88 | static void vlynq_off(struct vlynq_device *dev) | ||
| 89 | { | ||
| 90 | struct plat_vlynq_data *pdata = dev->dev.platform_data; | ||
| 91 | ar7_gpio_disable(pdata->gpio_bit); | ||
| 92 | gpio_free(pdata->gpio_bit); | ||
| 93 | ar7_device_disable(pdata->reset_bit); | ||
| 94 | } | ||
| 95 | |||
| 96 | static struct resource physmap_flash_resource = { | ||
| 97 | .name = "mem", | ||
| 98 | .flags = IORESOURCE_MEM, | ||
| 99 | .start = 0x10000000, | ||
| 100 | .end = 0x107fffff, | ||
| 101 | }; | ||
| 102 | |||
| 103 | static struct resource cpmac_low_res[] = { | ||
| 104 | { | ||
| 105 | .name = "regs", | ||
| 106 | .flags = IORESOURCE_MEM, | ||
| 107 | .start = AR7_REGS_MAC0, | ||
| 108 | .end = AR7_REGS_MAC0 + 0x7ff, | ||
| 109 | }, | ||
| 110 | { | ||
| 111 | .name = "irq", | ||
| 112 | .flags = IORESOURCE_IRQ, | ||
| 113 | .start = 27, | ||
| 114 | .end = 27, | ||
| 115 | }, | ||
| 116 | }; | ||
| 117 | |||
| 118 | static struct resource cpmac_high_res[] = { | ||
| 119 | { | ||
| 120 | .name = "regs", | ||
| 121 | .flags = IORESOURCE_MEM, | ||
| 122 | .start = AR7_REGS_MAC1, | ||
| 123 | .end = AR7_REGS_MAC1 + 0x7ff, | ||
| 124 | }, | ||
| 125 | { | ||
| 126 | .name = "irq", | ||
| 127 | .flags = IORESOURCE_IRQ, | ||
| 128 | .start = 41, | ||
| 129 | .end = 41, | ||
| 130 | }, | ||
| 131 | }; | ||
| 132 | |||
| 133 | static struct resource vlynq_low_res[] = { | ||
| 134 | { | ||
| 135 | .name = "regs", | ||
| 136 | .flags = IORESOURCE_MEM, | ||
| 137 | .start = AR7_REGS_VLYNQ0, | ||
| 138 | .end = AR7_REGS_VLYNQ0 + 0xff, | ||
| 139 | }, | ||
| 140 | { | ||
| 141 | .name = "irq", | ||
| 142 | .flags = IORESOURCE_IRQ, | ||
| 143 | .start = 29, | ||
| 144 | .end = 29, | ||
| 145 | }, | ||
| 146 | { | ||
| 147 | .name = "mem", | ||
| 148 | .flags = IORESOURCE_MEM, | ||
| 149 | .start = 0x04000000, | ||
| 150 | .end = 0x04ffffff, | ||
| 151 | }, | ||
| 152 | { | ||
| 153 | .name = "devirq", | ||
| 154 | .flags = IORESOURCE_IRQ, | ||
| 155 | .start = 80, | ||
| 156 | .end = 111, | ||
| 157 | }, | ||
| 158 | }; | ||
| 159 | |||
| 160 | static struct resource vlynq_high_res[] = { | ||
| 161 | { | ||
| 162 | .name = "regs", | ||
| 163 | .flags = IORESOURCE_MEM, | ||
| 164 | .start = AR7_REGS_VLYNQ1, | ||
| 165 | .end = AR7_REGS_VLYNQ1 + 0xff, | ||
| 166 | }, | ||
| 167 | { | ||
| 168 | .name = "irq", | ||
| 169 | .flags = IORESOURCE_IRQ, | ||
| 170 | .start = 33, | ||
| 171 | .end = 33, | ||
| 172 | }, | ||
| 173 | { | ||
| 174 | .name = "mem", | ||
| 175 | .flags = IORESOURCE_MEM, | ||
| 176 | .start = 0x0c000000, | ||
| 177 | .end = 0x0cffffff, | ||
| 178 | }, | ||
| 179 | { | ||
| 180 | .name = "devirq", | ||
| 181 | .flags = IORESOURCE_IRQ, | ||
| 182 | .start = 112, | ||
| 183 | .end = 143, | ||
| 184 | }, | ||
| 185 | }; | ||
| 186 | |||
| 187 | static struct resource usb_res[] = { | ||
| 188 | { | ||
| 189 | .name = "regs", | ||
| 190 | .flags = IORESOURCE_MEM, | ||
| 191 | .start = AR7_REGS_USB, | ||
| 192 | .end = AR7_REGS_USB + 0xff, | ||
| 193 | }, | ||
| 194 | { | ||
| 195 | .name = "irq", | ||
| 196 | .flags = IORESOURCE_IRQ, | ||
| 197 | .start = 32, | ||
| 198 | .end = 32, | ||
| 199 | }, | ||
| 200 | { | ||
| 201 | .name = "mem", | ||
| 202 | .flags = IORESOURCE_MEM, | ||
| 203 | .start = 0x03400000, | ||
| 204 | .end = 0x034001fff, | ||
| 205 | }, | ||
| 206 | }; | ||
| 207 | |||
| 208 | static struct physmap_flash_data physmap_flash_data = { | ||
| 209 | .width = 2, | ||
| 210 | }; | ||
| 211 | |||
| 212 | static struct plat_cpmac_data cpmac_low_data = { | ||
| 213 | .reset_bit = 17, | ||
| 214 | .power_bit = 20, | ||
| 215 | .phy_mask = 0x80000000, | ||
| 216 | }; | ||
| 217 | |||
| 218 | static struct plat_cpmac_data cpmac_high_data = { | ||
| 219 | .reset_bit = 21, | ||
| 220 | .power_bit = 22, | ||
| 221 | .phy_mask = 0x7fffffff, | ||
| 222 | }; | ||
| 223 | |||
| 224 | static struct plat_vlynq_data vlynq_low_data = { | ||
| 225 | .ops.on = vlynq_on, | ||
| 226 | .ops.off = vlynq_off, | ||
| 227 | .reset_bit = 20, | ||
| 228 | .gpio_bit = 18, | ||
| 229 | }; | ||
| 230 | |||
| 231 | static struct plat_vlynq_data vlynq_high_data = { | ||
| 232 | .ops.on = vlynq_on, | ||
| 233 | .ops.off = vlynq_off, | ||
| 234 | .reset_bit = 16, | ||
| 235 | .gpio_bit = 19, | ||
| 236 | }; | ||
| 237 | |||
| 238 | static struct platform_device physmap_flash = { | ||
| 239 | .id = 0, | ||
| 240 | .name = "physmap-flash", | ||
| 241 | .dev.platform_data = &physmap_flash_data, | ||
| 242 | .resource = &physmap_flash_resource, | ||
| 243 | .num_resources = 1, | ||
| 244 | }; | ||
| 245 | |||
| 246 | static u64 cpmac_dma_mask = DMA_32BIT_MASK; | ||
| 247 | static struct platform_device cpmac_low = { | ||
| 248 | .id = 0, | ||
| 249 | .name = "cpmac", | ||
| 250 | .dev = { | ||
| 251 | .dma_mask = &cpmac_dma_mask, | ||
| 252 | .coherent_dma_mask = DMA_32BIT_MASK, | ||
| 253 | .platform_data = &cpmac_low_data, | ||
| 254 | }, | ||
| 255 | .resource = cpmac_low_res, | ||
| 256 | .num_resources = ARRAY_SIZE(cpmac_low_res), | ||
| 257 | }; | ||
| 258 | |||
| 259 | static struct platform_device cpmac_high = { | ||
| 260 | .id = 1, | ||
| 261 | .name = "cpmac", | ||
| 262 | .dev = { | ||
| 263 | .dma_mask = &cpmac_dma_mask, | ||
| 264 | .coherent_dma_mask = DMA_32BIT_MASK, | ||
| 265 | .platform_data = &cpmac_high_data, | ||
| 266 | }, | ||
| 267 | .resource = cpmac_high_res, | ||
| 268 | .num_resources = ARRAY_SIZE(cpmac_high_res), | ||
| 269 | }; | ||
| 270 | |||
| 271 | static struct platform_device vlynq_low = { | ||
| 272 | .id = 0, | ||
| 273 | .name = "vlynq", | ||
| 274 | .dev.platform_data = &vlynq_low_data, | ||
| 275 | .resource = vlynq_low_res, | ||
| 276 | .num_resources = ARRAY_SIZE(vlynq_low_res), | ||
| 277 | }; | ||
| 278 | |||
| 279 | static struct platform_device vlynq_high = { | ||
| 280 | .id = 1, | ||
| 281 | .name = "vlynq", | ||
| 282 | .dev.platform_data = &vlynq_high_data, | ||
| 283 | .resource = vlynq_high_res, | ||
| 284 | .num_resources = ARRAY_SIZE(vlynq_high_res), | ||
| 285 | }; | ||
| 286 | |||
| 287 | |||
| 288 | static struct gpio_led default_leds[] = { | ||
| 289 | { | ||
| 290 | .name = "status", | ||
| 291 | .gpio = 8, | ||
| 292 | .active_low = 1, | ||
| 293 | }, | ||
| 294 | }; | ||
| 295 | |||
| 296 | static struct gpio_led dsl502t_leds[] = { | ||
| 297 | { | ||
| 298 | .name = "status", | ||
| 299 | .gpio = 9, | ||
| 300 | .active_low = 1, | ||
| 301 | }, | ||
| 302 | { | ||
| 303 | .name = "ethernet", | ||
| 304 | .gpio = 7, | ||
| 305 | .active_low = 1, | ||
| 306 | }, | ||
| 307 | { | ||
| 308 | .name = "usb", | ||
| 309 | .gpio = 12, | ||
| 310 | .active_low = 1, | ||
| 311 | }, | ||
| 312 | }; | ||
| 313 | |||
| 314 | static struct gpio_led dg834g_leds[] = { | ||
| 315 | { | ||
| 316 | .name = "ppp", | ||
| 317 | .gpio = 6, | ||
| 318 | .active_low = 1, | ||
| 319 | }, | ||
| 320 | { | ||
| 321 | .name = "status", | ||
| 322 | .gpio = 7, | ||
| 323 | .active_low = 1, | ||
| 324 | }, | ||
| 325 | { | ||
| 326 | .name = "adsl", | ||
| 327 | .gpio = 8, | ||
| 328 | .active_low = 1, | ||
| 329 | }, | ||
| 330 | { | ||
| 331 | .name = "wifi", | ||
| 332 | .gpio = 12, | ||
| 333 | .active_low = 1, | ||
| 334 | }, | ||
| 335 | { | ||
| 336 | .name = "power", | ||
| 337 | .gpio = 14, | ||
| 338 | .active_low = 1, | ||
| 339 | .default_trigger = "default-on", | ||
| 340 | }, | ||
| 341 | }; | ||
| 342 | |||
| 343 | static struct gpio_led fb_sl_leds[] = { | ||
| 344 | { | ||
| 345 | .name = "1", | ||
| 346 | .gpio = 7, | ||
| 347 | }, | ||
| 348 | { | ||
| 349 | .name = "2", | ||
| 350 | .gpio = 13, | ||
| 351 | .active_low = 1, | ||
| 352 | }, | ||
| 353 | { | ||
| 354 | .name = "3", | ||
| 355 | .gpio = 10, | ||
| 356 | .active_low = 1, | ||
| 357 | }, | ||
| 358 | { | ||
| 359 | .name = "4", | ||
| 360 | .gpio = 12, | ||
| 361 | .active_low = 1, | ||
| 362 | }, | ||
| 363 | { | ||
| 364 | .name = "5", | ||
| 365 | .gpio = 9, | ||
| 366 | .active_low = 1, | ||
| 367 | }, | ||
| 368 | }; | ||
| 369 | |||
| 370 | static struct gpio_led fb_fon_leds[] = { | ||
| 371 | { | ||
| 372 | .name = "1", | ||
| 373 | .gpio = 8, | ||
| 374 | }, | ||
| 375 | { | ||
| 376 | .name = "2", | ||
| 377 | .gpio = 3, | ||
| 378 | .active_low = 1, | ||
| 379 | }, | ||
| 380 | { | ||
| 381 | .name = "3", | ||
| 382 | .gpio = 5, | ||
| 383 | }, | ||
| 384 | { | ||
| 385 | .name = "4", | ||
| 386 | .gpio = 4, | ||
| 387 | .active_low = 1, | ||
| 388 | }, | ||
| 389 | { | ||
| 390 | .name = "5", | ||
| 391 | .gpio = 11, | ||
| 392 | .active_low = 1, | ||
| 393 | }, | ||
| 394 | }; | ||
| 395 | |||
| 396 | static struct gpio_led_platform_data ar7_led_data; | ||
| 397 | |||
| 398 | static struct platform_device ar7_gpio_leds = { | ||
| 399 | .name = "leds-gpio", | ||
| 400 | .id = -1, | ||
| 401 | .dev = { | ||
| 402 | .platform_data = &ar7_led_data, | ||
| 403 | } | ||
| 404 | }; | ||
| 405 | |||
| 406 | static struct platform_device ar7_udc = { | ||
| 407 | .id = -1, | ||
| 408 | .name = "ar7_udc", | ||
| 409 | .resource = usb_res, | ||
| 410 | .num_resources = ARRAY_SIZE(usb_res), | ||
| 411 | }; | ||
| 412 | |||
| 413 | static inline unsigned char char2hex(char h) | ||
| 414 | { | ||
| 415 | switch (h) { | ||
| 416 | case '0': case '1': case '2': case '3': case '4': | ||
| 417 | case '5': case '6': case '7': case '8': case '9': | ||
| 418 | return h - '0'; | ||
| 419 | case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': | ||
| 420 | return h - 'A' + 10; | ||
| 421 | case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': | ||
| 422 | return h - 'a' + 10; | ||
| 423 | default: | ||
| 424 | return 0; | ||
| 425 | } | ||
| 426 | } | ||
| 427 | |||
| 428 | static void cpmac_get_mac(int instance, unsigned char *dev_addr) | ||
| 429 | { | ||
| 430 | int i; | ||
| 431 | char name[5], default_mac[ETH_ALEN], *mac; | ||
| 432 | |||
| 433 | mac = NULL; | ||
| 434 | sprintf(name, "mac%c", 'a' + instance); | ||
| 435 | mac = prom_getenv(name); | ||
| 436 | if (!mac) { | ||
| 437 | sprintf(name, "mac%c", 'a'); | ||
| 438 | mac = prom_getenv(name); | ||
| 439 | } | ||
| 440 | if (!mac) { | ||
| 441 | random_ether_addr(default_mac); | ||
| 442 | mac = default_mac; | ||
| 443 | } | ||
| 444 | for (i = 0; i < 6; i++) | ||
| 445 | dev_addr[i] = (char2hex(mac[i * 3]) << 4) + | ||
| 446 | char2hex(mac[i * 3 + 1]); | ||
| 447 | } | ||
| 448 | |||
| 449 | static void __init detect_leds(void) | ||
| 450 | { | ||
| 451 | char *prid, *usb_prod; | ||
| 452 | |||
| 453 | /* Default LEDs */ | ||
| 454 | ar7_led_data.num_leds = ARRAY_SIZE(default_leds); | ||
| 455 | ar7_led_data.leds = default_leds; | ||
| 456 | |||
| 457 | /* FIXME: the whole thing is unreliable */ | ||
| 458 | prid = prom_getenv("ProductID"); | ||
| 459 | usb_prod = prom_getenv("usb_prod"); | ||
| 460 | |||
| 461 | /* If we can't get the product id from PROM, use the default LEDs */ | ||
| 462 | if (!prid) | ||
| 463 | return; | ||
| 464 | |||
| 465 | if (strstr(prid, "Fritz_Box_FON")) { | ||
| 466 | ar7_led_data.num_leds = ARRAY_SIZE(fb_fon_leds); | ||
| 467 | ar7_led_data.leds = fb_fon_leds; | ||
| 468 | } else if (strstr(prid, "Fritz_Box_")) { | ||
| 469 | ar7_led_data.num_leds = ARRAY_SIZE(fb_sl_leds); | ||
| 470 | ar7_led_data.leds = fb_sl_leds; | ||
| 471 | } else if ((!strcmp(prid, "AR7RD") || !strcmp(prid, "AR7DB")) | ||
| 472 | && usb_prod != NULL && strstr(usb_prod, "DSL-502T")) { | ||
| 473 | ar7_led_data.num_leds = ARRAY_SIZE(dsl502t_leds); | ||
| 474 | ar7_led_data.leds = dsl502t_leds; | ||
| 475 | } else if (strstr(prid, "DG834")) { | ||
| 476 | ar7_led_data.num_leds = ARRAY_SIZE(dg834g_leds); | ||
| 477 | ar7_led_data.leds = dg834g_leds; | ||
| 478 | } | ||
| 479 | } | ||
| 480 | |||
| 481 | static int __init ar7_register_devices(void) | ||
| 482 | { | ||
| 483 | int res; | ||
| 484 | static struct uart_port uart_port[2]; | ||
| 485 | |||
| 486 | memset(uart_port, 0, sizeof(struct uart_port) * 2); | ||
| 487 | |||
| 488 | uart_port[0].type = PORT_16550A; | ||
| 489 | uart_port[0].line = 0; | ||
| 490 | uart_port[0].irq = AR7_IRQ_UART0; | ||
| 491 | uart_port[0].uartclk = ar7_bus_freq() / 2; | ||
| 492 | uart_port[0].iotype = UPIO_MEM32; | ||
| 493 | uart_port[0].mapbase = AR7_REGS_UART0; | ||
| 494 | uart_port[0].membase = ioremap(uart_port[0].mapbase, 256); | ||
| 495 | uart_port[0].regshift = 2; | ||
| 496 | res = early_serial_setup(&uart_port[0]); | ||
| 497 | if (res) | ||
| 498 | return res; | ||
| 499 | |||
| 500 | |||
| 501 | /* Only TNETD73xx have a second serial port */ | ||
| 502 | if (ar7_has_second_uart()) { | ||
| 503 | uart_port[1].type = PORT_16550A; | ||
| 504 | uart_port[1].line = 1; | ||
| 505 | uart_port[1].irq = AR7_IRQ_UART1; | ||
| 506 | uart_port[1].uartclk = ar7_bus_freq() / 2; | ||
| 507 | uart_port[1].iotype = UPIO_MEM32; | ||
| 508 | uart_port[1].mapbase = UR8_REGS_UART1; | ||
| 509 | uart_port[1].membase = ioremap(uart_port[1].mapbase, 256); | ||
| 510 | uart_port[1].regshift = 2; | ||
| 511 | res = early_serial_setup(&uart_port[1]); | ||
| 512 | if (res) | ||
| 513 | return res; | ||
| 514 | } | ||
| 515 | |||
| 516 | res = platform_device_register(&physmap_flash); | ||
| 517 | if (res) | ||
| 518 | return res; | ||
| 519 | |||
| 520 | ar7_device_disable(vlynq_low_data.reset_bit); | ||
| 521 | res = platform_device_register(&vlynq_low); | ||
| 522 | if (res) | ||
| 523 | return res; | ||
| 524 | |||
| 525 | if (ar7_has_high_vlynq()) { | ||
| 526 | ar7_device_disable(vlynq_high_data.reset_bit); | ||
| 527 | res = platform_device_register(&vlynq_high); | ||
| 528 | if (res) | ||
| 529 | return res; | ||
| 530 | } | ||
| 531 | |||
| 532 | if (ar7_has_high_cpmac()) { | ||
| 533 | cpmac_get_mac(1, cpmac_high_data.dev_addr); | ||
| 534 | res = platform_device_register(&cpmac_high); | ||
| 535 | if (res) | ||
| 536 | return res; | ||
| 537 | } else { | ||
| 538 | cpmac_low_data.phy_mask = 0xffffffff; | ||
| 539 | } | ||
| 540 | |||
| 541 | cpmac_get_mac(0, cpmac_low_data.dev_addr); | ||
| 542 | res = platform_device_register(&cpmac_low); | ||
| 543 | if (res) | ||
| 544 | return res; | ||
| 545 | |||
| 546 | detect_leds(); | ||
| 547 | res = platform_device_register(&ar7_gpio_leds); | ||
| 548 | if (res) | ||
| 549 | return res; | ||
| 550 | |||
| 551 | res = platform_device_register(&ar7_udc); | ||
| 552 | |||
| 553 | return res; | ||
| 554 | } | ||
| 555 | arch_initcall(ar7_register_devices); | ||
diff --git a/arch/mips/ar7/prom.c b/arch/mips/ar7/prom.c new file mode 100644 index 000000000000..a320bceb2f9d --- /dev/null +++ b/arch/mips/ar7/prom.c | |||
| @@ -0,0 +1,297 @@ | |||
| 1 | /* | ||
| 2 | * Carsten Langgaard, carstenl@mips.com | ||
| 3 | * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved. | ||
| 4 | * | ||
| 5 | * This program is free software; you can distribute it and/or modify it | ||
| 6 | * under the terms of the GNU General Public License (Version 2) as | ||
| 7 | * published by the Free Software Foundation. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
| 12 | * for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License along | ||
| 15 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
| 16 | * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. | ||
| 17 | * | ||
| 18 | * Putting things on the screen/serial line using YAMONs facilities. | ||
| 19 | */ | ||
| 20 | #include <linux/init.h> | ||
| 21 | #include <linux/kernel.h> | ||
| 22 | #include <linux/serial_reg.h> | ||
| 23 | #include <linux/spinlock.h> | ||
| 24 | #include <linux/module.h> | ||
| 25 | #include <linux/string.h> | ||
| 26 | #include <linux/io.h> | ||
| 27 | #include <asm/bootinfo.h> | ||
| 28 | |||
| 29 | #include <asm/mach-ar7/ar7.h> | ||
| 30 | #include <asm/mach-ar7/prom.h> | ||
| 31 | |||
| 32 | #define MAX_ENTRY 80 | ||
| 33 | |||
| 34 | struct env_var { | ||
| 35 | char *name; | ||
| 36 | char *value; | ||
| 37 | }; | ||
| 38 | |||
| 39 | static struct env_var adam2_env[MAX_ENTRY]; | ||
| 40 | |||
| 41 | char *prom_getenv(const char *name) | ||
| 42 | { | ||
| 43 | int i; | ||
| 44 | for (i = 0; (i < MAX_ENTRY) && adam2_env[i].name; i++) | ||
| 45 | if (!strcmp(name, adam2_env[i].name)) | ||
| 46 | return adam2_env[i].value; | ||
| 47 | |||
| 48 | return NULL; | ||
| 49 | } | ||
| 50 | EXPORT_SYMBOL(prom_getenv); | ||
| 51 | |||
| 52 | char * __init prom_getcmdline(void) | ||
| 53 | { | ||
| 54 | return &(arcs_cmdline[0]); | ||
| 55 | } | ||
| 56 | |||
| 57 | static void __init ar7_init_cmdline(int argc, char *argv[]) | ||
| 58 | { | ||
| 59 | char *cp; | ||
| 60 | int actr; | ||
| 61 | |||
| 62 | actr = 1; /* Always ignore argv[0] */ | ||
| 63 | |||
| 64 | cp = &(arcs_cmdline[0]); | ||
| 65 | while (actr < argc) { | ||
| 66 | strcpy(cp, argv[actr]); | ||
| 67 | cp += strlen(argv[actr]); | ||
| 68 | *cp++ = ' '; | ||
| 69 | actr++; | ||
| 70 | } | ||
| 71 | if (cp != &(arcs_cmdline[0])) { | ||
| 72 | /* get rid of trailing space */ | ||
| 73 | --cp; | ||
| 74 | *cp = '\0'; | ||
| 75 | } | ||
| 76 | } | ||
| 77 | |||
| 78 | struct psbl_rec { | ||
| 79 | u32 psbl_size; | ||
| 80 | u32 env_base; | ||
| 81 | u32 env_size; | ||
| 82 | u32 ffs_base; | ||
| 83 | u32 ffs_size; | ||
| 84 | }; | ||
| 85 | |||
| 86 | static __initdata char psp_env_version[] = "TIENV0.8"; | ||
| 87 | |||
| 88 | struct psp_env_chunk { | ||
| 89 | u8 num; | ||
| 90 | u8 ctrl; | ||
| 91 | u16 csum; | ||
| 92 | u8 len; | ||
| 93 | char data[11]; | ||
| 94 | } __attribute__ ((packed)); | ||
| 95 | |||
| 96 | struct psp_var_map_entry { | ||
| 97 | u8 num; | ||
| 98 | char *value; | ||
| 99 | }; | ||
| 100 | |||
| 101 | static struct psp_var_map_entry psp_var_map[] = { | ||
| 102 | { 1, "cpufrequency" }, | ||
| 103 | { 2, "memsize" }, | ||
| 104 | { 3, "flashsize" }, | ||
| 105 | { 4, "modetty0" }, | ||
| 106 | { 5, "modetty1" }, | ||
| 107 | { 8, "maca" }, | ||
| 108 | { 9, "macb" }, | ||
| 109 | { 28, "sysfrequency" }, | ||
| 110 | { 38, "mipsfrequency" }, | ||
| 111 | }; | ||
| 112 | |||
| 113 | /* | ||
| 114 | |||
| 115 | Well-known variable (num is looked up in table above for matching variable name) | ||
| 116 | Example: cpufrequency=211968000 | ||
| 117 | +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+--- | ||
| 118 | | 01 |CTRL|CHECKSUM | 01 | _2 | _1 | _1 | _9 | _6 | _8 | _0 | _0 | _0 | \0 | FF | ||
| 119 | +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+--- | ||
| 120 | |||
| 121 | Name=Value pair in a single chunk | ||
| 122 | Example: NAME=VALUE | ||
| 123 | +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+--- | ||
| 124 | | 00 |CTRL|CHECKSUM | 01 | _N | _A | _M | _E | _0 | _V | _A | _L | _U | _E | \0 | ||
| 125 | +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+--- | ||
| 126 | |||
| 127 | Name=Value pair in 2 chunks (len is the number of chunks) | ||
| 128 | Example: bootloaderVersion=1.3.7.15 | ||
| 129 | +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+--- | ||
| 130 | | 00 |CTRL|CHECKSUM | 02 | _b | _o | _o | _t | _l | _o | _a | _d | _e | _r | _V | ||
| 131 | +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+--- | ||
| 132 | | _e | _r | _s | _i | _o | _n | \0 | _1 | _. | _3 | _. | _7 | _. | _1 | _5 | \0 | ||
| 133 | +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+--- | ||
| 134 | |||
| 135 | Data is padded with 0xFF | ||
| 136 | |||
| 137 | */ | ||
| 138 | |||
| 139 | #define PSP_ENV_SIZE 4096 | ||
| 140 | |||
| 141 | static char psp_env_data[PSP_ENV_SIZE] = { 0, }; | ||
| 142 | |||
| 143 | static char * __init lookup_psp_var_map(u8 num) | ||
| 144 | { | ||
| 145 | int i; | ||
| 146 | |||
| 147 | for (i = 0; i < sizeof(psp_var_map); i++) | ||
| 148 | if (psp_var_map[i].num == num) | ||
| 149 | return psp_var_map[i].value; | ||
| 150 | |||
| 151 | return NULL; | ||
| 152 | } | ||
| 153 | |||
| 154 | static void __init add_adam2_var(char *name, char *value) | ||
| 155 | { | ||
| 156 | int i; | ||
| 157 | for (i = 0; i < MAX_ENTRY; i++) { | ||
| 158 | if (!adam2_env[i].name) { | ||
| 159 | adam2_env[i].name = name; | ||
| 160 | adam2_env[i].value = value; | ||
| 161 | return; | ||
| 162 | } else if (!strcmp(adam2_env[i].name, name)) { | ||
| 163 | adam2_env[i].value = value; | ||
| 164 | return; | ||
| 165 | } | ||
| 166 | } | ||
| 167 | } | ||
| 168 | |||
| 169 | static int __init parse_psp_env(void *psp_env_base) | ||
| 170 | { | ||
| 171 | int i, n; | ||
| 172 | char *name, *value; | ||
| 173 | struct psp_env_chunk *chunks = (struct psp_env_chunk *)psp_env_data; | ||
| 174 | |||
| 175 | memcpy_fromio(chunks, psp_env_base, PSP_ENV_SIZE); | ||
| 176 | |||
| 177 | i = 1; | ||
| 178 | n = PSP_ENV_SIZE / sizeof(struct psp_env_chunk); | ||
| 179 | while (i < n) { | ||
| 180 | if ((chunks[i].num == 0xff) || ((i + chunks[i].len) > n)) | ||
| 181 | break; | ||
| 182 | value = chunks[i].data; | ||
| 183 | if (chunks[i].num) { | ||
| 184 | name = lookup_psp_var_map(chunks[i].num); | ||
| 185 | } else { | ||
| 186 | name = value; | ||
| 187 | value += strlen(name) + 1; | ||
| 188 | } | ||
| 189 | if (name) | ||
| 190 | add_adam2_var(name, value); | ||
| 191 | i += chunks[i].len; | ||
| 192 | } | ||
| 193 | return 0; | ||
| 194 | } | ||
| 195 | |||
| 196 | static void __init ar7_init_env(struct env_var *env) | ||
| 197 | { | ||
| 198 | int i; | ||
| 199 | struct psbl_rec *psbl = (struct psbl_rec *)(KSEG1ADDR(0x14000300)); | ||
| 200 | void *psp_env = (void *)KSEG1ADDR(psbl->env_base); | ||
| 201 | |||
| 202 | if (strcmp(psp_env, psp_env_version) == 0) { | ||
| 203 | parse_psp_env(psp_env); | ||
| 204 | } else { | ||
| 205 | for (i = 0; i < MAX_ENTRY; i++, env++) | ||
| 206 | if (env->name) | ||
| 207 | add_adam2_var(env->name, env->value); | ||
| 208 | } | ||
| 209 | } | ||
| 210 | |||
| 211 | static void __init console_config(void) | ||
| 212 | { | ||
| 213 | #ifdef CONFIG_SERIAL_8250_CONSOLE | ||
| 214 | char console_string[40]; | ||
| 215 | int baud = 0; | ||
| 216 | char parity = '\0', bits = '\0', flow = '\0'; | ||
| 217 | char *s, *p; | ||
| 218 | |||
| 219 | if (strstr(prom_getcmdline(), "console=")) | ||
| 220 | return; | ||
| 221 | |||
| 222 | #ifdef CONFIG_KGDB | ||
| 223 | if (!strstr(prom_getcmdline(), "nokgdb")) { | ||
| 224 | strcat(prom_getcmdline(), " console=kgdb"); | ||
| 225 | kgdb_enabled = 1; | ||
| 226 | return; | ||
| 227 | } | ||
| 228 | #endif | ||
| 229 | |||
| 230 | s = prom_getenv("modetty0"); | ||
| 231 | if (s) { | ||
| 232 | baud = simple_strtoul(s, &p, 10); | ||
| 233 | s = p; | ||
| 234 | if (*s == ',') | ||
| 235 | s++; | ||
| 236 | if (*s) | ||
| 237 | parity = *s++; | ||
| 238 | if (*s == ',') | ||
| 239 | s++; | ||
| 240 | if (*s) | ||
| 241 | bits = *s++; | ||
| 242 | if (*s == ',') | ||
| 243 | s++; | ||
| 244 | if (*s == 'h') | ||
| 245 | flow = 'r'; | ||
| 246 | } | ||
| 247 | |||
| 248 | if (baud == 0) | ||
| 249 | baud = 38400; | ||
| 250 | if (parity != 'n' && parity != 'o' && parity != 'e') | ||
| 251 | parity = 'n'; | ||
| 252 | if (bits != '7' && bits != '8') | ||
| 253 | bits = '8'; | ||
| 254 | |||
| 255 | if (flow == 'r') | ||
| 256 | sprintf(console_string, " console=ttyS0,%d%c%c%c", baud, | ||
| 257 | parity, bits, flow); | ||
| 258 | else | ||
| 259 | sprintf(console_string, " console=ttyS0,%d%c%c", baud, parity, | ||
| 260 | bits); | ||
| 261 | strcat(prom_getcmdline(), console_string); | ||
| 262 | #endif | ||
| 263 | } | ||
| 264 | |||
| 265 | void __init prom_init(void) | ||
| 266 | { | ||
| 267 | ar7_init_cmdline(fw_arg0, (char **)fw_arg1); | ||
| 268 | ar7_init_env((struct env_var *)fw_arg2); | ||
| 269 | console_config(); | ||
| 270 | } | ||
| 271 | |||
| 272 | #define PORT(offset) (KSEG1ADDR(AR7_REGS_UART0 + (offset * 4))) | ||
| 273 | static inline unsigned int serial_in(int offset) | ||
| 274 | { | ||
| 275 | return readl((void *)PORT(offset)); | ||
| 276 | } | ||
| 277 | |||
| 278 | static inline void serial_out(int offset, int value) | ||
| 279 | { | ||
| 280 | writel(value, (void *)PORT(offset)); | ||
| 281 | } | ||
| 282 | |||
| 283 | char prom_getchar(void) | ||
| 284 | { | ||
| 285 | while (!(serial_in(UART_LSR) & UART_LSR_DR)) | ||
| 286 | ; | ||
| 287 | return serial_in(UART_RX); | ||
| 288 | } | ||
| 289 | |||
| 290 | int prom_putchar(char c) | ||
| 291 | { | ||
| 292 | while ((serial_in(UART_LSR) & UART_LSR_TEMT) == 0) | ||
| 293 | ; | ||
| 294 | serial_out(UART_TX, c); | ||
| 295 | return 1; | ||
| 296 | } | ||
| 297 | |||
diff --git a/arch/mips/ar7/setup.c b/arch/mips/ar7/setup.c new file mode 100644 index 000000000000..6ebb5f16d967 --- /dev/null +++ b/arch/mips/ar7/setup.c | |||
| @@ -0,0 +1,94 @@ | |||
| 1 | /* | ||
| 2 | * Carsten Langgaard, carstenl@mips.com | ||
| 3 | * Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved. | ||
| 4 | * | ||
| 5 | * This program is free software; you can distribute it and/or modify it | ||
| 6 | * under the terms of the GNU General Public License (Version 2) as | ||
| 7 | * published by the Free Software Foundation. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
| 12 | * for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License along | ||
| 15 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
| 16 | * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. | ||
| 17 | */ | ||
| 18 | #include <linux/version.h> | ||
| 19 | #include <linux/init.h> | ||
| 20 | #include <linux/ioport.h> | ||
| 21 | #include <linux/pm.h> | ||
| 22 | #include <linux/time.h> | ||
| 23 | |||
| 24 | #include <asm/reboot.h> | ||
| 25 | #include <asm/mach-ar7/ar7.h> | ||
| 26 | #include <asm/mach-ar7/prom.h> | ||
| 27 | |||
| 28 | static void ar7_machine_restart(char *command) | ||
| 29 | { | ||
| 30 | u32 *softres_reg = ioremap(AR7_REGS_RESET + | ||
| 31 | AR7_RESET_SOFTWARE, 1); | ||
| 32 | writel(1, softres_reg); | ||
| 33 | } | ||
| 34 | |||
| 35 | static void ar7_machine_halt(void) | ||
| 36 | { | ||
| 37 | while (1) | ||
| 38 | ; | ||
| 39 | } | ||
| 40 | |||
| 41 | static void ar7_machine_power_off(void) | ||
| 42 | { | ||
| 43 | u32 *power_reg = (u32 *)ioremap(AR7_REGS_POWER, 1); | ||
| 44 | u32 power_state = readl(power_reg) | (3 << 30); | ||
| 45 | writel(power_state, power_reg); | ||
| 46 | ar7_machine_halt(); | ||
| 47 | } | ||
| 48 | |||
| 49 | const char *get_system_type(void) | ||
| 50 | { | ||
| 51 | u16 chip_id = ar7_chip_id(); | ||
| 52 | switch (chip_id) { | ||
| 53 | case AR7_CHIP_7300: | ||
| 54 | return "TI AR7 (TNETD7300)"; | ||
| 55 | case AR7_CHIP_7100: | ||
| 56 | return "TI AR7 (TNETD7100)"; | ||
| 57 | case AR7_CHIP_7200: | ||
| 58 | return "TI AR7 (TNETD7200)"; | ||
| 59 | default: | ||
| 60 | return "TI AR7 (Unknown)"; | ||
| 61 | } | ||
| 62 | } | ||
| 63 | |||
| 64 | static int __init ar7_init_console(void) | ||
| 65 | { | ||
| 66 | return 0; | ||
| 67 | } | ||
| 68 | console_initcall(ar7_init_console); | ||
| 69 | |||
| 70 | /* | ||
| 71 | * Initializes basic routines and structures pointers, memory size (as | ||
| 72 | * given by the bios and saves the command line. | ||
| 73 | */ | ||
| 74 | |||
| 75 | void __init plat_mem_setup(void) | ||
| 76 | { | ||
| 77 | unsigned long io_base; | ||
| 78 | |||
| 79 | _machine_restart = ar7_machine_restart; | ||
| 80 | _machine_halt = ar7_machine_halt; | ||
| 81 | pm_power_off = ar7_machine_power_off; | ||
| 82 | panic_timeout = 3; | ||
| 83 | |||
| 84 | io_base = (unsigned long)ioremap(AR7_REGS_BASE, 0x10000); | ||
| 85 | if (!io_base) | ||
| 86 | panic("Can't remap IO base!\n"); | ||
| 87 | set_io_port_base(io_base); | ||
| 88 | |||
| 89 | prom_meminit(); | ||
| 90 | |||
| 91 | printk(KERN_INFO "%s, ID: 0x%04x, Revision: 0x%02x\n", | ||
| 92 | get_system_type(), | ||
| 93 | ar7_chip_id(), ar7_chip_rev()); | ||
| 94 | } | ||
diff --git a/arch/mips/ar7/time.c b/arch/mips/ar7/time.c new file mode 100644 index 000000000000..a1fba894daa2 --- /dev/null +++ b/arch/mips/ar7/time.c | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* | ||
| 2 | * Carsten Langgaard, carstenl@mips.com | ||
| 3 | * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved. | ||
| 4 | * | ||
| 5 | * This program is free software; you can distribute it and/or modify it | ||
| 6 | * under the terms of the GNU General Public License (Version 2) as | ||
| 7 | * published by the Free Software Foundation. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
| 12 | * for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License along | ||
| 15 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
| 16 | * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. | ||
| 17 | * | ||
| 18 | * Setting up the clock on the MIPS boards. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/init.h> | ||
| 22 | #include <linux/time.h> | ||
| 23 | |||
| 24 | #include <asm/time.h> | ||
| 25 | #include <asm/mach-ar7/ar7.h> | ||
| 26 | |||
| 27 | void __init plat_time_init(void) | ||
| 28 | { | ||
| 29 | mips_hpt_frequency = ar7_cpu_freq() / 2; | ||
| 30 | } | ||
diff --git a/arch/mips/cavium-octeon/Makefile b/arch/mips/cavium-octeon/Makefile index 7c0528b0e34c..d6903c3f3d51 100644 --- a/arch/mips/cavium-octeon/Makefile +++ b/arch/mips/cavium-octeon/Makefile | |||
| @@ -14,9 +14,5 @@ obj-y += dma-octeon.o flash_setup.o | |||
| 14 | obj-y += octeon-memcpy.o | 14 | obj-y += octeon-memcpy.o |
| 15 | 15 | ||
| 16 | obj-$(CONFIG_SMP) += smp.o | 16 | obj-$(CONFIG_SMP) += smp.o |
| 17 | obj-$(CONFIG_PCI) += pci-common.o | ||
| 18 | obj-$(CONFIG_PCI) += pci.o | ||
| 19 | obj-$(CONFIG_PCI) += pcie.o | ||
| 20 | obj-$(CONFIG_PCI_MSI) += msi.o | ||
| 21 | 17 | ||
| 22 | EXTRA_CFLAGS += -Werror | 18 | EXTRA_CFLAGS += -Werror |
diff --git a/arch/mips/cavium-octeon/dma-octeon.c b/arch/mips/cavium-octeon/dma-octeon.c index 627c162a6159..4b92bfc662db 100644 --- a/arch/mips/cavium-octeon/dma-octeon.c +++ b/arch/mips/cavium-octeon/dma-octeon.c | |||
| @@ -29,7 +29,7 @@ | |||
| 29 | #include <dma-coherence.h> | 29 | #include <dma-coherence.h> |
| 30 | 30 | ||
| 31 | #ifdef CONFIG_PCI | 31 | #ifdef CONFIG_PCI |
| 32 | #include "pci-common.h" | 32 | #include <asm/octeon/pci-octeon.h> |
| 33 | #endif | 33 | #endif |
| 34 | 34 | ||
| 35 | #define BAR2_PCI_ADDRESS 0x8000000000ul | 35 | #define BAR2_PCI_ADDRESS 0x8000000000ul |
diff --git a/arch/mips/cavium-octeon/pci-common.c b/arch/mips/cavium-octeon/pci-common.c deleted file mode 100644 index cd029f88da7f..000000000000 --- a/arch/mips/cavium-octeon/pci-common.c +++ /dev/null | |||
| @@ -1,137 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * This file is subject to the terms and conditions of the GNU General Public | ||
| 3 | * License. See the file "COPYING" in the main directory of this archive | ||
| 4 | * for more details. | ||
| 5 | * | ||
| 6 | * Copyright (C) 2005-2007 Cavium Networks | ||
| 7 | */ | ||
| 8 | #include <linux/kernel.h> | ||
| 9 | #include <linux/init.h> | ||
| 10 | #include <linux/pci.h> | ||
| 11 | #include <linux/interrupt.h> | ||
| 12 | #include <linux/time.h> | ||
| 13 | #include <linux/delay.h> | ||
| 14 | #include "pci-common.h" | ||
| 15 | |||
| 16 | typeof(pcibios_map_irq) *octeon_pcibios_map_irq; | ||
| 17 | enum octeon_dma_bar_type octeon_dma_bar_type = OCTEON_DMA_BAR_TYPE_INVALID; | ||
| 18 | |||
| 19 | /** | ||
| 20 | * Map a PCI device to the appropriate interrupt line | ||
| 21 | * | ||
| 22 | * @param dev The Linux PCI device structure for the device to map | ||
| 23 | * @param slot The slot number for this device on __BUS 0__. Linux | ||
| 24 | * enumerates through all the bridges and figures out the | ||
| 25 | * slot on Bus 0 where this device eventually hooks to. | ||
| 26 | * @param pin The PCI interrupt pin read from the device, then swizzled | ||
| 27 | * as it goes through each bridge. | ||
| 28 | * @return Interrupt number for the device | ||
| 29 | */ | ||
| 30 | int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) | ||
| 31 | { | ||
| 32 | if (octeon_pcibios_map_irq) | ||
| 33 | return octeon_pcibios_map_irq(dev, slot, pin); | ||
| 34 | else | ||
| 35 | panic("octeon_pcibios_map_irq doesn't point to a " | ||
| 36 | "pcibios_map_irq() function"); | ||
| 37 | } | ||
| 38 | |||
| 39 | |||
| 40 | /** | ||
| 41 | * Called to perform platform specific PCI setup | ||
| 42 | * | ||
| 43 | * @param dev | ||
| 44 | * @return | ||
| 45 | */ | ||
| 46 | int pcibios_plat_dev_init(struct pci_dev *dev) | ||
| 47 | { | ||
| 48 | uint16_t config; | ||
| 49 | uint32_t dconfig; | ||
| 50 | int pos; | ||
| 51 | /* | ||
| 52 | * Force the Cache line setting to 64 bytes. The standard | ||
| 53 | * Linux bus scan doesn't seem to set it. Octeon really has | ||
| 54 | * 128 byte lines, but Intel bridges get really upset if you | ||
| 55 | * try and set values above 64 bytes. Value is specified in | ||
| 56 | * 32bit words. | ||
| 57 | */ | ||
| 58 | pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, 64 / 4); | ||
| 59 | /* Set latency timers for all devices */ | ||
| 60 | pci_write_config_byte(dev, PCI_LATENCY_TIMER, 48); | ||
| 61 | |||
| 62 | /* Enable reporting System errors and parity errors on all devices */ | ||
| 63 | /* Enable parity checking and error reporting */ | ||
| 64 | pci_read_config_word(dev, PCI_COMMAND, &config); | ||
| 65 | config |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR; | ||
| 66 | pci_write_config_word(dev, PCI_COMMAND, config); | ||
| 67 | |||
| 68 | if (dev->subordinate) { | ||
| 69 | /* Set latency timers on sub bridges */ | ||
| 70 | pci_write_config_byte(dev, PCI_SEC_LATENCY_TIMER, 48); | ||
| 71 | /* More bridge error detection */ | ||
| 72 | pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &config); | ||
| 73 | config |= PCI_BRIDGE_CTL_PARITY | PCI_BRIDGE_CTL_SERR; | ||
| 74 | pci_write_config_word(dev, PCI_BRIDGE_CONTROL, config); | ||
| 75 | } | ||
| 76 | |||
| 77 | /* Enable the PCIe normal error reporting */ | ||
| 78 | pos = pci_find_capability(dev, PCI_CAP_ID_EXP); | ||
| 79 | if (pos) { | ||
| 80 | /* Update Device Control */ | ||
| 81 | pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &config); | ||
| 82 | /* Correctable Error Reporting */ | ||
| 83 | config |= PCI_EXP_DEVCTL_CERE; | ||
| 84 | /* Non-Fatal Error Reporting */ | ||
| 85 | config |= PCI_EXP_DEVCTL_NFERE; | ||
| 86 | /* Fatal Error Reporting */ | ||
| 87 | config |= PCI_EXP_DEVCTL_FERE; | ||
| 88 | /* Unsupported Request */ | ||
| 89 | config |= PCI_EXP_DEVCTL_URRE; | ||
| 90 | pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, config); | ||
| 91 | } | ||
| 92 | |||
| 93 | /* Find the Advanced Error Reporting capability */ | ||
| 94 | pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR); | ||
| 95 | if (pos) { | ||
| 96 | /* Clear Uncorrectable Error Status */ | ||
| 97 | pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, | ||
| 98 | &dconfig); | ||
| 99 | pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, | ||
| 100 | dconfig); | ||
| 101 | /* Enable reporting of all uncorrectable errors */ | ||
| 102 | /* Uncorrectable Error Mask - turned on bits disable errors */ | ||
| 103 | pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_MASK, 0); | ||
| 104 | /* | ||
| 105 | * Leave severity at HW default. This only controls if | ||
| 106 | * errors are reported as uncorrectable or | ||
| 107 | * correctable, not if the error is reported. | ||
| 108 | */ | ||
| 109 | /* PCI_ERR_UNCOR_SEVER - Uncorrectable Error Severity */ | ||
| 110 | /* Clear Correctable Error Status */ | ||
| 111 | pci_read_config_dword(dev, pos + PCI_ERR_COR_STATUS, &dconfig); | ||
| 112 | pci_write_config_dword(dev, pos + PCI_ERR_COR_STATUS, dconfig); | ||
| 113 | /* Enable reporting of all correctable errors */ | ||
| 114 | /* Correctable Error Mask - turned on bits disable errors */ | ||
| 115 | pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, 0); | ||
| 116 | /* Advanced Error Capabilities */ | ||
| 117 | pci_read_config_dword(dev, pos + PCI_ERR_CAP, &dconfig); | ||
| 118 | /* ECRC Generation Enable */ | ||
| 119 | if (config & PCI_ERR_CAP_ECRC_GENC) | ||
| 120 | config |= PCI_ERR_CAP_ECRC_GENE; | ||
| 121 | /* ECRC Check Enable */ | ||
| 122 | if (config & PCI_ERR_CAP_ECRC_CHKC) | ||
| 123 | config |= PCI_ERR_CAP_ECRC_CHKE; | ||
| 124 | pci_write_config_dword(dev, pos + PCI_ERR_CAP, dconfig); | ||
| 125 | /* PCI_ERR_HEADER_LOG - Header Log Register (16 bytes) */ | ||
| 126 | /* Report all errors to the root complex */ | ||
| 127 | pci_write_config_dword(dev, pos + PCI_ERR_ROOT_COMMAND, | ||
| 128 | PCI_ERR_ROOT_CMD_COR_EN | | ||
| 129 | PCI_ERR_ROOT_CMD_NONFATAL_EN | | ||
| 130 | PCI_ERR_ROOT_CMD_FATAL_EN); | ||
| 131 | /* Clear the Root status register */ | ||
| 132 | pci_read_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, &dconfig); | ||
| 133 | pci_write_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, dconfig); | ||
| 134 | } | ||
| 135 | |||
| 136 | return 0; | ||
| 137 | } | ||
diff --git a/arch/mips/cobalt/buttons.c b/arch/mips/cobalt/buttons.c index 9e143989c7b8..4eaec8b46e0c 100644 --- a/arch/mips/cobalt/buttons.c +++ b/arch/mips/cobalt/buttons.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Cobalt buttons platform device. | 2 | * Cobalt buttons platform device. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/cobalt/lcd.c b/arch/mips/cobalt/lcd.c index 0720e4fae311..0f1cd90f37ed 100644 --- a/arch/mips/cobalt/lcd.c +++ b/arch/mips/cobalt/lcd.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Registration of Cobalt LCD platform device. | 2 | * Registration of Cobalt LCD platform device. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2008 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2008 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/cobalt/led.c b/arch/mips/cobalt/led.c index 1c6ebd468b07..d3ce6fa1dc74 100644 --- a/arch/mips/cobalt/led.c +++ b/arch/mips/cobalt/led.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Registration of Cobalt LED platform device. | 2 | * Registration of Cobalt LED platform device. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/cobalt/mtd.c b/arch/mips/cobalt/mtd.c index 2b088ef3839a..691d620b6766 100644 --- a/arch/mips/cobalt/mtd.c +++ b/arch/mips/cobalt/mtd.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Registration of Cobalt MTD device. | 2 | * Registration of Cobalt MTD device. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2006 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2006 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/cobalt/rtc.c b/arch/mips/cobalt/rtc.c index e70794b8bcba..3ab39898b4e4 100644 --- a/arch/mips/cobalt/rtc.c +++ b/arch/mips/cobalt/rtc.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Registration of Cobalt RTC platform device. | 2 | * Registration of Cobalt RTC platform device. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/cobalt/serial.c b/arch/mips/cobalt/serial.c index 53b8d0d6da90..7cb51f57275e 100644 --- a/arch/mips/cobalt/serial.c +++ b/arch/mips/cobalt/serial.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Registration of Cobalt UART platform device. | 2 | * Registration of Cobalt UART platform device. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/cobalt/time.c b/arch/mips/cobalt/time.c index 4a570e7145fe..0162f9edc693 100644 --- a/arch/mips/cobalt/time.c +++ b/arch/mips/cobalt/time.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Cobalt time initialization. | 2 | * Cobalt time initialization. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/configs/ar7_defconfig b/arch/mips/configs/ar7_defconfig new file mode 100644 index 000000000000..dad5b6769d74 --- /dev/null +++ b/arch/mips/configs/ar7_defconfig | |||
| @@ -0,0 +1,1182 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.30 | ||
| 4 | # Wed Jun 24 14:08:59 2009 | ||
| 5 | # | ||
| 6 | CONFIG_MIPS=y | ||
| 7 | |||
| 8 | # | ||
| 9 | # Machine selection | ||
| 10 | # | ||
| 11 | # CONFIG_MACH_ALCHEMY is not set | ||
| 12 | CONFIG_AR7=y | ||
| 13 | # CONFIG_BASLER_EXCITE is not set | ||
| 14 | # CONFIG_BCM47XX is not set | ||
| 15 | # CONFIG_MIPS_COBALT is not set | ||
| 16 | # CONFIG_MACH_DECSTATION is not set | ||
| 17 | # CONFIG_MACH_JAZZ is not set | ||
| 18 | # CONFIG_LASAT is not set | ||
| 19 | # CONFIG_LEMOTE_FULONG is not set | ||
| 20 | # CONFIG_MIPS_MALTA is not set | ||
| 21 | # CONFIG_MIPS_SIM is not set | ||
| 22 | # CONFIG_NEC_MARKEINS is not set | ||
| 23 | # CONFIG_MACH_VR41XX is not set | ||
| 24 | # CONFIG_NXP_STB220 is not set | ||
| 25 | # CONFIG_NXP_STB225 is not set | ||
| 26 | # CONFIG_PNX8550_JBS is not set | ||
| 27 | # CONFIG_PNX8550_STB810 is not set | ||
| 28 | # CONFIG_PMC_MSP is not set | ||
| 29 | # CONFIG_PMC_YOSEMITE is not set | ||
| 30 | # CONFIG_SGI_IP22 is not set | ||
| 31 | # CONFIG_SGI_IP27 is not set | ||
| 32 | # CONFIG_SGI_IP28 is not set | ||
| 33 | # CONFIG_SGI_IP32 is not set | ||
| 34 | # CONFIG_SIBYTE_CRHINE is not set | ||
| 35 | # CONFIG_SIBYTE_CARMEL is not set | ||
| 36 | # CONFIG_SIBYTE_CRHONE is not set | ||
| 37 | # CONFIG_SIBYTE_RHONE is not set | ||
| 38 | # CONFIG_SIBYTE_SWARM is not set | ||
| 39 | # CONFIG_SIBYTE_LITTLESUR is not set | ||
| 40 | # CONFIG_SIBYTE_SENTOSA is not set | ||
| 41 | # CONFIG_SIBYTE_BIGSUR is not set | ||
| 42 | # CONFIG_SNI_RM is not set | ||
| 43 | # CONFIG_MACH_TX39XX is not set | ||
| 44 | # CONFIG_MACH_TX49XX is not set | ||
| 45 | # CONFIG_MIKROTIK_RB532 is not set | ||
| 46 | # CONFIG_WR_PPMC is not set | ||
| 47 | # CONFIG_CAVIUM_OCTEON_SIMULATOR is not set | ||
| 48 | # CONFIG_CAVIUM_OCTEON_REFERENCE_BOARD is not set | ||
| 49 | # CONFIG_ALCHEMY_GPIO_INDIRECT is not set | ||
| 50 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 51 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 52 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 53 | CONFIG_ARCH_SUPPORTS_OPROFILE=y | ||
| 54 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
| 55 | CONFIG_GENERIC_HWEIGHT=y | ||
| 56 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 57 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 58 | CONFIG_GENERIC_TIME=y | ||
| 59 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
| 60 | CONFIG_SCHED_OMIT_FRAME_POINTER=y | ||
| 61 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y | ||
| 62 | CONFIG_CEVT_R4K_LIB=y | ||
| 63 | CONFIG_CEVT_R4K=y | ||
| 64 | CONFIG_CSRC_R4K_LIB=y | ||
| 65 | CONFIG_CSRC_R4K=y | ||
| 66 | CONFIG_DMA_NONCOHERENT=y | ||
| 67 | CONFIG_DMA_NEED_PCI_MAP_STATE=y | ||
| 68 | CONFIG_EARLY_PRINTK=y | ||
| 69 | CONFIG_SYS_HAS_EARLY_PRINTK=y | ||
| 70 | # CONFIG_HOTPLUG_CPU is not set | ||
| 71 | # CONFIG_NO_IOPORT is not set | ||
| 72 | CONFIG_GENERIC_GPIO=y | ||
| 73 | # CONFIG_CPU_BIG_ENDIAN is not set | ||
| 74 | CONFIG_CPU_LITTLE_ENDIAN=y | ||
| 75 | CONFIG_SYS_SUPPORTS_LITTLE_ENDIAN=y | ||
| 76 | CONFIG_IRQ_CPU=y | ||
| 77 | CONFIG_NO_EXCEPT_FILL=y | ||
| 78 | CONFIG_SWAP_IO_SPACE=y | ||
| 79 | CONFIG_BOOT_ELF32=y | ||
| 80 | CONFIG_MIPS_L1_CACHE_SHIFT=5 | ||
| 81 | |||
| 82 | # | ||
| 83 | # CPU selection | ||
| 84 | # | ||
| 85 | # CONFIG_CPU_LOONGSON2 is not set | ||
| 86 | CONFIG_CPU_MIPS32_R1=y | ||
| 87 | # CONFIG_CPU_MIPS32_R2 is not set | ||
| 88 | # CONFIG_CPU_MIPS64_R1 is not set | ||
| 89 | # CONFIG_CPU_MIPS64_R2 is not set | ||
| 90 | # CONFIG_CPU_R3000 is not set | ||
| 91 | # CONFIG_CPU_TX39XX is not set | ||
| 92 | # CONFIG_CPU_VR41XX is not set | ||
| 93 | # CONFIG_CPU_R4300 is not set | ||
| 94 | # CONFIG_CPU_R4X00 is not set | ||
| 95 | # CONFIG_CPU_TX49XX is not set | ||
| 96 | # CONFIG_CPU_R5000 is not set | ||
| 97 | # CONFIG_CPU_R5432 is not set | ||
| 98 | # CONFIG_CPU_R5500 is not set | ||
| 99 | # CONFIG_CPU_R6000 is not set | ||
| 100 | # CONFIG_CPU_NEVADA is not set | ||
| 101 | # CONFIG_CPU_R8000 is not set | ||
| 102 | # CONFIG_CPU_R10000 is not set | ||
| 103 | # CONFIG_CPU_RM7000 is not set | ||
| 104 | # CONFIG_CPU_RM9000 is not set | ||
| 105 | # CONFIG_CPU_SB1 is not set | ||
| 106 | # CONFIG_CPU_CAVIUM_OCTEON is not set | ||
| 107 | CONFIG_SYS_HAS_CPU_MIPS32_R1=y | ||
| 108 | CONFIG_CPU_MIPS32=y | ||
| 109 | CONFIG_CPU_MIPSR1=y | ||
| 110 | CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y | ||
| 111 | CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y | ||
| 112 | CONFIG_HARDWARE_WATCHPOINTS=y | ||
| 113 | |||
| 114 | # | ||
| 115 | # Kernel type | ||
| 116 | # | ||
| 117 | CONFIG_32BIT=y | ||
| 118 | # CONFIG_64BIT is not set | ||
| 119 | CONFIG_PAGE_SIZE_4KB=y | ||
| 120 | # CONFIG_PAGE_SIZE_8KB is not set | ||
| 121 | # CONFIG_PAGE_SIZE_16KB is not set | ||
| 122 | # CONFIG_PAGE_SIZE_32KB is not set | ||
| 123 | # CONFIG_PAGE_SIZE_64KB is not set | ||
| 124 | CONFIG_CPU_HAS_PREFETCH=y | ||
| 125 | CONFIG_MIPS_MT_DISABLED=y | ||
| 126 | # CONFIG_MIPS_MT_SMP is not set | ||
| 127 | # CONFIG_MIPS_MT_SMTC is not set | ||
| 128 | CONFIG_CPU_HAS_LLSC=y | ||
| 129 | CONFIG_CPU_HAS_SYNC=y | ||
| 130 | CONFIG_GENERIC_HARDIRQS=y | ||
| 131 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 132 | CONFIG_CPU_SUPPORTS_HIGHMEM=y | ||
| 133 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
| 134 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
| 135 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 136 | CONFIG_FLATMEM_MANUAL=y | ||
| 137 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 138 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 139 | CONFIG_FLATMEM=y | ||
| 140 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 141 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 142 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
| 143 | # CONFIG_PHYS_ADDR_T_64BIT is not set | ||
| 144 | CONFIG_ZONE_DMA_FLAG=0 | ||
| 145 | CONFIG_VIRT_TO_BUS=y | ||
| 146 | CONFIG_HAVE_MLOCK=y | ||
| 147 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 148 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | ||
| 149 | CONFIG_TICK_ONESHOT=y | ||
| 150 | # CONFIG_NO_HZ is not set | ||
| 151 | CONFIG_HIGH_RES_TIMERS=y | ||
| 152 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
| 153 | # CONFIG_HZ_48 is not set | ||
| 154 | CONFIG_HZ_100=y | ||
| 155 | # CONFIG_HZ_128 is not set | ||
| 156 | # CONFIG_HZ_250 is not set | ||
| 157 | # CONFIG_HZ_256 is not set | ||
| 158 | # CONFIG_HZ_1000 is not set | ||
| 159 | # CONFIG_HZ_1024 is not set | ||
| 160 | CONFIG_SYS_SUPPORTS_ARBIT_HZ=y | ||
| 161 | CONFIG_HZ=100 | ||
| 162 | CONFIG_PREEMPT_NONE=y | ||
| 163 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
| 164 | # CONFIG_PREEMPT is not set | ||
| 165 | CONFIG_KEXEC=y | ||
| 166 | # CONFIG_SECCOMP is not set | ||
| 167 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 168 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 169 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 170 | |||
| 171 | # | ||
| 172 | # General setup | ||
| 173 | # | ||
| 174 | CONFIG_EXPERIMENTAL=y | ||
| 175 | CONFIG_BROKEN_ON_SMP=y | ||
| 176 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 177 | CONFIG_LOCALVERSION="" | ||
| 178 | # CONFIG_LOCALVERSION_AUTO is not set | ||
| 179 | CONFIG_SWAP=y | ||
| 180 | CONFIG_SYSVIPC=y | ||
| 181 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 182 | # CONFIG_POSIX_MQUEUE is not set | ||
| 183 | CONFIG_BSD_PROCESS_ACCT=y | ||
| 184 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | ||
| 185 | # CONFIG_TASKSTATS is not set | ||
| 186 | # CONFIG_AUDIT is not set | ||
| 187 | |||
| 188 | # | ||
| 189 | # RCU Subsystem | ||
| 190 | # | ||
| 191 | CONFIG_CLASSIC_RCU=y | ||
| 192 | # CONFIG_TREE_RCU is not set | ||
| 193 | # CONFIG_PREEMPT_RCU is not set | ||
| 194 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 195 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 196 | # CONFIG_IKCONFIG is not set | ||
| 197 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 198 | # CONFIG_GROUP_SCHED is not set | ||
| 199 | # CONFIG_CGROUPS is not set | ||
| 200 | CONFIG_SYSFS_DEPRECATED=y | ||
| 201 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
| 202 | CONFIG_RELAY=y | ||
| 203 | # CONFIG_NAMESPACES is not set | ||
| 204 | CONFIG_BLK_DEV_INITRD=y | ||
| 205 | CONFIG_INITRAMFS_SOURCE="" | ||
| 206 | CONFIG_RD_GZIP=y | ||
| 207 | # CONFIG_RD_BZIP2 is not set | ||
| 208 | CONFIG_RD_LZMA=y | ||
| 209 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 210 | CONFIG_SYSCTL=y | ||
| 211 | CONFIG_ANON_INODES=y | ||
| 212 | CONFIG_EMBEDDED=y | ||
| 213 | CONFIG_SYSCTL_SYSCALL=y | ||
| 214 | # CONFIG_KALLSYMS is not set | ||
| 215 | CONFIG_HOTPLUG=y | ||
| 216 | CONFIG_PRINTK=y | ||
| 217 | CONFIG_BUG=y | ||
| 218 | # CONFIG_ELF_CORE is not set | ||
| 219 | # CONFIG_PCSPKR_PLATFORM is not set | ||
| 220 | CONFIG_BASE_FULL=y | ||
| 221 | CONFIG_FUTEX=y | ||
| 222 | CONFIG_EPOLL=y | ||
| 223 | CONFIG_SIGNALFD=y | ||
| 224 | CONFIG_TIMERFD=y | ||
| 225 | CONFIG_EVENTFD=y | ||
| 226 | CONFIG_SHMEM=y | ||
| 227 | CONFIG_AIO=y | ||
| 228 | |||
| 229 | # | ||
| 230 | # Performance Counters | ||
| 231 | # | ||
| 232 | # CONFIG_VM_EVENT_COUNTERS is not set | ||
| 233 | CONFIG_STRIP_ASM_SYMS=y | ||
| 234 | # CONFIG_COMPAT_BRK is not set | ||
| 235 | CONFIG_SLAB=y | ||
| 236 | # CONFIG_SLUB is not set | ||
| 237 | # CONFIG_SLOB is not set | ||
| 238 | # CONFIG_PROFILING is not set | ||
| 239 | # CONFIG_MARKERS is not set | ||
| 240 | CONFIG_HAVE_OPROFILE=y | ||
| 241 | # CONFIG_SLOW_WORK is not set | ||
| 242 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 243 | CONFIG_SLABINFO=y | ||
| 244 | CONFIG_RT_MUTEXES=y | ||
| 245 | CONFIG_BASE_SMALL=0 | ||
| 246 | CONFIG_MODULES=y | ||
| 247 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 248 | CONFIG_MODULE_UNLOAD=y | ||
| 249 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 250 | # CONFIG_MODVERSIONS is not set | ||
| 251 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 252 | CONFIG_BLOCK=y | ||
| 253 | # CONFIG_LBD is not set | ||
| 254 | # CONFIG_BLK_DEV_BSG is not set | ||
| 255 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 256 | |||
| 257 | # | ||
| 258 | # IO Schedulers | ||
| 259 | # | ||
| 260 | CONFIG_IOSCHED_NOOP=y | ||
| 261 | # CONFIG_IOSCHED_AS is not set | ||
| 262 | CONFIG_IOSCHED_DEADLINE=y | ||
| 263 | # CONFIG_IOSCHED_CFQ is not set | ||
| 264 | # CONFIG_DEFAULT_AS is not set | ||
| 265 | CONFIG_DEFAULT_DEADLINE=y | ||
| 266 | # CONFIG_DEFAULT_CFQ is not set | ||
| 267 | # CONFIG_DEFAULT_NOOP is not set | ||
| 268 | CONFIG_DEFAULT_IOSCHED="deadline" | ||
| 269 | CONFIG_PROBE_INITRD_HEADER=y | ||
| 270 | # CONFIG_FREEZER is not set | ||
| 271 | |||
| 272 | # | ||
| 273 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | ||
| 274 | # | ||
| 275 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 276 | CONFIG_MMU=y | ||
| 277 | # CONFIG_PCCARD is not set | ||
| 278 | |||
| 279 | # | ||
| 280 | # Executable file formats | ||
| 281 | # | ||
| 282 | CONFIG_BINFMT_ELF=y | ||
| 283 | # CONFIG_HAVE_AOUT is not set | ||
| 284 | # CONFIG_BINFMT_MISC is not set | ||
| 285 | CONFIG_TRAD_SIGNALS=y | ||
| 286 | |||
| 287 | # | ||
| 288 | # Power management options | ||
| 289 | # | ||
| 290 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 291 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 292 | # CONFIG_PM is not set | ||
| 293 | CONFIG_NET=y | ||
| 294 | |||
| 295 | # | ||
| 296 | # Networking options | ||
| 297 | # | ||
| 298 | CONFIG_PACKET=y | ||
| 299 | CONFIG_PACKET_MMAP=y | ||
| 300 | CONFIG_UNIX=y | ||
| 301 | # CONFIG_NET_KEY is not set | ||
| 302 | CONFIG_INET=y | ||
| 303 | CONFIG_IP_MULTICAST=y | ||
| 304 | CONFIG_IP_ADVANCED_ROUTER=y | ||
| 305 | CONFIG_ASK_IP_FIB_HASH=y | ||
| 306 | # CONFIG_IP_FIB_TRIE is not set | ||
| 307 | CONFIG_IP_FIB_HASH=y | ||
| 308 | CONFIG_IP_MULTIPLE_TABLES=y | ||
| 309 | CONFIG_IP_ROUTE_MULTIPATH=y | ||
| 310 | CONFIG_IP_ROUTE_VERBOSE=y | ||
| 311 | # CONFIG_IP_PNP is not set | ||
| 312 | # CONFIG_NET_IPIP is not set | ||
| 313 | # CONFIG_NET_IPGRE is not set | ||
| 314 | CONFIG_IP_MROUTE=y | ||
| 315 | # CONFIG_IP_PIMSM_V1 is not set | ||
| 316 | # CONFIG_IP_PIMSM_V2 is not set | ||
| 317 | CONFIG_ARPD=y | ||
| 318 | CONFIG_SYN_COOKIES=y | ||
| 319 | # CONFIG_INET_AH is not set | ||
| 320 | # CONFIG_INET_ESP is not set | ||
| 321 | # CONFIG_INET_IPCOMP is not set | ||
| 322 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 323 | # CONFIG_INET_TUNNEL is not set | ||
| 324 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | ||
| 325 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | ||
| 326 | # CONFIG_INET_XFRM_MODE_BEET is not set | ||
| 327 | # CONFIG_INET_LRO is not set | ||
| 328 | # CONFIG_INET_DIAG is not set | ||
| 329 | CONFIG_TCP_CONG_ADVANCED=y | ||
| 330 | # CONFIG_TCP_CONG_BIC is not set | ||
| 331 | # CONFIG_TCP_CONG_CUBIC is not set | ||
| 332 | CONFIG_TCP_CONG_WESTWOOD=y | ||
| 333 | # CONFIG_TCP_CONG_HTCP is not set | ||
| 334 | # CONFIG_TCP_CONG_HSTCP is not set | ||
| 335 | # CONFIG_TCP_CONG_HYBLA is not set | ||
| 336 | # CONFIG_TCP_CONG_VEGAS is not set | ||
| 337 | # CONFIG_TCP_CONG_SCALABLE is not set | ||
| 338 | # CONFIG_TCP_CONG_LP is not set | ||
| 339 | # CONFIG_TCP_CONG_VENO is not set | ||
| 340 | # CONFIG_TCP_CONG_YEAH is not set | ||
| 341 | # CONFIG_TCP_CONG_ILLINOIS is not set | ||
| 342 | # CONFIG_DEFAULT_BIC is not set | ||
| 343 | # CONFIG_DEFAULT_CUBIC is not set | ||
| 344 | # CONFIG_DEFAULT_HTCP is not set | ||
| 345 | # CONFIG_DEFAULT_VEGAS is not set | ||
| 346 | CONFIG_DEFAULT_WESTWOOD=y | ||
| 347 | # CONFIG_DEFAULT_RENO is not set | ||
| 348 | CONFIG_DEFAULT_TCP_CONG="westwood" | ||
| 349 | # CONFIG_TCP_MD5SIG is not set | ||
| 350 | # CONFIG_IPV6 is not set | ||
| 351 | # CONFIG_NETWORK_SECMARK is not set | ||
| 352 | CONFIG_NETFILTER=y | ||
| 353 | # CONFIG_NETFILTER_DEBUG is not set | ||
| 354 | CONFIG_NETFILTER_ADVANCED=y | ||
| 355 | # CONFIG_BRIDGE_NETFILTER is not set | ||
| 356 | |||
| 357 | # | ||
| 358 | # Core Netfilter Configuration | ||
| 359 | # | ||
| 360 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set | ||
| 361 | # CONFIG_NETFILTER_NETLINK_LOG is not set | ||
| 362 | CONFIG_NF_CONNTRACK=m | ||
| 363 | # CONFIG_NF_CT_ACCT is not set | ||
| 364 | CONFIG_NF_CONNTRACK_MARK=y | ||
| 365 | # CONFIG_NF_CONNTRACK_EVENTS is not set | ||
| 366 | # CONFIG_NF_CT_PROTO_DCCP is not set | ||
| 367 | # CONFIG_NF_CT_PROTO_SCTP is not set | ||
| 368 | # CONFIG_NF_CT_PROTO_UDPLITE is not set | ||
| 369 | # CONFIG_NF_CONNTRACK_AMANDA is not set | ||
| 370 | CONFIG_NF_CONNTRACK_FTP=m | ||
| 371 | # CONFIG_NF_CONNTRACK_H323 is not set | ||
| 372 | CONFIG_NF_CONNTRACK_IRC=m | ||
| 373 | # CONFIG_NF_CONNTRACK_NETBIOS_NS is not set | ||
| 374 | # CONFIG_NF_CONNTRACK_PPTP is not set | ||
| 375 | # CONFIG_NF_CONNTRACK_SANE is not set | ||
| 376 | # CONFIG_NF_CONNTRACK_SIP is not set | ||
| 377 | CONFIG_NF_CONNTRACK_TFTP=m | ||
| 378 | # CONFIG_NF_CT_NETLINK is not set | ||
| 379 | # CONFIG_NETFILTER_TPROXY is not set | ||
| 380 | CONFIG_NETFILTER_XTABLES=m | ||
| 381 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set | ||
| 382 | # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set | ||
| 383 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set | ||
| 384 | # CONFIG_NETFILTER_XT_TARGET_HL is not set | ||
| 385 | # CONFIG_NETFILTER_XT_TARGET_LED is not set | ||
| 386 | # CONFIG_NETFILTER_XT_TARGET_MARK is not set | ||
| 387 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set | ||
| 388 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set | ||
| 389 | CONFIG_NETFILTER_XT_TARGET_NOTRACK=m | ||
| 390 | # CONFIG_NETFILTER_XT_TARGET_RATEEST is not set | ||
| 391 | # CONFIG_NETFILTER_XT_TARGET_TRACE is not set | ||
| 392 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | ||
| 393 | # CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set | ||
| 394 | # CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set | ||
| 395 | # CONFIG_NETFILTER_XT_MATCH_COMMENT is not set | ||
| 396 | # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set | ||
| 397 | # CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set | ||
| 398 | # CONFIG_NETFILTER_XT_MATCH_CONNMARK is not set | ||
| 399 | # CONFIG_NETFILTER_XT_MATCH_CONNTRACK is not set | ||
| 400 | # CONFIG_NETFILTER_XT_MATCH_DCCP is not set | ||
| 401 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set | ||
| 402 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set | ||
| 403 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set | ||
| 404 | # CONFIG_NETFILTER_XT_MATCH_HELPER is not set | ||
| 405 | # CONFIG_NETFILTER_XT_MATCH_HL is not set | ||
| 406 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set | ||
| 407 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set | ||
| 408 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | ||
| 409 | CONFIG_NETFILTER_XT_MATCH_MAC=m | ||
| 410 | # CONFIG_NETFILTER_XT_MATCH_MARK is not set | ||
| 411 | CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m | ||
| 412 | # CONFIG_NETFILTER_XT_MATCH_OWNER is not set | ||
| 413 | # CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set | ||
| 414 | # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set | ||
| 415 | # CONFIG_NETFILTER_XT_MATCH_RATEEST is not set | ||
| 416 | # CONFIG_NETFILTER_XT_MATCH_REALM is not set | ||
| 417 | # CONFIG_NETFILTER_XT_MATCH_RECENT is not set | ||
| 418 | # CONFIG_NETFILTER_XT_MATCH_SCTP is not set | ||
| 419 | CONFIG_NETFILTER_XT_MATCH_STATE=m | ||
| 420 | # CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set | ||
| 421 | # CONFIG_NETFILTER_XT_MATCH_STRING is not set | ||
| 422 | # CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set | ||
| 423 | # CONFIG_NETFILTER_XT_MATCH_TIME is not set | ||
| 424 | # CONFIG_NETFILTER_XT_MATCH_U32 is not set | ||
| 425 | # CONFIG_IP_VS is not set | ||
| 426 | |||
| 427 | # | ||
| 428 | # IP: Netfilter Configuration | ||
| 429 | # | ||
| 430 | CONFIG_NF_DEFRAG_IPV4=m | ||
| 431 | CONFIG_NF_CONNTRACK_IPV4=m | ||
| 432 | CONFIG_NF_CONNTRACK_PROC_COMPAT=y | ||
| 433 | # CONFIG_IP_NF_QUEUE is not set | ||
| 434 | CONFIG_IP_NF_IPTABLES=m | ||
| 435 | # CONFIG_IP_NF_MATCH_ADDRTYPE is not set | ||
| 436 | # CONFIG_IP_NF_MATCH_AH is not set | ||
| 437 | # CONFIG_IP_NF_MATCH_ECN is not set | ||
| 438 | # CONFIG_IP_NF_MATCH_TTL is not set | ||
| 439 | CONFIG_IP_NF_FILTER=m | ||
| 440 | CONFIG_IP_NF_TARGET_REJECT=m | ||
| 441 | CONFIG_IP_NF_TARGET_LOG=m | ||
| 442 | # CONFIG_IP_NF_TARGET_ULOG is not set | ||
| 443 | CONFIG_NF_NAT=m | ||
| 444 | CONFIG_NF_NAT_NEEDED=y | ||
| 445 | CONFIG_IP_NF_TARGET_MASQUERADE=m | ||
| 446 | # CONFIG_IP_NF_TARGET_NETMAP is not set | ||
| 447 | # CONFIG_IP_NF_TARGET_REDIRECT is not set | ||
| 448 | # CONFIG_NF_NAT_SNMP_BASIC is not set | ||
| 449 | CONFIG_NF_NAT_FTP=m | ||
| 450 | CONFIG_NF_NAT_IRC=m | ||
| 451 | CONFIG_NF_NAT_TFTP=m | ||
| 452 | # CONFIG_NF_NAT_AMANDA is not set | ||
| 453 | # CONFIG_NF_NAT_PPTP is not set | ||
| 454 | # CONFIG_NF_NAT_H323 is not set | ||
| 455 | # CONFIG_NF_NAT_SIP is not set | ||
| 456 | CONFIG_IP_NF_MANGLE=m | ||
| 457 | # CONFIG_IP_NF_TARGET_CLUSTERIP is not set | ||
| 458 | # CONFIG_IP_NF_TARGET_ECN is not set | ||
| 459 | # CONFIG_IP_NF_TARGET_TTL is not set | ||
| 460 | CONFIG_IP_NF_RAW=m | ||
| 461 | # CONFIG_IP_NF_ARPTABLES is not set | ||
| 462 | # CONFIG_IP_DCCP is not set | ||
| 463 | # CONFIG_IP_SCTP is not set | ||
| 464 | # CONFIG_TIPC is not set | ||
| 465 | CONFIG_ATM=m | ||
| 466 | # CONFIG_ATM_CLIP is not set | ||
| 467 | # CONFIG_ATM_LANE is not set | ||
| 468 | CONFIG_ATM_BR2684=m | ||
| 469 | CONFIG_ATM_BR2684_IPFILTER=y | ||
| 470 | CONFIG_STP=y | ||
| 471 | CONFIG_BRIDGE=y | ||
| 472 | # CONFIG_NET_DSA is not set | ||
| 473 | CONFIG_VLAN_8021Q=y | ||
| 474 | # CONFIG_VLAN_8021Q_GVRP is not set | ||
| 475 | # CONFIG_DECNET is not set | ||
| 476 | CONFIG_LLC=y | ||
| 477 | # CONFIG_LLC2 is not set | ||
| 478 | # CONFIG_IPX is not set | ||
| 479 | # CONFIG_ATALK is not set | ||
| 480 | # CONFIG_X25 is not set | ||
| 481 | # CONFIG_LAPB is not set | ||
| 482 | # CONFIG_ECONET is not set | ||
| 483 | # CONFIG_WAN_ROUTER is not set | ||
| 484 | # CONFIG_PHONET is not set | ||
| 485 | # CONFIG_IEEE802154 is not set | ||
| 486 | CONFIG_NET_SCHED=y | ||
| 487 | |||
| 488 | # | ||
| 489 | # Queueing/Scheduling | ||
| 490 | # | ||
| 491 | # CONFIG_NET_SCH_CBQ is not set | ||
| 492 | # CONFIG_NET_SCH_HTB is not set | ||
| 493 | # CONFIG_NET_SCH_HFSC is not set | ||
| 494 | # CONFIG_NET_SCH_ATM is not set | ||
| 495 | # CONFIG_NET_SCH_PRIO is not set | ||
| 496 | # CONFIG_NET_SCH_MULTIQ is not set | ||
| 497 | # CONFIG_NET_SCH_RED is not set | ||
| 498 | # CONFIG_NET_SCH_SFQ is not set | ||
| 499 | # CONFIG_NET_SCH_TEQL is not set | ||
| 500 | # CONFIG_NET_SCH_TBF is not set | ||
| 501 | # CONFIG_NET_SCH_GRED is not set | ||
| 502 | # CONFIG_NET_SCH_DSMARK is not set | ||
| 503 | # CONFIG_NET_SCH_NETEM is not set | ||
| 504 | # CONFIG_NET_SCH_DRR is not set | ||
| 505 | # CONFIG_NET_SCH_INGRESS is not set | ||
| 506 | |||
| 507 | # | ||
| 508 | # Classification | ||
| 509 | # | ||
| 510 | # CONFIG_NET_CLS_BASIC is not set | ||
| 511 | # CONFIG_NET_CLS_TCINDEX is not set | ||
| 512 | # CONFIG_NET_CLS_ROUTE4 is not set | ||
| 513 | # CONFIG_NET_CLS_FW is not set | ||
| 514 | # CONFIG_NET_CLS_U32 is not set | ||
| 515 | # CONFIG_NET_CLS_RSVP is not set | ||
| 516 | # CONFIG_NET_CLS_RSVP6 is not set | ||
| 517 | # CONFIG_NET_CLS_FLOW is not set | ||
| 518 | # CONFIG_NET_EMATCH is not set | ||
| 519 | CONFIG_NET_CLS_ACT=y | ||
| 520 | CONFIG_NET_ACT_POLICE=y | ||
| 521 | # CONFIG_NET_ACT_GACT is not set | ||
| 522 | # CONFIG_NET_ACT_MIRRED is not set | ||
| 523 | # CONFIG_NET_ACT_IPT is not set | ||
| 524 | # CONFIG_NET_ACT_NAT is not set | ||
| 525 | # CONFIG_NET_ACT_PEDIT is not set | ||
| 526 | # CONFIG_NET_ACT_SIMP is not set | ||
| 527 | # CONFIG_NET_ACT_SKBEDIT is not set | ||
| 528 | CONFIG_NET_SCH_FIFO=y | ||
| 529 | # CONFIG_DCB is not set | ||
| 530 | |||
| 531 | # | ||
| 532 | # Network testing | ||
| 533 | # | ||
| 534 | # CONFIG_NET_PKTGEN is not set | ||
| 535 | CONFIG_HAMRADIO=y | ||
| 536 | |||
| 537 | # | ||
| 538 | # Packet Radio protocols | ||
| 539 | # | ||
| 540 | # CONFIG_AX25 is not set | ||
| 541 | # CONFIG_CAN is not set | ||
| 542 | # CONFIG_IRDA is not set | ||
| 543 | # CONFIG_BT is not set | ||
| 544 | # CONFIG_AF_RXRPC is not set | ||
| 545 | CONFIG_FIB_RULES=y | ||
| 546 | CONFIG_WIRELESS=y | ||
| 547 | CONFIG_CFG80211=m | ||
| 548 | # CONFIG_CFG80211_REG_DEBUG is not set | ||
| 549 | # CONFIG_CFG80211_DEBUGFS is not set | ||
| 550 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
| 551 | CONFIG_WIRELESS_EXT=y | ||
| 552 | CONFIG_WIRELESS_EXT_SYSFS=y | ||
| 553 | # CONFIG_LIB80211 is not set | ||
| 554 | CONFIG_MAC80211=m | ||
| 555 | CONFIG_MAC80211_DEFAULT_PS=y | ||
| 556 | CONFIG_MAC80211_DEFAULT_PS_VALUE=1 | ||
| 557 | |||
| 558 | # | ||
| 559 | # Rate control algorithm selection | ||
| 560 | # | ||
| 561 | CONFIG_MAC80211_RC_PID=y | ||
| 562 | CONFIG_MAC80211_RC_MINSTREL=y | ||
| 563 | CONFIG_MAC80211_RC_DEFAULT_PID=y | ||
| 564 | # CONFIG_MAC80211_RC_DEFAULT_MINSTREL is not set | ||
| 565 | CONFIG_MAC80211_RC_DEFAULT="pid" | ||
| 566 | # CONFIG_MAC80211_MESH is not set | ||
| 567 | # CONFIG_MAC80211_LEDS is not set | ||
| 568 | # CONFIG_MAC80211_DEBUGFS is not set | ||
| 569 | # CONFIG_MAC80211_DEBUG_MENU is not set | ||
| 570 | # CONFIG_WIMAX is not set | ||
| 571 | # CONFIG_RFKILL is not set | ||
| 572 | # CONFIG_NET_9P is not set | ||
| 573 | |||
| 574 | # | ||
| 575 | # Device Drivers | ||
| 576 | # | ||
| 577 | |||
| 578 | # | ||
| 579 | # Generic Driver Options | ||
| 580 | # | ||
| 581 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
| 582 | CONFIG_STANDALONE=y | ||
| 583 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 584 | CONFIG_FW_LOADER=y | ||
| 585 | # CONFIG_FIRMWARE_IN_KERNEL is not set | ||
| 586 | CONFIG_EXTRA_FIRMWARE="" | ||
| 587 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 588 | # CONFIG_CONNECTOR is not set | ||
| 589 | CONFIG_MTD=y | ||
| 590 | # CONFIG_MTD_DEBUG is not set | ||
| 591 | # CONFIG_MTD_CONCAT is not set | ||
| 592 | CONFIG_MTD_PARTITIONS=y | ||
| 593 | # CONFIG_MTD_TESTS is not set | ||
| 594 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
| 595 | # CONFIG_MTD_CMDLINE_PARTS is not set | ||
| 596 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 597 | |||
| 598 | # | ||
| 599 | # User Modules And Translation Layers | ||
| 600 | # | ||
| 601 | CONFIG_MTD_CHAR=y | ||
| 602 | CONFIG_MTD_BLKDEVS=y | ||
| 603 | CONFIG_MTD_BLOCK=y | ||
| 604 | # CONFIG_FTL is not set | ||
| 605 | # CONFIG_NFTL is not set | ||
| 606 | # CONFIG_INFTL is not set | ||
| 607 | # CONFIG_RFD_FTL is not set | ||
| 608 | # CONFIG_SSFDC is not set | ||
| 609 | # CONFIG_MTD_OOPS is not set | ||
| 610 | |||
| 611 | # | ||
| 612 | # RAM/ROM/Flash chip drivers | ||
| 613 | # | ||
| 614 | CONFIG_MTD_CFI=y | ||
| 615 | # CONFIG_MTD_JEDECPROBE is not set | ||
| 616 | CONFIG_MTD_GEN_PROBE=y | ||
| 617 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
| 618 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
| 619 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
| 620 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
| 621 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
| 622 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
| 623 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
| 624 | CONFIG_MTD_CFI_I1=y | ||
| 625 | CONFIG_MTD_CFI_I2=y | ||
| 626 | # CONFIG_MTD_CFI_I4 is not set | ||
| 627 | # CONFIG_MTD_CFI_I8 is not set | ||
| 628 | CONFIG_MTD_CFI_INTELEXT=y | ||
| 629 | CONFIG_MTD_CFI_AMDSTD=y | ||
| 630 | CONFIG_MTD_CFI_STAA=y | ||
| 631 | CONFIG_MTD_CFI_UTIL=y | ||
| 632 | # CONFIG_MTD_RAM is not set | ||
| 633 | # CONFIG_MTD_ROM is not set | ||
| 634 | # CONFIG_MTD_ABSENT is not set | ||
| 635 | |||
| 636 | # | ||
| 637 | # Mapping drivers for chip access | ||
| 638 | # | ||
| 639 | CONFIG_MTD_COMPLEX_MAPPINGS=y | ||
| 640 | CONFIG_MTD_PHYSMAP=y | ||
| 641 | # CONFIG_MTD_PHYSMAP_COMPAT is not set | ||
| 642 | # CONFIG_MTD_PLATRAM is not set | ||
| 643 | |||
| 644 | # | ||
| 645 | # Self-contained MTD device drivers | ||
| 646 | # | ||
| 647 | # CONFIG_MTD_SLRAM is not set | ||
| 648 | # CONFIG_MTD_PHRAM is not set | ||
| 649 | # CONFIG_MTD_MTDRAM is not set | ||
| 650 | # CONFIG_MTD_BLOCK2MTD is not set | ||
| 651 | |||
| 652 | # | ||
| 653 | # Disk-On-Chip Device Drivers | ||
| 654 | # | ||
| 655 | # CONFIG_MTD_DOC2000 is not set | ||
| 656 | # CONFIG_MTD_DOC2001 is not set | ||
| 657 | # CONFIG_MTD_DOC2001PLUS is not set | ||
| 658 | # CONFIG_MTD_NAND is not set | ||
| 659 | # CONFIG_MTD_ONENAND is not set | ||
| 660 | |||
| 661 | # | ||
| 662 | # LPDDR flash memory drivers | ||
| 663 | # | ||
| 664 | # CONFIG_MTD_LPDDR is not set | ||
| 665 | |||
| 666 | # | ||
| 667 | # UBI - Unsorted block images | ||
| 668 | # | ||
| 669 | # CONFIG_MTD_UBI is not set | ||
| 670 | # CONFIG_PARPORT is not set | ||
| 671 | CONFIG_BLK_DEV=y | ||
| 672 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 673 | # CONFIG_BLK_DEV_LOOP is not set | ||
| 674 | # CONFIG_BLK_DEV_NBD is not set | ||
| 675 | # CONFIG_BLK_DEV_RAM is not set | ||
| 676 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 677 | # CONFIG_ATA_OVER_ETH is not set | ||
| 678 | # CONFIG_BLK_DEV_HD is not set | ||
| 679 | CONFIG_MISC_DEVICES=y | ||
| 680 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
| 681 | # CONFIG_C2PORT is not set | ||
| 682 | |||
| 683 | # | ||
| 684 | # EEPROM support | ||
| 685 | # | ||
| 686 | # CONFIG_EEPROM_93CX6 is not set | ||
| 687 | CONFIG_HAVE_IDE=y | ||
| 688 | # CONFIG_IDE is not set | ||
| 689 | |||
| 690 | # | ||
| 691 | # SCSI device support | ||
| 692 | # | ||
| 693 | # CONFIG_RAID_ATTRS is not set | ||
| 694 | # CONFIG_SCSI is not set | ||
| 695 | # CONFIG_SCSI_DMA is not set | ||
| 696 | # CONFIG_SCSI_NETLINK is not set | ||
| 697 | # CONFIG_ATA is not set | ||
| 698 | # CONFIG_MD is not set | ||
| 699 | CONFIG_NETDEVICES=y | ||
| 700 | # CONFIG_IFB is not set | ||
| 701 | # CONFIG_DUMMY is not set | ||
| 702 | # CONFIG_BONDING is not set | ||
| 703 | # CONFIG_MACVLAN is not set | ||
| 704 | # CONFIG_EQUALIZER is not set | ||
| 705 | # CONFIG_TUN is not set | ||
| 706 | # CONFIG_VETH is not set | ||
| 707 | CONFIG_PHYLIB=y | ||
| 708 | |||
| 709 | # | ||
| 710 | # MII PHY device drivers | ||
| 711 | # | ||
| 712 | # CONFIG_MARVELL_PHY is not set | ||
| 713 | # CONFIG_DAVICOM_PHY is not set | ||
| 714 | # CONFIG_QSEMI_PHY is not set | ||
| 715 | # CONFIG_LXT_PHY is not set | ||
| 716 | # CONFIG_CICADA_PHY is not set | ||
| 717 | # CONFIG_VITESSE_PHY is not set | ||
| 718 | # CONFIG_SMSC_PHY is not set | ||
| 719 | # CONFIG_BROADCOM_PHY is not set | ||
| 720 | # CONFIG_ICPLUS_PHY is not set | ||
| 721 | # CONFIG_REALTEK_PHY is not set | ||
| 722 | # CONFIG_NATIONAL_PHY is not set | ||
| 723 | # CONFIG_STE10XP is not set | ||
| 724 | # CONFIG_LSI_ET1011C_PHY is not set | ||
| 725 | CONFIG_FIXED_PHY=y | ||
| 726 | # CONFIG_MDIO_BITBANG is not set | ||
| 727 | CONFIG_NET_ETHERNET=y | ||
| 728 | CONFIG_MII=y | ||
| 729 | # CONFIG_AX88796 is not set | ||
| 730 | # CONFIG_SMC91X is not set | ||
| 731 | # CONFIG_DM9000 is not set | ||
| 732 | # CONFIG_ETHOC is not set | ||
| 733 | # CONFIG_DNET is not set | ||
| 734 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
| 735 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
| 736 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
| 737 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
| 738 | # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set | ||
| 739 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set | ||
| 740 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | ||
| 741 | # CONFIG_B44 is not set | ||
| 742 | # CONFIG_KS8842 is not set | ||
| 743 | CONFIG_CPMAC=y | ||
| 744 | # CONFIG_NETDEV_1000 is not set | ||
| 745 | # CONFIG_NETDEV_10000 is not set | ||
| 746 | |||
| 747 | # | ||
| 748 | # Wireless LAN | ||
| 749 | # | ||
| 750 | # CONFIG_WLAN_PRE80211 is not set | ||
| 751 | CONFIG_WLAN_80211=y | ||
| 752 | # CONFIG_LIBERTAS is not set | ||
| 753 | # CONFIG_LIBERTAS_THINFIRM is not set | ||
| 754 | # CONFIG_MAC80211_HWSIM is not set | ||
| 755 | # CONFIG_P54_COMMON is not set | ||
| 756 | # CONFIG_HOSTAP is not set | ||
| 757 | # CONFIG_B43 is not set | ||
| 758 | # CONFIG_B43LEGACY is not set | ||
| 759 | # CONFIG_RT2X00 is not set | ||
| 760 | |||
| 761 | # | ||
| 762 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 763 | # | ||
| 764 | # CONFIG_WAN is not set | ||
| 765 | CONFIG_ATM_DRIVERS=y | ||
| 766 | # CONFIG_ATM_DUMMY is not set | ||
| 767 | # CONFIG_ATM_TCP is not set | ||
| 768 | CONFIG_PPP=m | ||
| 769 | CONFIG_PPP_MULTILINK=y | ||
| 770 | CONFIG_PPP_FILTER=y | ||
| 771 | CONFIG_PPP_ASYNC=m | ||
| 772 | # CONFIG_PPP_SYNC_TTY is not set | ||
| 773 | # CONFIG_PPP_DEFLATE is not set | ||
| 774 | # CONFIG_PPP_BSDCOMP is not set | ||
| 775 | # CONFIG_PPP_MPPE is not set | ||
| 776 | CONFIG_PPPOE=m | ||
| 777 | CONFIG_PPPOATM=m | ||
| 778 | # CONFIG_PPPOL2TP is not set | ||
| 779 | # CONFIG_SLIP is not set | ||
| 780 | CONFIG_SLHC=m | ||
| 781 | # CONFIG_NETCONSOLE is not set | ||
| 782 | # CONFIG_NETPOLL is not set | ||
| 783 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 784 | # CONFIG_ISDN is not set | ||
| 785 | # CONFIG_PHONE is not set | ||
| 786 | |||
| 787 | # | ||
| 788 | # Input device support | ||
| 789 | # | ||
| 790 | # CONFIG_INPUT is not set | ||
| 791 | |||
| 792 | # | ||
| 793 | # Hardware I/O ports | ||
| 794 | # | ||
| 795 | # CONFIG_SERIO is not set | ||
| 796 | # CONFIG_GAMEPORT is not set | ||
| 797 | |||
| 798 | # | ||
| 799 | # Character devices | ||
| 800 | # | ||
| 801 | # CONFIG_VT is not set | ||
| 802 | # CONFIG_DEVKMEM is not set | ||
| 803 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 804 | |||
| 805 | # | ||
| 806 | # Serial drivers | ||
| 807 | # | ||
| 808 | CONFIG_SERIAL_8250=y | ||
| 809 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 810 | CONFIG_SERIAL_8250_NR_UARTS=2 | ||
| 811 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 | ||
| 812 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
| 813 | |||
| 814 | # | ||
| 815 | # Non-8250 serial port support | ||
| 816 | # | ||
| 817 | CONFIG_SERIAL_CORE=y | ||
| 818 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 819 | CONFIG_UNIX98_PTYS=y | ||
| 820 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
| 821 | # CONFIG_LEGACY_PTYS is not set | ||
| 822 | # CONFIG_IPMI_HANDLER is not set | ||
| 823 | CONFIG_HW_RANDOM=y | ||
| 824 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 825 | # CONFIG_R3964 is not set | ||
| 826 | # CONFIG_RAW_DRIVER is not set | ||
| 827 | # CONFIG_TCG_TPM is not set | ||
| 828 | # CONFIG_I2C is not set | ||
| 829 | # CONFIG_SPI is not set | ||
| 830 | # CONFIG_W1 is not set | ||
| 831 | # CONFIG_POWER_SUPPLY is not set | ||
| 832 | # CONFIG_HWMON is not set | ||
| 833 | # CONFIG_THERMAL is not set | ||
| 834 | # CONFIG_THERMAL_HWMON is not set | ||
| 835 | CONFIG_WATCHDOG=y | ||
| 836 | # CONFIG_WATCHDOG_NOWAYOUT is not set | ||
| 837 | |||
| 838 | # | ||
| 839 | # Watchdog Device Drivers | ||
| 840 | # | ||
| 841 | # CONFIG_SOFT_WATCHDOG is not set | ||
| 842 | CONFIG_AR7_WDT=y | ||
| 843 | CONFIG_SSB_POSSIBLE=y | ||
| 844 | |||
| 845 | # | ||
| 846 | # Sonics Silicon Backplane | ||
| 847 | # | ||
| 848 | CONFIG_SSB=y | ||
| 849 | # CONFIG_SSB_SILENT is not set | ||
| 850 | # CONFIG_SSB_DEBUG is not set | ||
| 851 | CONFIG_SSB_SERIAL=y | ||
| 852 | CONFIG_SSB_DRIVER_MIPS=y | ||
| 853 | CONFIG_SSB_EMBEDDED=y | ||
| 854 | CONFIG_SSB_DRIVER_EXTIF=y | ||
| 855 | |||
| 856 | # | ||
| 857 | # Multifunction device drivers | ||
| 858 | # | ||
| 859 | # CONFIG_MFD_CORE is not set | ||
| 860 | # CONFIG_MFD_SM501 is not set | ||
| 861 | # CONFIG_HTC_PASIC3 is not set | ||
| 862 | # CONFIG_MFD_TMIO is not set | ||
| 863 | # CONFIG_REGULATOR is not set | ||
| 864 | # CONFIG_MEDIA_SUPPORT is not set | ||
| 865 | |||
| 866 | # | ||
| 867 | # Graphics support | ||
| 868 | # | ||
| 869 | # CONFIG_VGASTATE is not set | ||
| 870 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
| 871 | # CONFIG_FB is not set | ||
| 872 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 873 | |||
| 874 | # | ||
| 875 | # Display device support | ||
| 876 | # | ||
| 877 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 878 | # CONFIG_SOUND is not set | ||
| 879 | # CONFIG_USB_SUPPORT is not set | ||
| 880 | # CONFIG_MMC is not set | ||
| 881 | # CONFIG_MEMSTICK is not set | ||
| 882 | CONFIG_NEW_LEDS=y | ||
| 883 | CONFIG_LEDS_CLASS=y | ||
| 884 | |||
| 885 | # | ||
| 886 | # LED drivers | ||
| 887 | # | ||
| 888 | # CONFIG_LEDS_GPIO is not set | ||
| 889 | |||
| 890 | # | ||
| 891 | # LED Triggers | ||
| 892 | # | ||
| 893 | CONFIG_LEDS_TRIGGERS=y | ||
| 894 | CONFIG_LEDS_TRIGGER_TIMER=y | ||
| 895 | CONFIG_LEDS_TRIGGER_HEARTBEAT=y | ||
| 896 | # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set | ||
| 897 | CONFIG_LEDS_TRIGGER_DEFAULT_ON=y | ||
| 898 | |||
| 899 | # | ||
| 900 | # iptables trigger is under Netfilter config (LED target) | ||
| 901 | # | ||
| 902 | # CONFIG_ACCESSIBILITY is not set | ||
| 903 | CONFIG_RTC_LIB=y | ||
| 904 | # CONFIG_RTC_CLASS is not set | ||
| 905 | # CONFIG_DMADEVICES is not set | ||
| 906 | # CONFIG_AUXDISPLAY is not set | ||
| 907 | # CONFIG_UIO is not set | ||
| 908 | |||
| 909 | # | ||
| 910 | # TI VLYNQ | ||
| 911 | # | ||
| 912 | CONFIG_VLYNQ=y | ||
| 913 | # CONFIG_STAGING is not set | ||
| 914 | |||
| 915 | # | ||
| 916 | # File systems | ||
| 917 | # | ||
| 918 | # CONFIG_EXT2_FS is not set | ||
| 919 | # CONFIG_EXT3_FS is not set | ||
| 920 | # CONFIG_EXT4_FS is not set | ||
| 921 | # CONFIG_REISERFS_FS is not set | ||
| 922 | # CONFIG_JFS_FS is not set | ||
| 923 | # CONFIG_FS_POSIX_ACL is not set | ||
| 924 | # CONFIG_XFS_FS is not set | ||
| 925 | # CONFIG_OCFS2_FS is not set | ||
| 926 | # CONFIG_BTRFS_FS is not set | ||
| 927 | CONFIG_FILE_LOCKING=y | ||
| 928 | CONFIG_FSNOTIFY=y | ||
| 929 | # CONFIG_DNOTIFY is not set | ||
| 930 | # CONFIG_INOTIFY is not set | ||
| 931 | CONFIG_INOTIFY_USER=y | ||
| 932 | # CONFIG_QUOTA is not set | ||
| 933 | # CONFIG_AUTOFS_FS is not set | ||
| 934 | # CONFIG_AUTOFS4_FS is not set | ||
| 935 | # CONFIG_FUSE_FS is not set | ||
| 936 | |||
| 937 | # | ||
| 938 | # Caches | ||
| 939 | # | ||
| 940 | # CONFIG_FSCACHE is not set | ||
| 941 | |||
| 942 | # | ||
| 943 | # CD-ROM/DVD Filesystems | ||
| 944 | # | ||
| 945 | # CONFIG_ISO9660_FS is not set | ||
| 946 | # CONFIG_UDF_FS is not set | ||
| 947 | |||
| 948 | # | ||
| 949 | # DOS/FAT/NT Filesystems | ||
| 950 | # | ||
| 951 | # CONFIG_MSDOS_FS is not set | ||
| 952 | # CONFIG_VFAT_FS is not set | ||
| 953 | # CONFIG_NTFS_FS is not set | ||
| 954 | |||
| 955 | # | ||
| 956 | # Pseudo filesystems | ||
| 957 | # | ||
| 958 | CONFIG_PROC_FS=y | ||
| 959 | CONFIG_PROC_KCORE=y | ||
| 960 | CONFIG_PROC_SYSCTL=y | ||
| 961 | # CONFIG_PROC_PAGE_MONITOR is not set | ||
| 962 | CONFIG_SYSFS=y | ||
| 963 | CONFIG_TMPFS=y | ||
| 964 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
| 965 | # CONFIG_HUGETLB_PAGE is not set | ||
| 966 | # CONFIG_CONFIGFS_FS is not set | ||
| 967 | CONFIG_MISC_FILESYSTEMS=y | ||
| 968 | # CONFIG_ADFS_FS is not set | ||
| 969 | # CONFIG_AFFS_FS is not set | ||
| 970 | # CONFIG_HFS_FS is not set | ||
| 971 | # CONFIG_HFSPLUS_FS is not set | ||
| 972 | # CONFIG_BEFS_FS is not set | ||
| 973 | # CONFIG_BFS_FS is not set | ||
| 974 | # CONFIG_EFS_FS is not set | ||
| 975 | CONFIG_JFFS2_FS=y | ||
| 976 | CONFIG_JFFS2_FS_DEBUG=0 | ||
| 977 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
| 978 | # CONFIG_JFFS2_FS_WBUF_VERIFY is not set | ||
| 979 | CONFIG_JFFS2_SUMMARY=y | ||
| 980 | # CONFIG_JFFS2_FS_XATTR is not set | ||
| 981 | CONFIG_JFFS2_COMPRESSION_OPTIONS=y | ||
| 982 | CONFIG_JFFS2_ZLIB=y | ||
| 983 | # CONFIG_JFFS2_LZO is not set | ||
| 984 | CONFIG_JFFS2_RTIME=y | ||
| 985 | # CONFIG_JFFS2_RUBIN is not set | ||
| 986 | # CONFIG_JFFS2_CMODE_NONE is not set | ||
| 987 | CONFIG_JFFS2_CMODE_PRIORITY=y | ||
| 988 | # CONFIG_JFFS2_CMODE_SIZE is not set | ||
| 989 | # CONFIG_JFFS2_CMODE_FAVOURLZO is not set | ||
| 990 | # CONFIG_CRAMFS is not set | ||
| 991 | CONFIG_SQUASHFS=y | ||
| 992 | # CONFIG_SQUASHFS_EMBEDDED is not set | ||
| 993 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | ||
| 994 | # CONFIG_VXFS_FS is not set | ||
| 995 | # CONFIG_MINIX_FS is not set | ||
| 996 | # CONFIG_OMFS_FS is not set | ||
| 997 | # CONFIG_HPFS_FS is not set | ||
| 998 | # CONFIG_QNX4FS_FS is not set | ||
| 999 | # CONFIG_ROMFS_FS is not set | ||
| 1000 | # CONFIG_SYSV_FS is not set | ||
| 1001 | # CONFIG_UFS_FS is not set | ||
| 1002 | # CONFIG_NILFS2_FS is not set | ||
| 1003 | CONFIG_NETWORK_FILESYSTEMS=y | ||
| 1004 | # CONFIG_NFS_FS is not set | ||
| 1005 | # CONFIG_NFSD is not set | ||
| 1006 | # CONFIG_SMB_FS is not set | ||
| 1007 | # CONFIG_CIFS is not set | ||
| 1008 | # CONFIG_NCP_FS is not set | ||
| 1009 | # CONFIG_CODA_FS is not set | ||
| 1010 | # CONFIG_AFS_FS is not set | ||
| 1011 | |||
| 1012 | # | ||
| 1013 | # Partition Types | ||
| 1014 | # | ||
| 1015 | CONFIG_PARTITION_ADVANCED=y | ||
| 1016 | # CONFIG_ACORN_PARTITION is not set | ||
| 1017 | # CONFIG_OSF_PARTITION is not set | ||
| 1018 | # CONFIG_AMIGA_PARTITION is not set | ||
| 1019 | # CONFIG_ATARI_PARTITION is not set | ||
| 1020 | # CONFIG_MAC_PARTITION is not set | ||
| 1021 | CONFIG_MSDOS_PARTITION=y | ||
| 1022 | CONFIG_BSD_DISKLABEL=y | ||
| 1023 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 1024 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 1025 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 1026 | # CONFIG_LDM_PARTITION is not set | ||
| 1027 | # CONFIG_SGI_PARTITION is not set | ||
| 1028 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 1029 | # CONFIG_SUN_PARTITION is not set | ||
| 1030 | # CONFIG_KARMA_PARTITION is not set | ||
| 1031 | # CONFIG_EFI_PARTITION is not set | ||
| 1032 | # CONFIG_SYSV68_PARTITION is not set | ||
| 1033 | # CONFIG_NLS is not set | ||
| 1034 | # CONFIG_DLM is not set | ||
| 1035 | |||
| 1036 | # | ||
| 1037 | # Kernel hacking | ||
| 1038 | # | ||
| 1039 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 1040 | # CONFIG_PRINTK_TIME is not set | ||
| 1041 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
| 1042 | # CONFIG_ENABLE_MUST_CHECK is not set | ||
| 1043 | CONFIG_FRAME_WARN=1024 | ||
| 1044 | # CONFIG_MAGIC_SYSRQ is not set | ||
| 1045 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 1046 | CONFIG_DEBUG_FS=y | ||
| 1047 | # CONFIG_HEADERS_CHECK is not set | ||
| 1048 | # CONFIG_DEBUG_KERNEL is not set | ||
| 1049 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1050 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
| 1051 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1052 | CONFIG_TRACING_SUPPORT=y | ||
| 1053 | # CONFIG_FTRACE is not set | ||
| 1054 | # CONFIG_DYNAMIC_DEBUG is not set | ||
| 1055 | # CONFIG_SAMPLES is not set | ||
| 1056 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1057 | CONFIG_CMDLINE="rootfstype=squashfs,jffs2" | ||
| 1058 | |||
| 1059 | # | ||
| 1060 | # Security options | ||
| 1061 | # | ||
| 1062 | # CONFIG_KEYS is not set | ||
| 1063 | # CONFIG_SECURITY is not set | ||
| 1064 | # CONFIG_SECURITYFS is not set | ||
| 1065 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
| 1066 | CONFIG_CRYPTO=y | ||
| 1067 | |||
| 1068 | # | ||
| 1069 | # Crypto core or helper | ||
| 1070 | # | ||
| 1071 | # CONFIG_CRYPTO_FIPS is not set | ||
| 1072 | CONFIG_CRYPTO_ALGAPI=m | ||
| 1073 | CONFIG_CRYPTO_ALGAPI2=m | ||
| 1074 | CONFIG_CRYPTO_AEAD2=m | ||
| 1075 | CONFIG_CRYPTO_BLKCIPHER=m | ||
| 1076 | CONFIG_CRYPTO_BLKCIPHER2=m | ||
| 1077 | CONFIG_CRYPTO_HASH2=m | ||
| 1078 | CONFIG_CRYPTO_RNG2=m | ||
| 1079 | CONFIG_CRYPTO_PCOMP=m | ||
| 1080 | CONFIG_CRYPTO_MANAGER=m | ||
| 1081 | CONFIG_CRYPTO_MANAGER2=m | ||
| 1082 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1083 | # CONFIG_CRYPTO_NULL is not set | ||
| 1084 | CONFIG_CRYPTO_WORKQUEUE=m | ||
| 1085 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1086 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1087 | # CONFIG_CRYPTO_TEST is not set | ||
| 1088 | |||
| 1089 | # | ||
| 1090 | # Authenticated Encryption with Associated Data | ||
| 1091 | # | ||
| 1092 | # CONFIG_CRYPTO_CCM is not set | ||
| 1093 | # CONFIG_CRYPTO_GCM is not set | ||
| 1094 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1095 | |||
| 1096 | # | ||
| 1097 | # Block modes | ||
| 1098 | # | ||
| 1099 | # CONFIG_CRYPTO_CBC is not set | ||
| 1100 | # CONFIG_CRYPTO_CTR is not set | ||
| 1101 | # CONFIG_CRYPTO_CTS is not set | ||
| 1102 | CONFIG_CRYPTO_ECB=m | ||
| 1103 | # CONFIG_CRYPTO_LRW is not set | ||
| 1104 | # CONFIG_CRYPTO_PCBC is not set | ||
| 1105 | # CONFIG_CRYPTO_XTS is not set | ||
| 1106 | |||
| 1107 | # | ||
| 1108 | # Hash modes | ||
| 1109 | # | ||
| 1110 | # CONFIG_CRYPTO_HMAC is not set | ||
| 1111 | # CONFIG_CRYPTO_XCBC is not set | ||
| 1112 | |||
| 1113 | # | ||
| 1114 | # Digest | ||
| 1115 | # | ||
| 1116 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1117 | # CONFIG_CRYPTO_MD4 is not set | ||
| 1118 | # CONFIG_CRYPTO_MD5 is not set | ||
| 1119 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1120 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1121 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1122 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1123 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1124 | # CONFIG_CRYPTO_SHA1 is not set | ||
| 1125 | # CONFIG_CRYPTO_SHA256 is not set | ||
| 1126 | # CONFIG_CRYPTO_SHA512 is not set | ||
| 1127 | # CONFIG_CRYPTO_TGR192 is not set | ||
| 1128 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1129 | |||
| 1130 | # | ||
| 1131 | # Ciphers | ||
| 1132 | # | ||
| 1133 | CONFIG_CRYPTO_AES=m | ||
| 1134 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1135 | CONFIG_CRYPTO_ARC4=m | ||
| 1136 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1137 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1138 | # CONFIG_CRYPTO_CAST5 is not set | ||
| 1139 | # CONFIG_CRYPTO_CAST6 is not set | ||
| 1140 | # CONFIG_CRYPTO_DES is not set | ||
| 1141 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1142 | # CONFIG_CRYPTO_KHAZAD is not set | ||
| 1143 | # CONFIG_CRYPTO_SALSA20 is not set | ||
| 1144 | # CONFIG_CRYPTO_SEED is not set | ||
| 1145 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1146 | # CONFIG_CRYPTO_TEA is not set | ||
| 1147 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1148 | |||
| 1149 | # | ||
| 1150 | # Compression | ||
| 1151 | # | ||
| 1152 | # CONFIG_CRYPTO_DEFLATE is not set | ||
| 1153 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1154 | # CONFIG_CRYPTO_LZO is not set | ||
| 1155 | |||
| 1156 | # | ||
| 1157 | # Random Number Generation | ||
| 1158 | # | ||
| 1159 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | ||
| 1160 | # CONFIG_CRYPTO_HW is not set | ||
| 1161 | # CONFIG_BINARY_PRINTF is not set | ||
| 1162 | |||
| 1163 | # | ||
| 1164 | # Library routines | ||
| 1165 | # | ||
| 1166 | CONFIG_BITREVERSE=y | ||
| 1167 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
| 1168 | CONFIG_CRC_CCITT=m | ||
| 1169 | # CONFIG_CRC16 is not set | ||
| 1170 | # CONFIG_CRC_T10DIF is not set | ||
| 1171 | # CONFIG_CRC_ITU_T is not set | ||
| 1172 | CONFIG_CRC32=y | ||
| 1173 | # CONFIG_CRC7 is not set | ||
| 1174 | # CONFIG_LIBCRC32C is not set | ||
| 1175 | CONFIG_ZLIB_INFLATE=y | ||
| 1176 | CONFIG_ZLIB_DEFLATE=y | ||
| 1177 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1178 | CONFIG_DECOMPRESS_LZMA=y | ||
| 1179 | CONFIG_HAS_IOMEM=y | ||
| 1180 | CONFIG_HAS_IOPORT=y | ||
| 1181 | CONFIG_HAS_DMA=y | ||
| 1182 | CONFIG_NLATTR=y | ||
diff --git a/arch/mips/gt64120/wrppmc/serial.c b/arch/mips/gt64120/wrppmc/serial.c index 5ec1c2ffd3a5..6f9d0858f596 100644 --- a/arch/mips/gt64120/wrppmc/serial.c +++ b/arch/mips/gt64120/wrppmc/serial.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Registration of WRPPMC UART platform device. | 2 | * Registration of WRPPMC UART platform device. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/include/asm/amon.h b/arch/mips/include/asm/amon.h new file mode 100644 index 000000000000..c3dc1a68dd8d --- /dev/null +++ b/arch/mips/include/asm/amon.h | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | /* | ||
| 2 | * Amon support | ||
| 3 | */ | ||
| 4 | |||
| 5 | int amon_cpu_avail(int); | ||
| 6 | void amon_cpu_start(int, unsigned long, unsigned long, | ||
| 7 | unsigned long, unsigned long); | ||
diff --git a/arch/mips/include/asm/ds1287.h b/arch/mips/include/asm/ds1287.h index ba1702e86931..3af0b8fb3b8c 100644 --- a/arch/mips/include/asm/ds1287.h +++ b/arch/mips/include/asm/ds1287.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * DS1287 timer functions. | 2 | * DS1287 timer functions. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2008 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2008 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/include/asm/elf.h b/arch/mips/include/asm/elf.h index d58f128aa747..7990694cda22 100644 --- a/arch/mips/include/asm/elf.h +++ b/arch/mips/include/asm/elf.h | |||
| @@ -316,9 +316,13 @@ extern void elf_dump_regs(elf_greg_t *, struct pt_regs *regs); | |||
| 316 | extern int dump_task_regs(struct task_struct *, elf_gregset_t *); | 316 | extern int dump_task_regs(struct task_struct *, elf_gregset_t *); |
| 317 | extern int dump_task_fpu(struct task_struct *, elf_fpregset_t *); | 317 | extern int dump_task_fpu(struct task_struct *, elf_fpregset_t *); |
| 318 | 318 | ||
| 319 | #ifndef ELF_CORE_COPY_REGS | ||
| 319 | #define ELF_CORE_COPY_REGS(elf_regs, regs) \ | 320 | #define ELF_CORE_COPY_REGS(elf_regs, regs) \ |
| 320 | elf_dump_regs((elf_greg_t *)&(elf_regs), regs); | 321 | elf_dump_regs((elf_greg_t *)&(elf_regs), regs); |
| 322 | #endif | ||
| 323 | #ifndef ELF_CORE_COPY_TASK_REGS | ||
| 321 | #define ELF_CORE_COPY_TASK_REGS(tsk, elf_regs) dump_task_regs(tsk, elf_regs) | 324 | #define ELF_CORE_COPY_TASK_REGS(tsk, elf_regs) dump_task_regs(tsk, elf_regs) |
| 325 | #endif | ||
| 322 | #define ELF_CORE_COPY_FPREGS(tsk, elf_fpregs) \ | 326 | #define ELF_CORE_COPY_FPREGS(tsk, elf_fpregs) \ |
| 323 | dump_task_fpu(tsk, elf_fpregs) | 327 | dump_task_fpu(tsk, elf_fpregs) |
| 324 | 328 | ||
diff --git a/arch/mips/include/asm/gcmpregs.h b/arch/mips/include/asm/gcmpregs.h index d74a8a4ca861..36fd969d64d6 100644 --- a/arch/mips/include/asm/gcmpregs.h +++ b/arch/mips/include/asm/gcmpregs.h | |||
| @@ -114,4 +114,6 @@ | |||
| 114 | #define GCMP_CCB_DINTGROUP_OFS 0x0030 /* DINT Group Participate */ | 114 | #define GCMP_CCB_DINTGROUP_OFS 0x0030 /* DINT Group Participate */ |
| 115 | #define GCMP_CCB_DBGGROUP_OFS 0x0100 /* DebugBreak Group */ | 115 | #define GCMP_CCB_DBGGROUP_OFS 0x0100 /* DebugBreak Group */ |
| 116 | 116 | ||
| 117 | extern int __init gcmp_probe(unsigned long, unsigned long); | ||
| 118 | |||
| 117 | #endif /* _ASM_GCMPREGS_H */ | 119 | #endif /* _ASM_GCMPREGS_H */ |
diff --git a/arch/mips/include/asm/gic.h b/arch/mips/include/asm/gic.h index 954807d9d66a..10292e37c1f7 100644 --- a/arch/mips/include/asm/gic.h +++ b/arch/mips/include/asm/gic.h | |||
| @@ -20,7 +20,11 @@ | |||
| 20 | #define GIC_TRIG_EDGE 1 | 20 | #define GIC_TRIG_EDGE 1 |
| 21 | #define GIC_TRIG_LEVEL 0 | 21 | #define GIC_TRIG_LEVEL 0 |
| 22 | 22 | ||
| 23 | #if CONFIG_SMP | ||
| 24 | #define GIC_NUM_INTRS (24 + NR_CPUS * 2) | ||
| 25 | #else | ||
| 23 | #define GIC_NUM_INTRS 32 | 26 | #define GIC_NUM_INTRS 32 |
| 27 | #endif | ||
| 24 | 28 | ||
| 25 | #define MSK(n) ((1 << (n)) - 1) | 29 | #define MSK(n) ((1 << (n)) - 1) |
| 26 | #define REG32(addr) (*(volatile unsigned int *) (addr)) | 30 | #define REG32(addr) (*(volatile unsigned int *) (addr)) |
| @@ -483,5 +487,7 @@ extern void gic_init(unsigned long gic_base_addr, | |||
| 483 | 487 | ||
| 484 | extern unsigned int gic_get_int(void); | 488 | extern unsigned int gic_get_int(void); |
| 485 | extern void gic_send_ipi(unsigned int intr); | 489 | extern void gic_send_ipi(unsigned int intr); |
| 490 | extern unsigned int plat_ipi_call_int_xlate(unsigned int); | ||
| 491 | extern unsigned int plat_ipi_resched_int_xlate(unsigned int); | ||
| 486 | 492 | ||
| 487 | #endif /* _ASM_GICREGS_H */ | 493 | #endif /* _ASM_GICREGS_H */ |
diff --git a/arch/mips/include/asm/irq_gt641xx.h b/arch/mips/include/asm/irq_gt641xx.h index f9a7c3ac2e66..250a2407b599 100644 --- a/arch/mips/include/asm/irq_gt641xx.h +++ b/arch/mips/include/asm/irq_gt641xx.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Galileo/Marvell GT641xx IRQ definitions. | 2 | * Galileo/Marvell GT641xx IRQ definitions. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/include/asm/mach-ar7/ar7.h b/arch/mips/include/asm/mach-ar7/ar7.h new file mode 100644 index 000000000000..de71694614de --- /dev/null +++ b/arch/mips/include/asm/mach-ar7/ar7.h | |||
| @@ -0,0 +1,178 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2006,2007 Felix Fietkau <nbd@openwrt.org> | ||
| 3 | * Copyright (C) 2006,2007 Eugene Konev <ejka@openwrt.org> | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License as published by | ||
| 7 | * the Free Software Foundation; either version 2 of the License, or | ||
| 8 | * (at your option) any later version. | ||
| 9 | * | ||
| 10 | * This program is distributed in the hope that it will be useful, | ||
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | * GNU General Public License for more details. | ||
| 14 | * | ||
| 15 | * You should have received a copy of the GNU General Public License | ||
| 16 | * along with this program; if not, write to the Free Software | ||
| 17 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 18 | */ | ||
| 19 | |||
| 20 | #ifndef __AR7_H__ | ||
| 21 | #define __AR7_H__ | ||
| 22 | |||
| 23 | #include <linux/delay.h> | ||
| 24 | #include <linux/io.h> | ||
| 25 | #include <linux/errno.h> | ||
| 26 | |||
| 27 | #include <asm/addrspace.h> | ||
| 28 | |||
| 29 | #define AR7_SDRAM_BASE 0x14000000 | ||
| 30 | |||
| 31 | #define AR7_REGS_BASE 0x08610000 | ||
| 32 | |||
| 33 | #define AR7_REGS_MAC0 (AR7_REGS_BASE + 0x0000) | ||
| 34 | #define AR7_REGS_GPIO (AR7_REGS_BASE + 0x0900) | ||
| 35 | /* 0x08610A00 - 0x08610BFF (512 bytes, 128 bytes / clock) */ | ||
| 36 | #define AR7_REGS_POWER (AR7_REGS_BASE + 0x0a00) | ||
| 37 | #define AR7_REGS_CLOCKS (AR7_REGS_POWER + 0x80) | ||
| 38 | #define UR8_REGS_CLOCKS (AR7_REGS_POWER + 0x20) | ||
| 39 | #define AR7_REGS_UART0 (AR7_REGS_BASE + 0x0e00) | ||
| 40 | #define AR7_REGS_USB (AR7_REGS_BASE + 0x1200) | ||
| 41 | #define AR7_REGS_RESET (AR7_REGS_BASE + 0x1600) | ||
| 42 | #define AR7_REGS_VLYNQ0 (AR7_REGS_BASE + 0x1800) | ||
| 43 | #define AR7_REGS_DCL (AR7_REGS_BASE + 0x1a00) | ||
| 44 | #define AR7_REGS_VLYNQ1 (AR7_REGS_BASE + 0x1c00) | ||
| 45 | #define AR7_REGS_MDIO (AR7_REGS_BASE + 0x1e00) | ||
| 46 | #define AR7_REGS_IRQ (AR7_REGS_BASE + 0x2400) | ||
| 47 | #define AR7_REGS_MAC1 (AR7_REGS_BASE + 0x2800) | ||
| 48 | |||
| 49 | #define AR7_REGS_WDT (AR7_REGS_BASE + 0x1f00) | ||
| 50 | #define UR8_REGS_WDT (AR7_REGS_BASE + 0x0b00) | ||
| 51 | #define UR8_REGS_UART1 (AR7_REGS_BASE + 0x0f00) | ||
| 52 | |||
| 53 | #define AR7_RESET_PEREPHERIAL 0x0 | ||
| 54 | #define AR7_RESET_SOFTWARE 0x4 | ||
| 55 | #define AR7_RESET_STATUS 0x8 | ||
| 56 | |||
| 57 | #define AR7_RESET_BIT_CPMAC_LO 17 | ||
| 58 | #define AR7_RESET_BIT_CPMAC_HI 21 | ||
| 59 | #define AR7_RESET_BIT_MDIO 22 | ||
| 60 | #define AR7_RESET_BIT_EPHY 26 | ||
| 61 | |||
| 62 | /* GPIO control registers */ | ||
| 63 | #define AR7_GPIO_INPUT 0x0 | ||
| 64 | #define AR7_GPIO_OUTPUT 0x4 | ||
| 65 | #define AR7_GPIO_DIR 0x8 | ||
| 66 | #define AR7_GPIO_ENABLE 0xc | ||
| 67 | |||
| 68 | #define AR7_CHIP_7100 0x18 | ||
| 69 | #define AR7_CHIP_7200 0x2b | ||
| 70 | #define AR7_CHIP_7300 0x05 | ||
| 71 | |||
| 72 | /* Interrupts */ | ||
| 73 | #define AR7_IRQ_UART0 15 | ||
| 74 | #define AR7_IRQ_UART1 16 | ||
| 75 | |||
| 76 | /* Clocks */ | ||
| 77 | #define AR7_AFE_CLOCK 35328000 | ||
| 78 | #define AR7_REF_CLOCK 25000000 | ||
| 79 | #define AR7_XTAL_CLOCK 24000000 | ||
| 80 | |||
| 81 | struct plat_cpmac_data { | ||
| 82 | int reset_bit; | ||
| 83 | int power_bit; | ||
| 84 | u32 phy_mask; | ||
| 85 | char dev_addr[6]; | ||
| 86 | }; | ||
| 87 | |||
| 88 | struct plat_dsl_data { | ||
| 89 | int reset_bit_dsl; | ||
| 90 | int reset_bit_sar; | ||
| 91 | }; | ||
| 92 | |||
| 93 | extern int ar7_cpu_clock, ar7_bus_clock, ar7_dsp_clock; | ||
| 94 | |||
| 95 | static inline u16 ar7_chip_id(void) | ||
| 96 | { | ||
| 97 | return readl((void *)KSEG1ADDR(AR7_REGS_GPIO + 0x14)) & 0xffff; | ||
| 98 | } | ||
| 99 | |||
| 100 | static inline u8 ar7_chip_rev(void) | ||
| 101 | { | ||
| 102 | return (readl((void *)KSEG1ADDR(AR7_REGS_GPIO + 0x14)) >> 16) & 0xff; | ||
| 103 | } | ||
| 104 | |||
| 105 | static inline int ar7_cpu_freq(void) | ||
| 106 | { | ||
| 107 | return ar7_cpu_clock; | ||
| 108 | } | ||
| 109 | |||
| 110 | static inline int ar7_bus_freq(void) | ||
| 111 | { | ||
| 112 | return ar7_bus_clock; | ||
| 113 | } | ||
| 114 | |||
| 115 | static inline int ar7_vbus_freq(void) | ||
| 116 | { | ||
| 117 | return ar7_bus_clock / 2; | ||
| 118 | } | ||
| 119 | #define ar7_cpmac_freq ar7_vbus_freq | ||
| 120 | |||
| 121 | static inline int ar7_dsp_freq(void) | ||
| 122 | { | ||
| 123 | return ar7_dsp_clock; | ||
| 124 | } | ||
| 125 | |||
| 126 | static inline int ar7_has_high_cpmac(void) | ||
| 127 | { | ||
| 128 | u16 chip_id = ar7_chip_id(); | ||
| 129 | switch (chip_id) { | ||
| 130 | case AR7_CHIP_7100: | ||
| 131 | case AR7_CHIP_7200: | ||
| 132 | return 0; | ||
| 133 | case AR7_CHIP_7300: | ||
| 134 | return 1; | ||
| 135 | default: | ||
| 136 | return -ENXIO; | ||
| 137 | } | ||
| 138 | } | ||
| 139 | #define ar7_has_high_vlynq ar7_has_high_cpmac | ||
| 140 | #define ar7_has_second_uart ar7_has_high_cpmac | ||
| 141 | |||
| 142 | static inline void ar7_device_enable(u32 bit) | ||
| 143 | { | ||
| 144 | void *reset_reg = | ||
| 145 | (void *)KSEG1ADDR(AR7_REGS_RESET + AR7_RESET_PEREPHERIAL); | ||
| 146 | writel(readl(reset_reg) | (1 << bit), reset_reg); | ||
| 147 | msleep(20); | ||
| 148 | } | ||
| 149 | |||
| 150 | static inline void ar7_device_disable(u32 bit) | ||
| 151 | { | ||
| 152 | void *reset_reg = | ||
| 153 | (void *)KSEG1ADDR(AR7_REGS_RESET + AR7_RESET_PEREPHERIAL); | ||
| 154 | writel(readl(reset_reg) & ~(1 << bit), reset_reg); | ||
| 155 | msleep(20); | ||
| 156 | } | ||
| 157 | |||
| 158 | static inline void ar7_device_reset(u32 bit) | ||
| 159 | { | ||
| 160 | ar7_device_disable(bit); | ||
| 161 | ar7_device_enable(bit); | ||
| 162 | } | ||
| 163 | |||
| 164 | static inline void ar7_device_on(u32 bit) | ||
| 165 | { | ||
| 166 | void *power_reg = (void *)KSEG1ADDR(AR7_REGS_POWER); | ||
| 167 | writel(readl(power_reg) | (1 << bit), power_reg); | ||
| 168 | msleep(20); | ||
| 169 | } | ||
| 170 | |||
| 171 | static inline void ar7_device_off(u32 bit) | ||
| 172 | { | ||
| 173 | void *power_reg = (void *)KSEG1ADDR(AR7_REGS_POWER); | ||
| 174 | writel(readl(power_reg) & ~(1 << bit), power_reg); | ||
| 175 | msleep(20); | ||
| 176 | } | ||
| 177 | |||
| 178 | #endif /* __AR7_H__ */ | ||
diff --git a/arch/mips/include/asm/mach-ar7/gpio.h b/arch/mips/include/asm/mach-ar7/gpio.h new file mode 100644 index 000000000000..cbe9c4f126df --- /dev/null +++ b/arch/mips/include/asm/mach-ar7/gpio.h | |||
| @@ -0,0 +1,110 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2007 Florian Fainelli <florian@openwrt.org> | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation; either version 2 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program; if not, write to the Free Software | ||
| 16 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 17 | */ | ||
| 18 | |||
| 19 | #ifndef __AR7_GPIO_H__ | ||
| 20 | #define __AR7_GPIO_H__ | ||
| 21 | |||
| 22 | #include <asm/mach-ar7/ar7.h> | ||
| 23 | |||
| 24 | #define AR7_GPIO_MAX 32 | ||
| 25 | |||
| 26 | extern int gpio_request(unsigned gpio, const char *label); | ||
| 27 | extern void gpio_free(unsigned gpio); | ||
| 28 | |||
| 29 | /* Common GPIO layer */ | ||
| 30 | static inline int gpio_get_value(unsigned gpio) | ||
| 31 | { | ||
| 32 | void __iomem *gpio_in = | ||
| 33 | (void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_INPUT); | ||
| 34 | |||
| 35 | return readl(gpio_in) & (1 << gpio); | ||
| 36 | } | ||
| 37 | |||
| 38 | static inline void gpio_set_value(unsigned gpio, int value) | ||
| 39 | { | ||
| 40 | void __iomem *gpio_out = | ||
| 41 | (void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_OUTPUT); | ||
| 42 | unsigned tmp; | ||
| 43 | |||
| 44 | tmp = readl(gpio_out) & ~(1 << gpio); | ||
| 45 | if (value) | ||
| 46 | tmp |= 1 << gpio; | ||
| 47 | writel(tmp, gpio_out); | ||
| 48 | } | ||
| 49 | |||
| 50 | static inline int gpio_direction_input(unsigned gpio) | ||
| 51 | { | ||
| 52 | void __iomem *gpio_dir = | ||
| 53 | (void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_DIR); | ||
| 54 | |||
| 55 | if (gpio >= AR7_GPIO_MAX) | ||
| 56 | return -EINVAL; | ||
| 57 | |||
| 58 | writel(readl(gpio_dir) | (1 << gpio), gpio_dir); | ||
| 59 | |||
| 60 | return 0; | ||
| 61 | } | ||
| 62 | |||
| 63 | static inline int gpio_direction_output(unsigned gpio, int value) | ||
| 64 | { | ||
| 65 | void __iomem *gpio_dir = | ||
| 66 | (void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_DIR); | ||
| 67 | |||
| 68 | if (gpio >= AR7_GPIO_MAX) | ||
| 69 | return -EINVAL; | ||
| 70 | |||
| 71 | gpio_set_value(gpio, value); | ||
| 72 | writel(readl(gpio_dir) & ~(1 << gpio), gpio_dir); | ||
| 73 | |||
| 74 | return 0; | ||
| 75 | } | ||
| 76 | |||
| 77 | static inline int gpio_to_irq(unsigned gpio) | ||
| 78 | { | ||
| 79 | return -EINVAL; | ||
| 80 | } | ||
| 81 | |||
| 82 | static inline int irq_to_gpio(unsigned irq) | ||
| 83 | { | ||
| 84 | return -EINVAL; | ||
| 85 | } | ||
| 86 | |||
| 87 | /* Board specific GPIO functions */ | ||
| 88 | static inline int ar7_gpio_enable(unsigned gpio) | ||
| 89 | { | ||
| 90 | void __iomem *gpio_en = | ||
| 91 | (void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_ENABLE); | ||
| 92 | |||
| 93 | writel(readl(gpio_en) | (1 << gpio), gpio_en); | ||
| 94 | |||
| 95 | return 0; | ||
| 96 | } | ||
| 97 | |||
| 98 | static inline int ar7_gpio_disable(unsigned gpio) | ||
| 99 | { | ||
| 100 | void __iomem *gpio_en = | ||
| 101 | (void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_ENABLE); | ||
| 102 | |||
| 103 | writel(readl(gpio_en) & ~(1 << gpio), gpio_en); | ||
| 104 | |||
| 105 | return 0; | ||
| 106 | } | ||
| 107 | |||
| 108 | #include <asm-generic/gpio.h> | ||
| 109 | |||
| 110 | #endif | ||
diff --git a/arch/mips/include/asm/mach-ar7/irq.h b/arch/mips/include/asm/mach-ar7/irq.h new file mode 100644 index 000000000000..39e9757e3d93 --- /dev/null +++ b/arch/mips/include/asm/mach-ar7/irq.h | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | /* | ||
| 2 | * This file is subject to the terms and conditions of the GNU General Public | ||
| 3 | * License. See the file "COPYING" in the main directory of this archive | ||
| 4 | * for more details. | ||
| 5 | * | ||
| 6 | * Shamelessly copied from asm-mips/mach-emma2rh/ | ||
| 7 | * Copyright (C) 2003 by Ralf Baechle | ||
| 8 | */ | ||
| 9 | #ifndef __ASM_AR7_IRQ_H | ||
| 10 | #define __ASM_AR7_IRQ_H | ||
| 11 | |||
| 12 | #define NR_IRQS 256 | ||
| 13 | |||
| 14 | #include_next <irq.h> | ||
| 15 | |||
| 16 | #endif /* __ASM_AR7_IRQ_H */ | ||
diff --git a/arch/mips/include/asm/mach-ar7/prom.h b/arch/mips/include/asm/mach-ar7/prom.h new file mode 100644 index 000000000000..088f61fe85ea --- /dev/null +++ b/arch/mips/include/asm/mach-ar7/prom.h | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2006, 2007 Florian Fainelli <florian@openwrt.org> | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation; either version 2 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program; if not, write to the Free Software | ||
| 16 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 17 | */ | ||
| 18 | |||
| 19 | #ifndef __PROM_H__ | ||
| 20 | #define __PROM_H__ | ||
| 21 | |||
| 22 | extern char *prom_getenv(const char *name); | ||
| 23 | extern void prom_meminit(void); | ||
| 24 | |||
| 25 | #endif /* __PROM_H__ */ | ||
diff --git a/arch/mips/include/asm/mach-ar7/spaces.h b/arch/mips/include/asm/mach-ar7/spaces.h new file mode 100644 index 000000000000..ac28f273449c --- /dev/null +++ b/arch/mips/include/asm/mach-ar7/spaces.h | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | /* | ||
| 2 | * This file is subject to the terms and conditions of the GNU General Public | ||
| 3 | * License. See the file "COPYING" in the main directory of this archive | ||
| 4 | * for more details. | ||
| 5 | * | ||
| 6 | * Copyright (C) 1994 - 1999, 2000, 03, 04 Ralf Baechle | ||
| 7 | * Copyright (C) 2000, 2002 Maciej W. Rozycki | ||
| 8 | * Copyright (C) 1990, 1999, 2000 Silicon Graphics, Inc. | ||
| 9 | */ | ||
| 10 | #ifndef _ASM_AR7_SPACES_H | ||
| 11 | #define _ASM_AR7_SPACES_H | ||
| 12 | |||
| 13 | /* | ||
| 14 | * This handles the memory map. | ||
| 15 | * We handle pages at KSEG0 for kernels with 32 bit address space. | ||
| 16 | */ | ||
| 17 | #define PAGE_OFFSET 0x94000000UL | ||
| 18 | #define PHYS_OFFSET 0x14000000UL | ||
| 19 | |||
| 20 | #include <asm/mach-generic/spaces.h> | ||
| 21 | |||
| 22 | #endif /* __ASM_AR7_SPACES_H */ | ||
diff --git a/arch/mips/include/asm/mach-ar7/war.h b/arch/mips/include/asm/mach-ar7/war.h new file mode 100644 index 000000000000..f4862b563080 --- /dev/null +++ b/arch/mips/include/asm/mach-ar7/war.h | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | /* | ||
| 2 | * This file is subject to the terms and conditions of the GNU General Public | ||
| 3 | * License. See the file "COPYING" in the main directory of this archive | ||
| 4 | * for more details. | ||
| 5 | * | ||
| 6 | * Copyright (C) 2002, 2004, 2007 by Ralf Baechle <ralf@linux-mips.org> | ||
| 7 | */ | ||
| 8 | #ifndef __ASM_MIPS_MACH_AR7_WAR_H | ||
| 9 | #define __ASM_MIPS_MACH_AR7_WAR_H | ||
| 10 | |||
| 11 | #define R4600_V1_INDEX_ICACHEOP_WAR 0 | ||
| 12 | #define R4600_V1_HIT_CACHEOP_WAR 0 | ||
| 13 | #define R4600_V2_HIT_CACHEOP_WAR 0 | ||
| 14 | #define R5432_CP0_INTERRUPT_WAR 0 | ||
| 15 | #define BCM1250_M3_WAR 0 | ||
| 16 | #define SIBYTE_1956_WAR 0 | ||
| 17 | #define MIPS4K_ICACHE_REFILL_WAR 0 | ||
| 18 | #define MIPS_CACHE_SYNC_WAR 0 | ||
| 19 | #define TX49XX_ICACHE_INDEX_INV_WAR 0 | ||
| 20 | #define RM9000_CDEX_SMP_WAR 0 | ||
| 21 | #define ICACHE_REFILLS_WORKAROUND_WAR 0 | ||
| 22 | #define R10000_LLSC_WAR 0 | ||
| 23 | #define MIPS34K_MISSED_ITLB_WAR 0 | ||
| 24 | |||
| 25 | #endif /* __ASM_MIPS_MACH_AR7_WAR_H */ | ||
diff --git a/arch/mips/include/asm/mach-cobalt/irq.h b/arch/mips/include/asm/mach-cobalt/irq.h index 57c8c9ac5851..9da9acf5dcba 100644 --- a/arch/mips/include/asm/mach-cobalt/irq.h +++ b/arch/mips/include/asm/mach-cobalt/irq.h | |||
| @@ -8,7 +8,7 @@ | |||
| 8 | * Copyright (C) 1997 Cobalt Microserver | 8 | * Copyright (C) 1997 Cobalt Microserver |
| 9 | * Copyright (C) 1997, 2003 Ralf Baechle | 9 | * Copyright (C) 1997, 2003 Ralf Baechle |
| 10 | * Copyright (C) 2001-2003 Liam Davies (ldavies@agile.tv) | 10 | * Copyright (C) 2001-2003 Liam Davies (ldavies@agile.tv) |
| 11 | * Copyright (C) 2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 11 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> |
| 12 | */ | 12 | */ |
| 13 | #ifndef _ASM_COBALT_IRQ_H | 13 | #ifndef _ASM_COBALT_IRQ_H |
| 14 | #define _ASM_COBALT_IRQ_H | 14 | #define _ASM_COBALT_IRQ_H |
diff --git a/arch/mips/include/asm/mach-cobalt/mach-gt64120.h b/arch/mips/include/asm/mach-cobalt/mach-gt64120.h index ae9c5523c7ef..f8afec3f2943 100644 --- a/arch/mips/include/asm/mach-cobalt/mach-gt64120.h +++ b/arch/mips/include/asm/mach-cobalt/mach-gt64120.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Copyright (C) 2006 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 2 | * Copyright (C) 2006 Yoichi Yuasa <yuasa@linux-mips.org> |
| 3 | * | 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify | 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License as published by | 5 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/cavium-octeon/pci-common.h b/arch/mips/include/asm/octeon/pci-octeon.h index 74ae79991e45..6ac5d3e3398e 100644 --- a/arch/mips/cavium-octeon/pci-common.h +++ b/arch/mips/include/asm/octeon/pci-octeon.h | |||
| @@ -3,23 +3,29 @@ | |||
| 3 | * License. See the file "COPYING" in the main directory of this archive | 3 | * License. See the file "COPYING" in the main directory of this archive |
| 4 | * for more details. | 4 | * for more details. |
| 5 | * | 5 | * |
| 6 | * Copyright (C) 2005-2007 Cavium Networks | 6 | * Copyright (C) 2005-2009 Cavium Networks |
| 7 | */ | 7 | */ |
| 8 | #ifndef __OCTEON_PCI_COMMON_H__ | 8 | |
| 9 | #define __OCTEON_PCI_COMMON_H__ | 9 | #ifndef __PCI_OCTEON_H__ |
| 10 | #define __PCI_OCTEON_H__ | ||
| 10 | 11 | ||
| 11 | #include <linux/pci.h> | 12 | #include <linux/pci.h> |
| 12 | 13 | ||
| 13 | /* Some PCI cards require delays when accessing config space. */ | 14 | /* Some PCI cards require delays when accessing config space. */ |
| 14 | #define PCI_CONFIG_SPACE_DELAY 10000 | 15 | #define PCI_CONFIG_SPACE_DELAY 10000 |
| 15 | 16 | ||
| 16 | /* pcibios_map_irq() is defined inside pci-common.c. All it does is call the | 17 | /* |
| 17 | Octeon specific version pointed to by this variable. This function needs to | 18 | * pcibios_map_irq() is defined inside pci-octeon.c. All it does is |
| 18 | change for PCI or PCIe based hosts */ | 19 | * call the Octeon specific version pointed to by this variable. This |
| 19 | extern typeof(pcibios_map_irq) *octeon_pcibios_map_irq; | 20 | * function needs to change for PCI or PCIe based hosts. |
| 21 | */ | ||
| 22 | extern int (*octeon_pcibios_map_irq)(const struct pci_dev *dev, | ||
| 23 | u8 slot, u8 pin); | ||
| 20 | 24 | ||
| 21 | /* The following defines are only used when octeon_dma_bar_type = | 25 | /* |
| 22 | OCTEON_DMA_BAR_TYPE_BIG */ | 26 | * The following defines are used when octeon_dma_bar_type = |
| 27 | * OCTEON_DMA_BAR_TYPE_BIG | ||
| 28 | */ | ||
| 23 | #define OCTEON_PCI_BAR1_HOLE_BITS 5 | 29 | #define OCTEON_PCI_BAR1_HOLE_BITS 5 |
| 24 | #define OCTEON_PCI_BAR1_HOLE_SIZE (1ul<<(OCTEON_PCI_BAR1_HOLE_BITS+3)) | 30 | #define OCTEON_PCI_BAR1_HOLE_SIZE (1ul<<(OCTEON_PCI_BAR1_HOLE_BITS+3)) |
| 25 | 31 | ||
| @@ -30,9 +36,9 @@ enum octeon_dma_bar_type { | |||
| 30 | OCTEON_DMA_BAR_TYPE_PCIE | 36 | OCTEON_DMA_BAR_TYPE_PCIE |
| 31 | }; | 37 | }; |
| 32 | 38 | ||
| 33 | /** | 39 | /* |
| 34 | * This is a variable to tell the DMA mapping system in dma-octeon.c | 40 | * This tells the DMA mapping system in dma-octeon.c how to map PCI |
| 35 | * how to map PCI DMA addresses. | 41 | * DMA addresses. |
| 36 | */ | 42 | */ |
| 37 | extern enum octeon_dma_bar_type octeon_dma_bar_type; | 43 | extern enum octeon_dma_bar_type octeon_dma_bar_type; |
| 38 | 44 | ||
diff --git a/arch/mips/include/asm/page.h b/arch/mips/include/asm/page.h index dc0eaa731281..96a14a426a7c 100644 --- a/arch/mips/include/asm/page.h +++ b/arch/mips/include/asm/page.h | |||
| @@ -165,7 +165,14 @@ typedef struct { unsigned long pgprot; } pgprot_t; | |||
| 165 | 165 | ||
| 166 | #ifdef CONFIG_FLATMEM | 166 | #ifdef CONFIG_FLATMEM |
| 167 | 167 | ||
| 168 | #define pfn_valid(pfn) ((pfn) >= ARCH_PFN_OFFSET && (pfn) < max_mapnr) | 168 | #define pfn_valid(pfn) \ |
| 169 | ({ \ | ||
| 170 | unsigned long __pfn = (pfn); \ | ||
| 171 | /* avoid <linux/bootmem.h> include hell */ \ | ||
| 172 | extern unsigned long min_low_pfn; \ | ||
| 173 | \ | ||
| 174 | __pfn >= min_low_pfn && __pfn < max_mapnr; \ | ||
| 175 | }) | ||
| 169 | 176 | ||
| 170 | #elif defined(CONFIG_SPARSEMEM) | 177 | #elif defined(CONFIG_SPARSEMEM) |
| 171 | 178 | ||
diff --git a/arch/mips/include/asm/reg.h b/arch/mips/include/asm/reg.h index 634b55d7e7f6..910e71a12466 100644 --- a/arch/mips/include/asm/reg.h +++ b/arch/mips/include/asm/reg.h | |||
| @@ -69,7 +69,7 @@ | |||
| 69 | 69 | ||
| 70 | #endif | 70 | #endif |
| 71 | 71 | ||
| 72 | #ifdef CONFIG_64BIT | 72 | #if defined(CONFIG_64BIT) && !defined(WANT_COMPAT_REG_H) |
| 73 | 73 | ||
| 74 | #define EF_R0 0 | 74 | #define EF_R0 0 |
| 75 | #define EF_R1 1 | 75 | #define EF_R1 1 |
diff --git a/arch/mips/include/asm/swab.h b/arch/mips/include/asm/swab.h index 99993c0d6c12..97c2f81b4b43 100644 --- a/arch/mips/include/asm/swab.h +++ b/arch/mips/include/asm/swab.h | |||
| @@ -38,7 +38,11 @@ static inline __attribute_const__ __u32 __arch_swab32(__u32 x) | |||
| 38 | } | 38 | } |
| 39 | #define __arch_swab32 __arch_swab32 | 39 | #define __arch_swab32 __arch_swab32 |
| 40 | 40 | ||
| 41 | #ifdef CONFIG_CPU_MIPS64_R2 | 41 | /* |
| 42 | * Having already checked for CONFIG_CPU_MIPSR2, enable the | ||
| 43 | * optimized version for 64-bit kernel on r2 CPUs. | ||
| 44 | */ | ||
| 45 | #ifdef CONFIG_64BIT | ||
| 42 | static inline __attribute_const__ __u64 __arch_swab64(__u64 x) | 46 | static inline __attribute_const__ __u64 __arch_swab64(__u64 x) |
| 43 | { | 47 | { |
| 44 | __asm__( | 48 | __asm__( |
| @@ -50,6 +54,6 @@ static inline __attribute_const__ __u64 __arch_swab64(__u64 x) | |||
| 50 | return x; | 54 | return x; |
| 51 | } | 55 | } |
| 52 | #define __arch_swab64 __arch_swab64 | 56 | #define __arch_swab64 __arch_swab64 |
| 53 | #endif /* CONFIG_CPU_MIPS64_R2 */ | 57 | #endif /* CONFIG_64BIT */ |
| 54 | #endif /* CONFIG_CPU_MIPSR2 */ | 58 | #endif /* CONFIG_CPU_MIPSR2 */ |
| 55 | #endif /* _ASM_SWAB_H */ | 59 | #endif /* _ASM_SWAB_H */ |
diff --git a/arch/mips/include/asm/unistd.h b/arch/mips/include/asm/unistd.h index 40005010827c..b70c49fdda26 100644 --- a/arch/mips/include/asm/unistd.h +++ b/arch/mips/include/asm/unistd.h | |||
| @@ -352,16 +352,18 @@ | |||
| 352 | #define __NR_inotify_init1 (__NR_Linux + 329) | 352 | #define __NR_inotify_init1 (__NR_Linux + 329) |
| 353 | #define __NR_preadv (__NR_Linux + 330) | 353 | #define __NR_preadv (__NR_Linux + 330) |
| 354 | #define __NR_pwritev (__NR_Linux + 331) | 354 | #define __NR_pwritev (__NR_Linux + 331) |
| 355 | #define __NR_rt_tgsigqueueinfo (__NR_Linux + 332) | ||
| 356 | #define __NR_perf_counter_open (__NR_Linux + 333) | ||
| 355 | 357 | ||
| 356 | /* | 358 | /* |
| 357 | * Offset of the last Linux o32 flavoured syscall | 359 | * Offset of the last Linux o32 flavoured syscall |
| 358 | */ | 360 | */ |
| 359 | #define __NR_Linux_syscalls 331 | 361 | #define __NR_Linux_syscalls 333 |
| 360 | 362 | ||
| 361 | #endif /* _MIPS_SIM == _MIPS_SIM_ABI32 */ | 363 | #endif /* _MIPS_SIM == _MIPS_SIM_ABI32 */ |
| 362 | 364 | ||
| 363 | #define __NR_O32_Linux 4000 | 365 | #define __NR_O32_Linux 4000 |
| 364 | #define __NR_O32_Linux_syscalls 331 | 366 | #define __NR_O32_Linux_syscalls 333 |
| 365 | 367 | ||
| 366 | #if _MIPS_SIM == _MIPS_SIM_ABI64 | 368 | #if _MIPS_SIM == _MIPS_SIM_ABI64 |
| 367 | 369 | ||
| @@ -660,16 +662,18 @@ | |||
| 660 | #define __NR_inotify_init1 (__NR_Linux + 288) | 662 | #define __NR_inotify_init1 (__NR_Linux + 288) |
| 661 | #define __NR_preadv (__NR_Linux + 289) | 663 | #define __NR_preadv (__NR_Linux + 289) |
| 662 | #define __NR_pwritev (__NR_Linux + 290) | 664 | #define __NR_pwritev (__NR_Linux + 290) |
| 665 | #define __NR_rt_tgsigqueueinfo (__NR_Linux + 291) | ||
| 666 | #define __NR_perf_counter_open (__NR_Linux + 292) | ||
| 663 | 667 | ||
| 664 | /* | 668 | /* |
| 665 | * Offset of the last Linux 64-bit flavoured syscall | 669 | * Offset of the last Linux 64-bit flavoured syscall |
| 666 | */ | 670 | */ |
| 667 | #define __NR_Linux_syscalls 290 | 671 | #define __NR_Linux_syscalls 292 |
| 668 | 672 | ||
| 669 | #endif /* _MIPS_SIM == _MIPS_SIM_ABI64 */ | 673 | #endif /* _MIPS_SIM == _MIPS_SIM_ABI64 */ |
| 670 | 674 | ||
| 671 | #define __NR_64_Linux 5000 | 675 | #define __NR_64_Linux 5000 |
| 672 | #define __NR_64_Linux_syscalls 290 | 676 | #define __NR_64_Linux_syscalls 292 |
| 673 | 677 | ||
| 674 | #if _MIPS_SIM == _MIPS_SIM_NABI32 | 678 | #if _MIPS_SIM == _MIPS_SIM_NABI32 |
| 675 | 679 | ||
| @@ -972,16 +976,18 @@ | |||
| 972 | #define __NR_inotify_init1 (__NR_Linux + 292) | 976 | #define __NR_inotify_init1 (__NR_Linux + 292) |
| 973 | #define __NR_preadv (__NR_Linux + 293) | 977 | #define __NR_preadv (__NR_Linux + 293) |
| 974 | #define __NR_pwritev (__NR_Linux + 294) | 978 | #define __NR_pwritev (__NR_Linux + 294) |
| 979 | #define __NR_rt_tgsigqueueinfo (__NR_Linux + 295) | ||
| 980 | #define __NR_perf_counter_open (__NR_Linux + 296) | ||
| 975 | 981 | ||
| 976 | /* | 982 | /* |
| 977 | * Offset of the last N32 flavoured syscall | 983 | * Offset of the last N32 flavoured syscall |
| 978 | */ | 984 | */ |
| 979 | #define __NR_Linux_syscalls 294 | 985 | #define __NR_Linux_syscalls 296 |
| 980 | 986 | ||
| 981 | #endif /* _MIPS_SIM == _MIPS_SIM_NABI32 */ | 987 | #endif /* _MIPS_SIM == _MIPS_SIM_NABI32 */ |
| 982 | 988 | ||
| 983 | #define __NR_N32_Linux 6000 | 989 | #define __NR_N32_Linux 6000 |
| 984 | #define __NR_N32_Linux_syscalls 294 | 990 | #define __NR_N32_Linux_syscalls 296 |
| 985 | 991 | ||
| 986 | #ifdef __KERNEL__ | 992 | #ifdef __KERNEL__ |
| 987 | 993 | ||
diff --git a/arch/mips/include/asm/vr41xx/capcella.h b/arch/mips/include/asm/vr41xx/capcella.h index e0ee05a3dfcc..fcc6569414fa 100644 --- a/arch/mips/include/asm/vr41xx/capcella.h +++ b/arch/mips/include/asm/vr41xx/capcella.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * capcella.h, Include file for ZAO Networks Capcella. | 2 | * capcella.h, Include file for ZAO Networks Capcella. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2002-2004 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2002-2004 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/include/asm/vr41xx/giu.h b/arch/mips/include/asm/vr41xx/giu.h index 0bcdd3a5c256..6a90bc1d916b 100644 --- a/arch/mips/include/asm/vr41xx/giu.h +++ b/arch/mips/include/asm/vr41xx/giu.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Include file for NEC VR4100 series General-purpose I/O Unit. | 2 | * Include file for NEC VR4100 series General-purpose I/O Unit. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2005-2009 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
| @@ -41,7 +41,8 @@ typedef enum { | |||
| 41 | IRQ_SIGNAL_HOLD, | 41 | IRQ_SIGNAL_HOLD, |
| 42 | } irq_signal_t; | 42 | } irq_signal_t; |
| 43 | 43 | ||
| 44 | extern void vr41xx_set_irq_trigger(unsigned int pin, irq_trigger_t trigger, irq_signal_t signal); | 44 | extern void vr41xx_set_irq_trigger(unsigned int pin, irq_trigger_t trigger, |
| 45 | irq_signal_t signal); | ||
| 45 | 46 | ||
| 46 | typedef enum { | 47 | typedef enum { |
| 47 | IRQ_LEVEL_LOW, | 48 | IRQ_LEVEL_LOW, |
| @@ -51,23 +52,6 @@ typedef enum { | |||
| 51 | extern void vr41xx_set_irq_level(unsigned int pin, irq_level_t level); | 52 | extern void vr41xx_set_irq_level(unsigned int pin, irq_level_t level); |
| 52 | 53 | ||
| 53 | typedef enum { | 54 | typedef enum { |
| 54 | GPIO_DATA_LOW, | ||
| 55 | GPIO_DATA_HIGH, | ||
| 56 | GPIO_DATA_INVAL, | ||
| 57 | } gpio_data_t; | ||
| 58 | |||
| 59 | extern gpio_data_t vr41xx_gpio_get_pin(unsigned int pin); | ||
| 60 | extern int vr41xx_gpio_set_pin(unsigned int pin, gpio_data_t data); | ||
| 61 | |||
| 62 | typedef enum { | ||
| 63 | GPIO_INPUT, | ||
| 64 | GPIO_OUTPUT, | ||
| 65 | GPIO_OUTPUT_DISABLE, | ||
| 66 | } gpio_direction_t; | ||
| 67 | |||
| 68 | extern int vr41xx_gpio_set_direction(unsigned int pin, gpio_direction_t dir); | ||
| 69 | |||
| 70 | typedef enum { | ||
| 71 | GPIO_PULL_DOWN, | 55 | GPIO_PULL_DOWN, |
| 72 | GPIO_PULL_UP, | 56 | GPIO_PULL_UP, |
| 73 | GPIO_PULL_DISABLE, | 57 | GPIO_PULL_DISABLE, |
diff --git a/arch/mips/include/asm/vr41xx/irq.h b/arch/mips/include/asm/vr41xx/irq.h index d315dfbc08f2..b07f7321751d 100644 --- a/arch/mips/include/asm/vr41xx/irq.h +++ b/arch/mips/include/asm/vr41xx/irq.h | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | * Copyright (C) 2001, 2002 Paul Mundt | 7 | * Copyright (C) 2001, 2002 Paul Mundt |
| 8 | * Copyright (C) 2002 MontaVista Software, Inc. | 8 | * Copyright (C) 2002 MontaVista Software, Inc. |
| 9 | * Copyright (C) 2002 TimeSys Corp. | 9 | * Copyright (C) 2002 TimeSys Corp. |
| 10 | * Copyright (C) 2003-2006 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 10 | * Copyright (C) 2003-2006 Yoichi Yuasa <yuasa@linux-mips.org> |
| 11 | * | 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify it | 12 | * This program is free software; you can redistribute it and/or modify it |
| 13 | * under the terms of the GNU General Public License as published by the | 13 | * under the terms of the GNU General Public License as published by the |
diff --git a/arch/mips/include/asm/vr41xx/mpc30x.h b/arch/mips/include/asm/vr41xx/mpc30x.h index 1d67df843dc3..130d09d8c8cb 100644 --- a/arch/mips/include/asm/vr41xx/mpc30x.h +++ b/arch/mips/include/asm/vr41xx/mpc30x.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * mpc30x.h, Include file for Victor MP-C303/304. | 2 | * mpc30x.h, Include file for Victor MP-C303/304. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2002-2004 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2002-2004 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/include/asm/vr41xx/pci.h b/arch/mips/include/asm/vr41xx/pci.h index 6fc01ce19777..c231a3d6cfd8 100644 --- a/arch/mips/include/asm/vr41xx/pci.h +++ b/arch/mips/include/asm/vr41xx/pci.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Include file for NEC VR4100 series PCI Control Unit. | 2 | * Include file for NEC VR4100 series PCI Control Unit. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2004-2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2004-2005 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/include/asm/vr41xx/siu.h b/arch/mips/include/asm/vr41xx/siu.h index da9f6e373409..ca806bc4ddc8 100644 --- a/arch/mips/include/asm/vr41xx/siu.h +++ b/arch/mips/include/asm/vr41xx/siu.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Include file for NEC VR4100 series Serial Interface Unit. | 2 | * Include file for NEC VR4100 series Serial Interface Unit. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2005-2008 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2005-2008 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/include/asm/vr41xx/tb0219.h b/arch/mips/include/asm/vr41xx/tb0219.h index dc981b4be0a4..c78e8243b447 100644 --- a/arch/mips/include/asm/vr41xx/tb0219.h +++ b/arch/mips/include/asm/vr41xx/tb0219.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * tb0219.h, Include file for TANBAC TB0219. | 2 | * tb0219.h, Include file for TANBAC TB0219. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2002-2004 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2002-2004 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * Modified for TANBAC TB0219: | 6 | * Modified for TANBAC TB0219: |
| 7 | * Copyright (C) 2003 Megasolution Inc. <matsu@megasolution.jp> | 7 | * Copyright (C) 2003 Megasolution Inc. <matsu@megasolution.jp> |
diff --git a/arch/mips/include/asm/vr41xx/tb0226.h b/arch/mips/include/asm/vr41xx/tb0226.h index de527dcfa5f3..36f5f798e416 100644 --- a/arch/mips/include/asm/vr41xx/tb0226.h +++ b/arch/mips/include/asm/vr41xx/tb0226.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * tb0226.h, Include file for TANBAC TB0226. | 2 | * tb0226.h, Include file for TANBAC TB0226. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2002-2004 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2002-2004 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/include/asm/vr41xx/vr41xx.h b/arch/mips/include/asm/vr41xx/vr41xx.h index 22be64971cc6..7b96a43b72ba 100644 --- a/arch/mips/include/asm/vr41xx/vr41xx.h +++ b/arch/mips/include/asm/vr41xx/vr41xx.h | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | * Copyright (C) 2001, 2002 Paul Mundt | 7 | * Copyright (C) 2001, 2002 Paul Mundt |
| 8 | * Copyright (C) 2002 MontaVista Software, Inc. | 8 | * Copyright (C) 2002 MontaVista Software, Inc. |
| 9 | * Copyright (C) 2002 TimeSys Corp. | 9 | * Copyright (C) 2002 TimeSys Corp. |
| 10 | * Copyright (C) 2003-2008 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 10 | * Copyright (C) 2003-2008 Yoichi Yuasa <yuasa@linux-mips.org> |
| 11 | * | 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify it | 12 | * This program is free software; you can redistribute it and/or modify it |
| 13 | * under the terms of the GNU General Public License as published by the | 13 | * under the terms of the GNU General Public License as published by the |
diff --git a/arch/mips/kernel/binfmt_elfo32.c b/arch/mips/kernel/binfmt_elfo32.c index e1333d7319e2..ff448233dab5 100644 --- a/arch/mips/kernel/binfmt_elfo32.c +++ b/arch/mips/kernel/binfmt_elfo32.c | |||
| @@ -53,6 +53,23 @@ typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG]; | |||
| 53 | #define ELF_ET_DYN_BASE (TASK32_SIZE / 3 * 2) | 53 | #define ELF_ET_DYN_BASE (TASK32_SIZE / 3 * 2) |
| 54 | 54 | ||
| 55 | #include <asm/processor.h> | 55 | #include <asm/processor.h> |
| 56 | |||
| 57 | /* | ||
| 58 | * When this file is selected, we are definitely running a 64bit kernel. | ||
| 59 | * So using the right regs define in asm/reg.h | ||
| 60 | */ | ||
| 61 | #define WANT_COMPAT_REG_H | ||
| 62 | |||
| 63 | /* These MUST be defined before elf.h gets included */ | ||
| 64 | extern void elf32_core_copy_regs(elf_gregset_t grp, struct pt_regs *regs); | ||
| 65 | #define ELF_CORE_COPY_REGS(_dest, _regs) elf32_core_copy_regs(_dest, _regs); | ||
| 66 | #define ELF_CORE_COPY_TASK_REGS(_tsk, _dest) \ | ||
| 67 | ({ \ | ||
| 68 | int __res = 1; \ | ||
| 69 | elf32_core_copy_regs(*(_dest), task_pt_regs(_tsk)); \ | ||
| 70 | __res; \ | ||
| 71 | }) | ||
| 72 | |||
| 56 | #include <linux/module.h> | 73 | #include <linux/module.h> |
| 57 | #include <linux/elfcore.h> | 74 | #include <linux/elfcore.h> |
| 58 | #include <linux/compat.h> | 75 | #include <linux/compat.h> |
| @@ -110,9 +127,6 @@ jiffies_to_compat_timeval(unsigned long jiffies, struct compat_timeval *value) | |||
| 110 | value->tv_usec = rem / NSEC_PER_USEC; | 127 | value->tv_usec = rem / NSEC_PER_USEC; |
| 111 | } | 128 | } |
| 112 | 129 | ||
| 113 | #undef ELF_CORE_COPY_REGS | ||
| 114 | #define ELF_CORE_COPY_REGS(_dest, _regs) elf32_core_copy_regs(_dest, _regs); | ||
| 115 | |||
| 116 | void elf32_core_copy_regs(elf_gregset_t grp, struct pt_regs *regs) | 130 | void elf32_core_copy_regs(elf_gregset_t grp, struct pt_regs *regs) |
| 117 | { | 131 | { |
| 118 | int i; | 132 | int i; |
diff --git a/arch/mips/kernel/cevt-ds1287.c b/arch/mips/kernel/cevt-ds1287.c index 1ada45ea0700..6996da4d74a2 100644 --- a/arch/mips/kernel/cevt-ds1287.c +++ b/arch/mips/kernel/cevt-ds1287.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * DS1287 clockevent driver | 2 | * DS1287 clockevent driver |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2008 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2008 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/kernel/cevt-gt641xx.c b/arch/mips/kernel/cevt-gt641xx.c index e9b787feedcb..92351e00ae0e 100644 --- a/arch/mips/kernel/cevt-gt641xx.c +++ b/arch/mips/kernel/cevt-gt641xx.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * GT641xx clockevent routines. | 2 | * GT641xx clockevent routines. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/kernel/csrc-ioasic.c b/arch/mips/kernel/csrc-ioasic.c index b551f48d3a07..23da108506b0 100644 --- a/arch/mips/kernel/csrc-ioasic.c +++ b/arch/mips/kernel/csrc-ioasic.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * DEC I/O ASIC's counter clocksource | 2 | * DEC I/O ASIC's counter clocksource |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2008 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2008 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/kernel/irq-gic.c b/arch/mips/kernel/irq-gic.c index 39000f103f2c..d2072cd38592 100644 --- a/arch/mips/kernel/irq-gic.c +++ b/arch/mips/kernel/irq-gic.c | |||
| @@ -107,9 +107,7 @@ static unsigned int gic_irq_startup(unsigned int irq) | |||
| 107 | { | 107 | { |
| 108 | pr_debug("CPU%d: %s: irq%d\n", smp_processor_id(), __func__, irq); | 108 | pr_debug("CPU%d: %s: irq%d\n", smp_processor_id(), __func__, irq); |
| 109 | irq -= _irqbase; | 109 | irq -= _irqbase; |
| 110 | /* FIXME: this is wrong for !GICISWORDLITTLEENDIAN */ | 110 | GIC_SET_INTR_MASK(irq, 1); |
| 111 | GICWRITE(GIC_REG_ADDR(SHARED, (GIC_SH_SMASK_31_0_OFS + (irq / 32))), | ||
| 112 | 1 << (irq % 32)); | ||
| 113 | return 0; | 111 | return 0; |
| 114 | } | 112 | } |
| 115 | 113 | ||
| @@ -120,8 +118,7 @@ static void gic_irq_ack(unsigned int irq) | |||
| 120 | #endif | 118 | #endif |
| 121 | pr_debug("CPU%d: %s: irq%d\n", smp_processor_id(), __func__, irq); | 119 | pr_debug("CPU%d: %s: irq%d\n", smp_processor_id(), __func__, irq); |
| 122 | irq -= _irqbase; | 120 | irq -= _irqbase; |
| 123 | GICWRITE(GIC_REG_ADDR(SHARED, (GIC_SH_RMASK_31_0_OFS + (irq / 32))), | 121 | GIC_CLR_INTR_MASK(irq, 1); |
| 124 | 1 << (irq % 32)); | ||
| 125 | 122 | ||
| 126 | if (_intrmap[irq].trigtype == GIC_TRIG_EDGE) { | 123 | if (_intrmap[irq].trigtype == GIC_TRIG_EDGE) { |
| 127 | if (!gic_wedgeb2bok) | 124 | if (!gic_wedgeb2bok) |
| @@ -138,18 +135,14 @@ static void gic_mask_irq(unsigned int irq) | |||
| 138 | { | 135 | { |
| 139 | pr_debug("CPU%d: %s: irq%d\n", smp_processor_id(), __func__, irq); | 136 | pr_debug("CPU%d: %s: irq%d\n", smp_processor_id(), __func__, irq); |
| 140 | irq -= _irqbase; | 137 | irq -= _irqbase; |
| 141 | /* FIXME: this is wrong for !GICISWORDLITTLEENDIAN */ | 138 | GIC_CLR_INTR_MASK(irq, 1); |
| 142 | GICWRITE(GIC_REG_ADDR(SHARED, (GIC_SH_RMASK_31_0_OFS + (irq / 32))), | ||
| 143 | 1 << (irq % 32)); | ||
| 144 | } | 139 | } |
| 145 | 140 | ||
| 146 | static void gic_unmask_irq(unsigned int irq) | 141 | static void gic_unmask_irq(unsigned int irq) |
| 147 | { | 142 | { |
| 148 | pr_debug("CPU%d: %s: irq%d\n", smp_processor_id(), __func__, irq); | 143 | pr_debug("CPU%d: %s: irq%d\n", smp_processor_id(), __func__, irq); |
| 149 | irq -= _irqbase; | 144 | irq -= _irqbase; |
| 150 | /* FIXME: this is wrong for !GICISWORDLITTLEENDIAN */ | 145 | GIC_SET_INTR_MASK(irq, 1); |
| 151 | GICWRITE(GIC_REG_ADDR(SHARED, (GIC_SH_SMASK_31_0_OFS + (irq / 32))), | ||
| 152 | 1 << (irq % 32)); | ||
| 153 | } | 146 | } |
| 154 | 147 | ||
| 155 | #ifdef CONFIG_SMP | 148 | #ifdef CONFIG_SMP |
| @@ -254,6 +247,10 @@ static void __init gic_basic_init(void) | |||
| 254 | if (cpu == X) | 247 | if (cpu == X) |
| 255 | continue; | 248 | continue; |
| 256 | 249 | ||
| 250 | if (cpu == 0 && i != 0 && _intrmap[i].intrnum == 0 && | ||
| 251 | _intrmap[i].ipiflag == 0) | ||
| 252 | continue; | ||
| 253 | |||
| 257 | setup_intr(_intrmap[i].intrnum, | 254 | setup_intr(_intrmap[i].intrnum, |
| 258 | _intrmap[i].cpunum, | 255 | _intrmap[i].cpunum, |
| 259 | _intrmap[i].pin, | 256 | _intrmap[i].pin, |
diff --git a/arch/mips/kernel/irq-gt641xx.c b/arch/mips/kernel/irq-gt641xx.c index 1b81b131f43c..ebcc5f7ad9c2 100644 --- a/arch/mips/kernel/irq-gt641xx.c +++ b/arch/mips/kernel/irq-gt641xx.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * GT641xx IRQ routines. | 2 | * GT641xx IRQ routines. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/kernel/scall32-o32.S b/arch/mips/kernel/scall32-o32.S index 0b31b9bda048..20a86e08fd58 100644 --- a/arch/mips/kernel/scall32-o32.S +++ b/arch/mips/kernel/scall32-o32.S | |||
| @@ -652,6 +652,8 @@ einval: li v0, -ENOSYS | |||
| 652 | sys sys_inotify_init1 1 | 652 | sys sys_inotify_init1 1 |
| 653 | sys sys_preadv 6 /* 4330 */ | 653 | sys sys_preadv 6 /* 4330 */ |
| 654 | sys sys_pwritev 6 | 654 | sys sys_pwritev 6 |
| 655 | sys sys_rt_tgsigqueueinfo 4 | ||
| 656 | sys sys_perf_counter_open 5 | ||
| 655 | .endm | 657 | .endm |
| 656 | 658 | ||
| 657 | /* We pre-compute the number of _instruction_ bytes needed to | 659 | /* We pre-compute the number of _instruction_ bytes needed to |
diff --git a/arch/mips/kernel/scall64-64.S b/arch/mips/kernel/scall64-64.S index c647fd6e722f..b046130d4c5d 100644 --- a/arch/mips/kernel/scall64-64.S +++ b/arch/mips/kernel/scall64-64.S | |||
| @@ -489,4 +489,6 @@ sys_call_table: | |||
| 489 | PTR sys_inotify_init1 | 489 | PTR sys_inotify_init1 |
| 490 | PTR sys_preadv | 490 | PTR sys_preadv |
| 491 | PTR sys_pwritev /* 5390 */ | 491 | PTR sys_pwritev /* 5390 */ |
| 492 | PTR sys_rt_tgsigqueueinfo | ||
| 493 | PTR sys_perf_counter_open | ||
| 492 | .size sys_call_table,.-sys_call_table | 494 | .size sys_call_table,.-sys_call_table |
diff --git a/arch/mips/kernel/scall64-n32.S b/arch/mips/kernel/scall64-n32.S index 93cc672f4522..15874f9812cc 100644 --- a/arch/mips/kernel/scall64-n32.S +++ b/arch/mips/kernel/scall64-n32.S | |||
| @@ -415,4 +415,6 @@ EXPORT(sysn32_call_table) | |||
| 415 | PTR sys_inotify_init1 | 415 | PTR sys_inotify_init1 |
| 416 | PTR sys_preadv | 416 | PTR sys_preadv |
| 417 | PTR sys_pwritev | 417 | PTR sys_pwritev |
| 418 | PTR compat_sys_rt_tgsigqueueinfo /* 5295 */ | ||
| 419 | PTR sys_perf_counter_open | ||
| 418 | .size sysn32_call_table,.-sysn32_call_table | 420 | .size sysn32_call_table,.-sysn32_call_table |
diff --git a/arch/mips/kernel/scall64-o32.S b/arch/mips/kernel/scall64-o32.S index a5598b2339dd..781e0f1e9533 100644 --- a/arch/mips/kernel/scall64-o32.S +++ b/arch/mips/kernel/scall64-o32.S | |||
| @@ -535,4 +535,6 @@ sys_call_table: | |||
| 535 | PTR sys_inotify_init1 | 535 | PTR sys_inotify_init1 |
| 536 | PTR compat_sys_preadv /* 4330 */ | 536 | PTR compat_sys_preadv /* 4330 */ |
| 537 | PTR compat_sys_pwritev | 537 | PTR compat_sys_pwritev |
| 538 | PTR compat_sys_rt_tgsigqueueinfo | ||
| 539 | PTR sys_perf_counter_open | ||
| 538 | .size sys_call_table,.-sys_call_table | 540 | .size sys_call_table,.-sys_call_table |
diff --git a/arch/mips/kernel/smp-cmp.c b/arch/mips/kernel/smp-cmp.c index 653be061b9ec..ad0ff5dc4d59 100644 --- a/arch/mips/kernel/smp-cmp.c +++ b/arch/mips/kernel/smp-cmp.c | |||
| @@ -37,80 +37,24 @@ | |||
| 37 | #include <asm/mipsregs.h> | 37 | #include <asm/mipsregs.h> |
| 38 | #include <asm/mipsmtregs.h> | 38 | #include <asm/mipsmtregs.h> |
| 39 | #include <asm/mips_mt.h> | 39 | #include <asm/mips_mt.h> |
| 40 | 40 | #include <asm/amon.h> | |
| 41 | /* | 41 | #include <asm/gic.h> |
| 42 | * Crude manipulation of the CPU masks to control which | ||
| 43 | * which CPU's are brought online during initialisation | ||
| 44 | * | ||
| 45 | * Beware... this needs to be called after CPU discovery | ||
| 46 | * but before CPU bringup | ||
| 47 | */ | ||
| 48 | static int __init allowcpus(char *str) | ||
| 49 | { | ||
| 50 | cpumask_t cpu_allow_map; | ||
| 51 | char buf[256]; | ||
| 52 | int len; | ||
| 53 | |||
| 54 | cpus_clear(cpu_allow_map); | ||
| 55 | if (cpulist_parse(str, &cpu_allow_map) == 0) { | ||
| 56 | cpu_set(0, cpu_allow_map); | ||
| 57 | cpus_and(cpu_possible_map, cpu_possible_map, cpu_allow_map); | ||
| 58 | len = cpulist_scnprintf(buf, sizeof(buf)-1, &cpu_possible_map); | ||
| 59 | buf[len] = '\0'; | ||
| 60 | pr_debug("Allowable CPUs: %s\n", buf); | ||
| 61 | return 1; | ||
| 62 | } else | ||
| 63 | return 0; | ||
| 64 | } | ||
| 65 | __setup("allowcpus=", allowcpus); | ||
| 66 | 42 | ||
| 67 | static void ipi_call_function(unsigned int cpu) | 43 | static void ipi_call_function(unsigned int cpu) |
| 68 | { | 44 | { |
| 69 | unsigned int action = 0; | ||
| 70 | |||
| 71 | pr_debug("CPU%d: %s cpu %d status %08x\n", | 45 | pr_debug("CPU%d: %s cpu %d status %08x\n", |
| 72 | smp_processor_id(), __func__, cpu, read_c0_status()); | 46 | smp_processor_id(), __func__, cpu, read_c0_status()); |
| 73 | 47 | ||
| 74 | switch (cpu) { | 48 | gic_send_ipi(plat_ipi_call_int_xlate(cpu)); |
| 75 | case 0: | ||
| 76 | action = GIC_IPI_EXT_INTR_CALLFNC_VPE0; | ||
| 77 | break; | ||
| 78 | case 1: | ||
| 79 | action = GIC_IPI_EXT_INTR_CALLFNC_VPE1; | ||
| 80 | break; | ||
| 81 | case 2: | ||
| 82 | action = GIC_IPI_EXT_INTR_CALLFNC_VPE2; | ||
| 83 | break; | ||
| 84 | case 3: | ||
| 85 | action = GIC_IPI_EXT_INTR_CALLFNC_VPE3; | ||
| 86 | break; | ||
| 87 | } | ||
| 88 | gic_send_ipi(action); | ||
| 89 | } | 49 | } |
| 90 | 50 | ||
| 91 | 51 | ||
| 92 | static void ipi_resched(unsigned int cpu) | 52 | static void ipi_resched(unsigned int cpu) |
| 93 | { | 53 | { |
| 94 | unsigned int action = 0; | ||
| 95 | |||
| 96 | pr_debug("CPU%d: %s cpu %d status %08x\n", | 54 | pr_debug("CPU%d: %s cpu %d status %08x\n", |
| 97 | smp_processor_id(), __func__, cpu, read_c0_status()); | 55 | smp_processor_id(), __func__, cpu, read_c0_status()); |
| 98 | 56 | ||
| 99 | switch (cpu) { | 57 | gic_send_ipi(plat_ipi_resched_int_xlate(cpu)); |
| 100 | case 0: | ||
| 101 | action = GIC_IPI_EXT_INTR_RESCHED_VPE0; | ||
| 102 | break; | ||
| 103 | case 1: | ||
| 104 | action = GIC_IPI_EXT_INTR_RESCHED_VPE1; | ||
| 105 | break; | ||
| 106 | case 2: | ||
| 107 | action = GIC_IPI_EXT_INTR_RESCHED_VPE2; | ||
| 108 | break; | ||
| 109 | case 3: | ||
| 110 | action = GIC_IPI_EXT_INTR_RESCHED_VPE3; | ||
| 111 | break; | ||
| 112 | } | ||
| 113 | gic_send_ipi(action); | ||
| 114 | } | 58 | } |
| 115 | 59 | ||
| 116 | /* | 60 | /* |
| @@ -206,7 +150,7 @@ static void cmp_boot_secondary(int cpu, struct task_struct *idle) | |||
| 206 | (unsigned long)(gp + sizeof(struct thread_info))); | 150 | (unsigned long)(gp + sizeof(struct thread_info))); |
| 207 | #endif | 151 | #endif |
| 208 | 152 | ||
| 209 | amon_cpu_start(cpu, pc, sp, gp, a0); | 153 | amon_cpu_start(cpu, pc, sp, (unsigned long)gp, a0); |
| 210 | } | 154 | } |
| 211 | 155 | ||
| 212 | /* | 156 | /* |
diff --git a/arch/mips/kernel/sync-r4k.c b/arch/mips/kernel/sync-r4k.c index 9021108eb9c1..05dd170a83f7 100644 --- a/arch/mips/kernel/sync-r4k.c +++ b/arch/mips/kernel/sync-r4k.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Count register synchronisation. | 2 | * Count register synchronisation. |
| 3 | * | 3 | * |
| 4 | * All CPUs will have their count registers synchronised to the CPU0 expirelo | 4 | * All CPUs will have their count registers synchronised to the CPU0 next time |
| 5 | * value. This can cause a small timewarp for CPU0. All other CPU's should | 5 | * value. This can cause a small timewarp for CPU0. All other CPU's should |
| 6 | * not have done anything significant (but they may have had interrupts | 6 | * not have done anything significant (but they may have had interrupts |
| 7 | * enabled briefly - prom_smp_finish() should not be responsible for enabling | 7 | * enabled briefly - prom_smp_finish() should not be responsible for enabling |
| @@ -13,21 +13,22 @@ | |||
| 13 | #include <linux/kernel.h> | 13 | #include <linux/kernel.h> |
| 14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
| 15 | #include <linux/irqflags.h> | 15 | #include <linux/irqflags.h> |
| 16 | #include <linux/r4k-timer.h> | 16 | #include <linux/cpumask.h> |
| 17 | 17 | ||
| 18 | #include <asm/r4k-timer.h> | ||
| 18 | #include <asm/atomic.h> | 19 | #include <asm/atomic.h> |
| 19 | #include <asm/barrier.h> | 20 | #include <asm/barrier.h> |
| 20 | #include <asm/cpumask.h> | ||
| 21 | #include <asm/mipsregs.h> | 21 | #include <asm/mipsregs.h> |
| 22 | 22 | ||
| 23 | static atomic_t __initdata count_start_flag = ATOMIC_INIT(0); | 23 | static atomic_t __cpuinitdata count_start_flag = ATOMIC_INIT(0); |
| 24 | static atomic_t __initdata count_count_start = ATOMIC_INIT(0); | 24 | static atomic_t __cpuinitdata count_count_start = ATOMIC_INIT(0); |
| 25 | static atomic_t __initdata count_count_stop = ATOMIC_INIT(0); | 25 | static atomic_t __cpuinitdata count_count_stop = ATOMIC_INIT(0); |
| 26 | static atomic_t __cpuinitdata count_reference = ATOMIC_INIT(0); | ||
| 26 | 27 | ||
| 27 | #define COUNTON 100 | 28 | #define COUNTON 100 |
| 28 | #define NR_LOOPS 5 | 29 | #define NR_LOOPS 5 |
| 29 | 30 | ||
| 30 | void __init synchronise_count_master(void) | 31 | void __cpuinit synchronise_count_master(void) |
| 31 | { | 32 | { |
| 32 | int i; | 33 | int i; |
| 33 | unsigned long flags; | 34 | unsigned long flags; |
| @@ -42,19 +43,20 @@ void __init synchronise_count_master(void) | |||
| 42 | return; | 43 | return; |
| 43 | #endif | 44 | #endif |
| 44 | 45 | ||
| 45 | pr_info("Checking COUNT synchronization across %u CPUs: ", | 46 | printk(KERN_INFO "Synchronize counters across %u CPUs: ", |
| 46 | num_online_cpus()); | 47 | num_online_cpus()); |
| 47 | 48 | ||
| 48 | local_irq_save(flags); | 49 | local_irq_save(flags); |
| 49 | 50 | ||
| 50 | /* | 51 | /* |
| 51 | * Notify the slaves that it's time to start | 52 | * Notify the slaves that it's time to start |
| 52 | */ | 53 | */ |
| 54 | atomic_set(&count_reference, read_c0_count()); | ||
| 53 | atomic_set(&count_start_flag, 1); | 55 | atomic_set(&count_start_flag, 1); |
| 54 | smp_wmb(); | 56 | smp_wmb(); |
| 55 | 57 | ||
| 56 | /* Count will be initialised to expirelo for all CPU's */ | 58 | /* Count will be initialised to current timer for all CPU's */ |
| 57 | initcount = expirelo; | 59 | initcount = read_c0_count(); |
| 58 | 60 | ||
| 59 | /* | 61 | /* |
| 60 | * We loop a few times to get a primed instruction cache, | 62 | * We loop a few times to get a primed instruction cache, |
| @@ -106,7 +108,7 @@ void __init synchronise_count_master(void) | |||
| 106 | printk("done.\n"); | 108 | printk("done.\n"); |
| 107 | } | 109 | } |
| 108 | 110 | ||
| 109 | void __init synchronise_count_slave(void) | 111 | void __cpuinit synchronise_count_slave(void) |
| 110 | { | 112 | { |
| 111 | int i; | 113 | int i; |
| 112 | unsigned long flags; | 114 | unsigned long flags; |
| @@ -131,8 +133,8 @@ void __init synchronise_count_slave(void) | |||
| 131 | while (!atomic_read(&count_start_flag)) | 133 | while (!atomic_read(&count_start_flag)) |
| 132 | mb(); | 134 | mb(); |
| 133 | 135 | ||
| 134 | /* Count will be initialised to expirelo for all CPU's */ | 136 | /* Count will be initialised to next expire for all CPU's */ |
| 135 | initcount = expirelo; | 137 | initcount = atomic_read(&count_reference); |
| 136 | 138 | ||
| 137 | ncpus = num_online_cpus(); | 139 | ncpus = num_online_cpus(); |
| 138 | for (i = 0; i < NR_LOOPS; i++) { | 140 | for (i = 0; i < NR_LOOPS; i++) { |
| @@ -156,4 +158,3 @@ void __init synchronise_count_slave(void) | |||
| 156 | local_irq_restore(flags); | 158 | local_irq_restore(flags); |
| 157 | } | 159 | } |
| 158 | #undef NR_LOOPS | 160 | #undef NR_LOOPS |
| 159 | #endif | ||
diff --git a/arch/mips/kernel/vpe.c b/arch/mips/kernel/vpe.c index 3ca5f42e819d..07b9ec2c6e3d 100644 --- a/arch/mips/kernel/vpe.c +++ b/arch/mips/kernel/vpe.c | |||
| @@ -1387,7 +1387,7 @@ static ssize_t store_ntcs(struct device *dev, struct device_attribute *attr, | |||
| 1387 | return len; | 1387 | return len; |
| 1388 | 1388 | ||
| 1389 | out_einval: | 1389 | out_einval: |
| 1390 | return -EINVAL;; | 1390 | return -EINVAL; |
| 1391 | } | 1391 | } |
| 1392 | 1392 | ||
| 1393 | static struct device_attribute vpe_class_attributes[] = { | 1393 | static struct device_attribute vpe_class_attributes[] = { |
diff --git a/arch/mips/mti-malta/malta-init.c b/arch/mips/mti-malta/malta-init.c index 475038a141a6..27c807b67fea 100644 --- a/arch/mips/mti-malta/malta-init.c +++ b/arch/mips/mti-malta/malta-init.c | |||
| @@ -30,6 +30,7 @@ | |||
| 30 | #include <asm/cacheflush.h> | 30 | #include <asm/cacheflush.h> |
| 31 | #include <asm/traps.h> | 31 | #include <asm/traps.h> |
| 32 | 32 | ||
| 33 | #include <asm/gcmpregs.h> | ||
| 33 | #include <asm/mips-boards/prom.h> | 34 | #include <asm/mips-boards/prom.h> |
| 34 | #include <asm/mips-boards/generic.h> | 35 | #include <asm/mips-boards/generic.h> |
| 35 | #include <asm/mips-boards/bonito64.h> | 36 | #include <asm/mips-boards/bonito64.h> |
| @@ -192,6 +193,8 @@ extern struct plat_smp_ops msmtc_smp_ops; | |||
| 192 | 193 | ||
| 193 | void __init prom_init(void) | 194 | void __init prom_init(void) |
| 194 | { | 195 | { |
| 196 | int result; | ||
| 197 | |||
| 195 | prom_argc = fw_arg0; | 198 | prom_argc = fw_arg0; |
| 196 | _prom_argv = (int *) fw_arg1; | 199 | _prom_argv = (int *) fw_arg1; |
| 197 | _prom_envp = (int *) fw_arg2; | 200 | _prom_envp = (int *) fw_arg2; |
| @@ -358,12 +361,21 @@ void __init prom_init(void) | |||
| 358 | #ifdef CONFIG_SERIAL_8250_CONSOLE | 361 | #ifdef CONFIG_SERIAL_8250_CONSOLE |
| 359 | console_config(); | 362 | console_config(); |
| 360 | #endif | 363 | #endif |
| 364 | /* Early detection of CMP support */ | ||
| 365 | result = gcmp_probe(GCMP_BASE_ADDR, GCMP_ADDRSPACE_SZ); | ||
| 366 | |||
| 361 | #ifdef CONFIG_MIPS_CMP | 367 | #ifdef CONFIG_MIPS_CMP |
| 362 | register_smp_ops(&cmp_smp_ops); | 368 | if (result) |
| 369 | register_smp_ops(&cmp_smp_ops); | ||
| 363 | #endif | 370 | #endif |
| 364 | #ifdef CONFIG_MIPS_MT_SMP | 371 | #ifdef CONFIG_MIPS_MT_SMP |
| 372 | #ifdef CONFIG_MIPS_CMP | ||
| 373 | if (!result) | ||
| 374 | register_smp_ops(&vsmp_smp_ops); | ||
| 375 | #else | ||
| 365 | register_smp_ops(&vsmp_smp_ops); | 376 | register_smp_ops(&vsmp_smp_ops); |
| 366 | #endif | 377 | #endif |
| 378 | #endif | ||
| 367 | #ifdef CONFIG_MIPS_MT_SMTC | 379 | #ifdef CONFIG_MIPS_MT_SMTC |
| 368 | register_smp_ops(&msmtc_smp_ops); | 380 | register_smp_ops(&msmtc_smp_ops); |
| 369 | #endif | 381 | #endif |
diff --git a/arch/mips/mti-malta/malta-int.c b/arch/mips/mti-malta/malta-int.c index b4eaf137e4a7..a8756f82c31b 100644 --- a/arch/mips/mti-malta/malta-int.c +++ b/arch/mips/mti-malta/malta-int.c | |||
| @@ -331,6 +331,21 @@ static struct irqaction irq_call = { | |||
| 331 | .flags = IRQF_DISABLED|IRQF_PERCPU, | 331 | .flags = IRQF_DISABLED|IRQF_PERCPU, |
| 332 | .name = "IPI_call" | 332 | .name = "IPI_call" |
| 333 | }; | 333 | }; |
| 334 | |||
| 335 | static int gic_resched_int_base; | ||
| 336 | static int gic_call_int_base; | ||
| 337 | #define GIC_RESCHED_INT(cpu) (gic_resched_int_base+(cpu)) | ||
| 338 | #define GIC_CALL_INT(cpu) (gic_call_int_base+(cpu)) | ||
| 339 | |||
| 340 | unsigned int plat_ipi_call_int_xlate(unsigned int cpu) | ||
| 341 | { | ||
| 342 | return GIC_CALL_INT(cpu); | ||
| 343 | } | ||
| 344 | |||
| 345 | unsigned int plat_ipi_resched_int_xlate(unsigned int cpu) | ||
| 346 | { | ||
| 347 | return GIC_RESCHED_INT(cpu); | ||
| 348 | } | ||
| 334 | #endif /* CONFIG_MIPS_MT_SMP */ | 349 | #endif /* CONFIG_MIPS_MT_SMP */ |
| 335 | 350 | ||
| 336 | static struct irqaction i8259irq = { | 351 | static struct irqaction i8259irq = { |
| @@ -370,7 +385,7 @@ static int __initdata msc_nr_eicirqs = ARRAY_SIZE(msc_eicirqmap); | |||
| 370 | * Interrupts and CPUs/Core Interrupts. The nature of the External | 385 | * Interrupts and CPUs/Core Interrupts. The nature of the External |
| 371 | * Interrupts is also defined here - polarity/trigger. | 386 | * Interrupts is also defined here - polarity/trigger. |
| 372 | */ | 387 | */ |
| 373 | static struct gic_intr_map gic_intr_map[] = { | 388 | static struct gic_intr_map gic_intr_map[GIC_NUM_INTRS] = { |
| 374 | { GIC_EXT_INTR(0), X, X, X, X, 0 }, | 389 | { GIC_EXT_INTR(0), X, X, X, X, 0 }, |
| 375 | { GIC_EXT_INTR(1), X, X, X, X, 0 }, | 390 | { GIC_EXT_INTR(1), X, X, X, X, 0 }, |
| 376 | { GIC_EXT_INTR(2), X, X, X, X, 0 }, | 391 | { GIC_EXT_INTR(2), X, X, X, X, 0 }, |
| @@ -387,21 +402,14 @@ static struct gic_intr_map gic_intr_map[] = { | |||
| 387 | { GIC_EXT_INTR(13), 0, GIC_MAP_TO_NMI_MSK, GIC_POL_POS, GIC_TRIG_LEVEL, 0 }, | 402 | { GIC_EXT_INTR(13), 0, GIC_MAP_TO_NMI_MSK, GIC_POL_POS, GIC_TRIG_LEVEL, 0 }, |
| 388 | { GIC_EXT_INTR(14), 0, GIC_MAP_TO_NMI_MSK, GIC_POL_POS, GIC_TRIG_LEVEL, 0 }, | 403 | { GIC_EXT_INTR(14), 0, GIC_MAP_TO_NMI_MSK, GIC_POL_POS, GIC_TRIG_LEVEL, 0 }, |
| 389 | { GIC_EXT_INTR(15), X, X, X, X, 0 }, | 404 | { GIC_EXT_INTR(15), X, X, X, X, 0 }, |
| 390 | { GIC_EXT_INTR(16), 0, GIC_CPU_INT1, GIC_POL_POS, GIC_TRIG_EDGE, 1 }, | 405 | /* This is the end of the general interrupts now we do IPI ones */ |
| 391 | { GIC_EXT_INTR(17), 0, GIC_CPU_INT2, GIC_POL_POS, GIC_TRIG_EDGE, 1 }, | ||
| 392 | { GIC_EXT_INTR(18), 1, GIC_CPU_INT1, GIC_POL_POS, GIC_TRIG_EDGE, 1 }, | ||
| 393 | { GIC_EXT_INTR(19), 1, GIC_CPU_INT2, GIC_POL_POS, GIC_TRIG_EDGE, 1 }, | ||
| 394 | { GIC_EXT_INTR(20), 2, GIC_CPU_INT1, GIC_POL_POS, GIC_TRIG_EDGE, 1 }, | ||
| 395 | { GIC_EXT_INTR(21), 2, GIC_CPU_INT2, GIC_POL_POS, GIC_TRIG_EDGE, 1 }, | ||
| 396 | { GIC_EXT_INTR(22), 3, GIC_CPU_INT1, GIC_POL_POS, GIC_TRIG_EDGE, 1 }, | ||
| 397 | { GIC_EXT_INTR(23), 3, GIC_CPU_INT2, GIC_POL_POS, GIC_TRIG_EDGE, 1 }, | ||
| 398 | }; | 406 | }; |
| 399 | #endif | 407 | #endif |
| 400 | 408 | ||
| 401 | /* | 409 | /* |
| 402 | * GCMP needs to be detected before any SMP initialisation | 410 | * GCMP needs to be detected before any SMP initialisation |
| 403 | */ | 411 | */ |
| 404 | static int __init gcmp_probe(unsigned long addr, unsigned long size) | 412 | int __init gcmp_probe(unsigned long addr, unsigned long size) |
| 405 | { | 413 | { |
| 406 | if (gcmp_present >= 0) | 414 | if (gcmp_present >= 0) |
| 407 | return gcmp_present; | 415 | return gcmp_present; |
| @@ -416,28 +424,36 @@ static int __init gcmp_probe(unsigned long addr, unsigned long size) | |||
| 416 | } | 424 | } |
| 417 | 425 | ||
| 418 | #if defined(CONFIG_MIPS_MT_SMP) | 426 | #if defined(CONFIG_MIPS_MT_SMP) |
| 427 | static void __init fill_ipi_map1(int baseintr, int cpu, int cpupin) | ||
| 428 | { | ||
| 429 | int intr = baseintr + cpu; | ||
| 430 | gic_intr_map[intr].intrnum = GIC_EXT_INTR(intr); | ||
| 431 | gic_intr_map[intr].cpunum = cpu; | ||
| 432 | gic_intr_map[intr].pin = cpupin; | ||
| 433 | gic_intr_map[intr].polarity = GIC_POL_POS; | ||
| 434 | gic_intr_map[intr].trigtype = GIC_TRIG_EDGE; | ||
| 435 | gic_intr_map[intr].ipiflag = 1; | ||
| 436 | ipi_map[cpu] |= (1 << (cpupin + 2)); | ||
| 437 | } | ||
| 438 | |||
| 419 | static void __init fill_ipi_map(void) | 439 | static void __init fill_ipi_map(void) |
| 420 | { | 440 | { |
| 421 | int i; | 441 | int cpu; |
| 422 | 442 | ||
| 423 | for (i = 0; i < ARRAY_SIZE(gic_intr_map); i++) { | 443 | for (cpu = 0; cpu < NR_CPUS; cpu++) { |
| 424 | if (gic_intr_map[i].ipiflag && (gic_intr_map[i].cpunum != X)) | 444 | fill_ipi_map1(gic_resched_int_base, cpu, GIC_CPU_INT1); |
| 425 | ipi_map[gic_intr_map[i].cpunum] |= | 445 | fill_ipi_map1(gic_call_int_base, cpu, GIC_CPU_INT2); |
| 426 | (1 << (gic_intr_map[i].pin + 2)); | ||
| 427 | } | 446 | } |
| 428 | } | 447 | } |
| 429 | #endif | 448 | #endif |
| 430 | 449 | ||
| 431 | void __init arch_init_irq(void) | 450 | void __init arch_init_irq(void) |
| 432 | { | 451 | { |
| 433 | int gic_present, gcmp_present; | ||
| 434 | |||
| 435 | init_i8259_irqs(); | 452 | init_i8259_irqs(); |
| 436 | 453 | ||
| 437 | if (!cpu_has_veic) | 454 | if (!cpu_has_veic) |
| 438 | mips_cpu_irq_init(); | 455 | mips_cpu_irq_init(); |
| 439 | 456 | ||
| 440 | gcmp_present = gcmp_probe(GCMP_BASE_ADDR, GCMP_ADDRSPACE_SZ); | ||
| 441 | if (gcmp_present) { | 457 | if (gcmp_present) { |
| 442 | GCMPGCB(GICBA) = GIC_BASE_ADDR | GCMP_GCB_GICBA_EN_MSK; | 458 | GCMPGCB(GICBA) = GIC_BASE_ADDR | GCMP_GCB_GICBA_EN_MSK; |
| 443 | gic_present = 1; | 459 | gic_present = 1; |
| @@ -514,24 +530,10 @@ void __init arch_init_irq(void) | |||
| 514 | if (gic_present) { | 530 | if (gic_present) { |
| 515 | /* FIXME */ | 531 | /* FIXME */ |
| 516 | int i; | 532 | int i; |
| 517 | struct { | 533 | |
| 518 | unsigned int resched; | 534 | gic_call_int_base = GIC_NUM_INTRS - NR_CPUS; |
| 519 | unsigned int call; | 535 | gic_resched_int_base = gic_call_int_base - NR_CPUS; |
| 520 | } ipiirq[] = { | 536 | |
| 521 | { | ||
| 522 | .resched = GIC_IPI_EXT_INTR_RESCHED_VPE0, | ||
| 523 | .call = GIC_IPI_EXT_INTR_CALLFNC_VPE0}, | ||
| 524 | { | ||
| 525 | .resched = GIC_IPI_EXT_INTR_RESCHED_VPE1, | ||
| 526 | .call = GIC_IPI_EXT_INTR_CALLFNC_VPE1 | ||
| 527 | }, { | ||
| 528 | .resched = GIC_IPI_EXT_INTR_RESCHED_VPE2, | ||
| 529 | .call = GIC_IPI_EXT_INTR_CALLFNC_VPE2 | ||
| 530 | }, { | ||
| 531 | .resched = GIC_IPI_EXT_INTR_RESCHED_VPE3, | ||
| 532 | .call = GIC_IPI_EXT_INTR_CALLFNC_VPE3 | ||
| 533 | } | ||
| 534 | }; | ||
| 535 | fill_ipi_map(); | 537 | fill_ipi_map(); |
| 536 | gic_init(GIC_BASE_ADDR, GIC_ADDRSPACE_SZ, gic_intr_map, ARRAY_SIZE(gic_intr_map), MIPS_GIC_IRQ_BASE); | 538 | gic_init(GIC_BASE_ADDR, GIC_ADDRSPACE_SZ, gic_intr_map, ARRAY_SIZE(gic_intr_map), MIPS_GIC_IRQ_BASE); |
| 537 | if (!gcmp_present) { | 539 | if (!gcmp_present) { |
| @@ -553,12 +555,15 @@ void __init arch_init_irq(void) | |||
| 553 | printk("CPU%d: status register now %08x\n", smp_processor_id(), read_c0_status()); | 555 | printk("CPU%d: status register now %08x\n", smp_processor_id(), read_c0_status()); |
| 554 | write_c0_status(0x1100dc00); | 556 | write_c0_status(0x1100dc00); |
| 555 | printk("CPU%d: status register frc %08x\n", smp_processor_id(), read_c0_status()); | 557 | printk("CPU%d: status register frc %08x\n", smp_processor_id(), read_c0_status()); |
| 556 | for (i = 0; i < ARRAY_SIZE(ipiirq); i++) { | 558 | for (i = 0; i < NR_CPUS; i++) { |
| 557 | setup_irq(MIPS_GIC_IRQ_BASE + ipiirq[i].resched, &irq_resched); | 559 | setup_irq(MIPS_GIC_IRQ_BASE + |
| 558 | setup_irq(MIPS_GIC_IRQ_BASE + ipiirq[i].call, &irq_call); | 560 | GIC_RESCHED_INT(i), &irq_resched); |
| 559 | 561 | setup_irq(MIPS_GIC_IRQ_BASE + | |
| 560 | set_irq_handler(MIPS_GIC_IRQ_BASE + ipiirq[i].resched, handle_percpu_irq); | 562 | GIC_CALL_INT(i), &irq_call); |
| 561 | set_irq_handler(MIPS_GIC_IRQ_BASE + ipiirq[i].call, handle_percpu_irq); | 563 | set_irq_handler(MIPS_GIC_IRQ_BASE + |
| 564 | GIC_RESCHED_INT(i), handle_percpu_irq); | ||
| 565 | set_irq_handler(MIPS_GIC_IRQ_BASE + | ||
| 566 | GIC_CALL_INT(i), handle_percpu_irq); | ||
| 562 | } | 567 | } |
| 563 | } else { | 568 | } else { |
| 564 | /* set up ipi interrupts */ | 569 | /* set up ipi interrupts */ |
diff --git a/arch/mips/mti-malta/malta-reset.c b/arch/mips/mti-malta/malta-reset.c index 42dee4da37ba..f48d60e84290 100644 --- a/arch/mips/mti-malta/malta-reset.c +++ b/arch/mips/mti-malta/malta-reset.c | |||
| @@ -28,9 +28,6 @@ | |||
| 28 | #include <asm/reboot.h> | 28 | #include <asm/reboot.h> |
| 29 | #include <asm/mips-boards/generic.h> | 29 | #include <asm/mips-boards/generic.h> |
| 30 | 30 | ||
| 31 | static void mips_machine_restart(char *command); | ||
| 32 | static void mips_machine_halt(void); | ||
| 33 | |||
| 34 | static void mips_machine_restart(char *command) | 31 | static void mips_machine_restart(char *command) |
| 35 | { | 32 | { |
| 36 | unsigned int __iomem *softres_reg = | 33 | unsigned int __iomem *softres_reg = |
diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile index e8a97f59e066..63d8a297c58d 100644 --- a/arch/mips/pci/Makefile +++ b/arch/mips/pci/Makefile | |||
| @@ -52,3 +52,8 @@ obj-$(CONFIG_VICTOR_MPC30X) += fixup-mpc30x.o | |||
| 52 | obj-$(CONFIG_ZAO_CAPCELLA) += fixup-capcella.o | 52 | obj-$(CONFIG_ZAO_CAPCELLA) += fixup-capcella.o |
| 53 | obj-$(CONFIG_WR_PPMC) += fixup-wrppmc.o | 53 | obj-$(CONFIG_WR_PPMC) += fixup-wrppmc.o |
| 54 | obj-$(CONFIG_MIKROTIK_RB532) += pci-rc32434.o ops-rc32434.o fixup-rc32434.o | 54 | obj-$(CONFIG_MIKROTIK_RB532) += pci-rc32434.o ops-rc32434.o fixup-rc32434.o |
| 55 | obj-$(CONFIG_CPU_CAVIUM_OCTEON) += pci-octeon.o pcie-octeon.o | ||
| 56 | |||
| 57 | ifdef CONFIG_PCI_MSI | ||
| 58 | obj-$(CONFIG_CPU_CAVIUM_OCTEON) += msi-octeon.o | ||
| 59 | endif | ||
diff --git a/arch/mips/pci/fixup-capcella.c b/arch/mips/pci/fixup-capcella.c index 1416bca6d1a3..1c02f5737367 100644 --- a/arch/mips/pci/fixup-capcella.c +++ b/arch/mips/pci/fixup-capcella.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * fixup-cappcela.c, The ZAO Networks Capcella specific PCI fixups. | 2 | * fixup-cappcela.c, The ZAO Networks Capcella specific PCI fixups. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2002,2004 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2002,2004 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/pci/fixup-mpc30x.c b/arch/mips/pci/fixup-mpc30x.c index 591159625722..e08f49cb6875 100644 --- a/arch/mips/pci/fixup-mpc30x.c +++ b/arch/mips/pci/fixup-mpc30x.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * fixup-mpc30x.c, The Victor MP-C303/304 specific PCI fixups. | 2 | * fixup-mpc30x.c, The Victor MP-C303/304 specific PCI fixups. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2002,2004 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2002,2004 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/pci/fixup-tb0219.c b/arch/mips/pci/fixup-tb0219.c index ed87733f6796..8084b17d4406 100644 --- a/arch/mips/pci/fixup-tb0219.c +++ b/arch/mips/pci/fixup-tb0219.c | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | * fixup-tb0219.c, The TANBAC TB0219 specific PCI fixups. | 2 | * fixup-tb0219.c, The TANBAC TB0219 specific PCI fixups. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2003 Megasolution Inc. <matsu@megasolution.jp> | 4 | * Copyright (C) 2003 Megasolution Inc. <matsu@megasolution.jp> |
| 5 | * Copyright (C) 2004-2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 5 | * Copyright (C) 2004-2005 Yoichi Yuasa <yuasa@linux-mips.org> |
| 6 | * | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify | 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by | 8 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/pci/fixup-tb0226.c b/arch/mips/pci/fixup-tb0226.c index e3eedf4bf9bd..4196ccf3ea3d 100644 --- a/arch/mips/pci/fixup-tb0226.c +++ b/arch/mips/pci/fixup-tb0226.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * fixup-tb0226.c, The TANBAC TB0226 specific PCI fixups. | 2 | * fixup-tb0226.c, The TANBAC TB0226 specific PCI fixups. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2002-2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2002-2005 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/pci/fixup-tb0287.c b/arch/mips/pci/fixup-tb0287.c index 267ab3dc3d42..2fe29db43725 100644 --- a/arch/mips/pci/fixup-tb0287.c +++ b/arch/mips/pci/fixup-tb0287.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * fixup-tb0287.c, The TANBAC TB0287 specific PCI fixups. | 2 | * fixup-tb0287.c, The TANBAC TB0287 specific PCI fixups. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2005 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/cavium-octeon/msi.c b/arch/mips/pci/msi-octeon.c index 964b03b75a8f..03742e647657 100644 --- a/arch/mips/cavium-octeon/msi.c +++ b/arch/mips/pci/msi-octeon.c | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | * License. See the file "COPYING" in the main directory of this archive | 3 | * License. See the file "COPYING" in the main directory of this archive |
| 4 | * for more details. | 4 | * for more details. |
| 5 | * | 5 | * |
| 6 | * Copyright (C) 2005-2007 Cavium Networks | 6 | * Copyright (C) 2005-2009 Cavium Networks |
| 7 | */ | 7 | */ |
| 8 | #include <linux/kernel.h> | 8 | #include <linux/kernel.h> |
| 9 | #include <linux/init.h> | 9 | #include <linux/init.h> |
| @@ -16,8 +16,7 @@ | |||
| 16 | #include <asm/octeon/cvmx-pci-defs.h> | 16 | #include <asm/octeon/cvmx-pci-defs.h> |
| 17 | #include <asm/octeon/cvmx-npei-defs.h> | 17 | #include <asm/octeon/cvmx-npei-defs.h> |
| 18 | #include <asm/octeon/cvmx-pexp-defs.h> | 18 | #include <asm/octeon/cvmx-pexp-defs.h> |
| 19 | 19 | #include <asm/octeon/pci-octeon.h> | |
| 20 | #include "pci-common.h" | ||
| 21 | 20 | ||
| 22 | /* | 21 | /* |
| 23 | * Each bit in msi_free_irq_bitmask represents a MSI interrupt that is | 22 | * Each bit in msi_free_irq_bitmask represents a MSI interrupt that is |
| @@ -47,8 +46,8 @@ static DEFINE_SPINLOCK(msi_free_irq_bitmask_lock); | |||
| 47 | * programming the MSI control bits [6:4] before calling | 46 | * programming the MSI control bits [6:4] before calling |
| 48 | * pci_enable_msi(). | 47 | * pci_enable_msi(). |
| 49 | * | 48 | * |
| 50 | * @param dev Device requesting MSI interrupts | 49 | * @dev: Device requesting MSI interrupts |
| 51 | * @param desc MSI descriptor | 50 | * @desc: MSI descriptor |
| 52 | * | 51 | * |
| 53 | * Returns 0 on success. | 52 | * Returns 0 on success. |
| 54 | */ | 53 | */ |
| @@ -213,14 +212,9 @@ void arch_teardown_msi_irq(unsigned int irq) | |||
| 213 | } | 212 | } |
| 214 | 213 | ||
| 215 | 214 | ||
| 216 | /** | 215 | /* |
| 217 | * Called by the interrupt handling code when an MSI interrupt | 216 | * Called by the interrupt handling code when an MSI interrupt |
| 218 | * occurs. | 217 | * occurs. |
| 219 | * | ||
| 220 | * @param cpl | ||
| 221 | * @param dev_id | ||
| 222 | * | ||
| 223 | * @return | ||
| 224 | */ | 218 | */ |
| 225 | static irqreturn_t octeon_msi_interrupt(int cpl, void *dev_id) | 219 | static irqreturn_t octeon_msi_interrupt(int cpl, void *dev_id) |
| 226 | { | 220 | { |
| @@ -256,31 +250,37 @@ static irqreturn_t octeon_msi_interrupt(int cpl, void *dev_id) | |||
| 256 | } | 250 | } |
| 257 | 251 | ||
| 258 | 252 | ||
| 259 | /** | 253 | /* |
| 260 | * Initializes the MSI interrupt handling code | 254 | * Initializes the MSI interrupt handling code |
| 261 | * | ||
| 262 | * @return | ||
| 263 | */ | 255 | */ |
| 264 | int octeon_msi_initialize(void) | 256 | int octeon_msi_initialize(void) |
| 265 | { | 257 | { |
| 266 | int r; | ||
| 267 | if (octeon_has_feature(OCTEON_FEATURE_PCIE)) { | 258 | if (octeon_has_feature(OCTEON_FEATURE_PCIE)) { |
| 268 | r = request_irq(OCTEON_IRQ_PCI_MSI0, octeon_msi_interrupt, | 259 | if (request_irq(OCTEON_IRQ_PCI_MSI0, octeon_msi_interrupt, |
| 269 | IRQF_SHARED, | 260 | IRQF_SHARED, |
| 270 | "MSI[0:63]", octeon_msi_interrupt); | 261 | "MSI[0:63]", octeon_msi_interrupt)) |
| 262 | panic("request_irq(OCTEON_IRQ_PCI_MSI0) failed"); | ||
| 271 | } else if (octeon_is_pci_host()) { | 263 | } else if (octeon_is_pci_host()) { |
| 272 | r = request_irq(OCTEON_IRQ_PCI_MSI0, octeon_msi_interrupt, | 264 | if (request_irq(OCTEON_IRQ_PCI_MSI0, octeon_msi_interrupt, |
| 273 | IRQF_SHARED, | 265 | IRQF_SHARED, |
| 274 | "MSI[0:15]", octeon_msi_interrupt); | 266 | "MSI[0:15]", octeon_msi_interrupt)) |
| 275 | r += request_irq(OCTEON_IRQ_PCI_MSI1, octeon_msi_interrupt, | 267 | panic("request_irq(OCTEON_IRQ_PCI_MSI0) failed"); |
| 276 | IRQF_SHARED, | 268 | |
| 277 | "MSI[16:31]", octeon_msi_interrupt); | 269 | if (request_irq(OCTEON_IRQ_PCI_MSI1, octeon_msi_interrupt, |
| 278 | r += request_irq(OCTEON_IRQ_PCI_MSI2, octeon_msi_interrupt, | 270 | IRQF_SHARED, |
| 279 | IRQF_SHARED, | 271 | "MSI[16:31]", octeon_msi_interrupt)) |
| 280 | "MSI[32:47]", octeon_msi_interrupt); | 272 | panic("request_irq(OCTEON_IRQ_PCI_MSI1) failed"); |
| 281 | r += request_irq(OCTEON_IRQ_PCI_MSI3, octeon_msi_interrupt, | 273 | |
| 282 | IRQF_SHARED, | 274 | if (request_irq(OCTEON_IRQ_PCI_MSI2, octeon_msi_interrupt, |
| 283 | "MSI[48:63]", octeon_msi_interrupt); | 275 | IRQF_SHARED, |
| 276 | "MSI[32:47]", octeon_msi_interrupt)) | ||
| 277 | panic("request_irq(OCTEON_IRQ_PCI_MSI2) failed"); | ||
| 278 | |||
| 279 | if (request_irq(OCTEON_IRQ_PCI_MSI3, octeon_msi_interrupt, | ||
| 280 | IRQF_SHARED, | ||
| 281 | "MSI[48:63]", octeon_msi_interrupt)) | ||
| 282 | panic("request_irq(OCTEON_IRQ_PCI_MSI3) failed"); | ||
| 283 | |||
| 284 | } | 284 | } |
| 285 | return 0; | 285 | return 0; |
| 286 | } | 286 | } |
diff --git a/arch/mips/pci/ops-vr41xx.c b/arch/mips/pci/ops-vr41xx.c index 900c6b32576c..28962a7c6606 100644 --- a/arch/mips/pci/ops-vr41xx.c +++ b/arch/mips/pci/ops-vr41xx.c | |||
| @@ -2,8 +2,8 @@ | |||
| 2 | * ops-vr41xx.c, PCI configuration routines for the PCIU of NEC VR4100 series. | 2 | * ops-vr41xx.c, PCI configuration routines for the PCIU of NEC VR4100 series. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2001-2003 MontaVista Software Inc. | 4 | * Copyright (C) 2001-2003 MontaVista Software Inc. |
| 5 | * Author: Yoichi Yuasa <yyuasa@mvista.com or source@mvista.com> | 5 | * Author: Yoichi Yuasa <source@mvista.com> |
| 6 | * Copyright (C) 2004-2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 6 | * Copyright (C) 2004-2005 Yoichi Yuasa <yuasa@linux-mips.org> |
| 7 | * | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by | 9 | * it under the terms of the GNU General Public License as published by |
| @@ -21,7 +21,7 @@ | |||
| 21 | */ | 21 | */ |
| 22 | /* | 22 | /* |
| 23 | * Changes: | 23 | * Changes: |
| 24 | * MontaVista Software Inc. <yyuasa@mvista.com> or <source@mvista.com> | 24 | * MontaVista Software Inc. <source@mvista.com> |
| 25 | * - New creation, NEC VR4122 and VR4131 are supported. | 25 | * - New creation, NEC VR4122 and VR4131 are supported. |
| 26 | */ | 26 | */ |
| 27 | #include <linux/pci.h> | 27 | #include <linux/pci.h> |
diff --git a/arch/mips/cavium-octeon/pci.c b/arch/mips/pci/pci-octeon.c index 67c0ff5e92f1..9cb0c807f564 100644 --- a/arch/mips/cavium-octeon/pci.c +++ b/arch/mips/pci/pci-octeon.c | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | * License. See the file "COPYING" in the main directory of this archive | 3 | * License. See the file "COPYING" in the main directory of this archive |
| 4 | * for more details. | 4 | * for more details. |
| 5 | * | 5 | * |
| 6 | * Copyright (C) 2005-2007 Cavium Networks | 6 | * Copyright (C) 2005-2009 Cavium Networks |
| 7 | */ | 7 | */ |
| 8 | #include <linux/kernel.h> | 8 | #include <linux/kernel.h> |
| 9 | #include <linux/init.h> | 9 | #include <linux/init.h> |
| @@ -17,8 +17,7 @@ | |||
| 17 | #include <asm/octeon/octeon.h> | 17 | #include <asm/octeon/octeon.h> |
| 18 | #include <asm/octeon/cvmx-npi-defs.h> | 18 | #include <asm/octeon/cvmx-npi-defs.h> |
| 19 | #include <asm/octeon/cvmx-pci-defs.h> | 19 | #include <asm/octeon/cvmx-pci-defs.h> |
| 20 | 20 | #include <asm/octeon/pci-octeon.h> | |
| 21 | #include "pci-common.h" | ||
| 22 | 21 | ||
| 23 | #define USE_OCTEON_INTERNAL_ARBITER | 22 | #define USE_OCTEON_INTERNAL_ARBITER |
| 24 | 23 | ||
| @@ -54,6 +53,126 @@ union octeon_pci_address { | |||
| 54 | } s; | 53 | } s; |
| 55 | }; | 54 | }; |
| 56 | 55 | ||
| 56 | int __initdata (*octeon_pcibios_map_irq)(const struct pci_dev *dev, | ||
| 57 | u8 slot, u8 pin); | ||
| 58 | enum octeon_dma_bar_type octeon_dma_bar_type = OCTEON_DMA_BAR_TYPE_INVALID; | ||
| 59 | |||
| 60 | /** | ||
| 61 | * Map a PCI device to the appropriate interrupt line | ||
| 62 | * | ||
| 63 | * @dev: The Linux PCI device structure for the device to map | ||
| 64 | * @slot: The slot number for this device on __BUS 0__. Linux | ||
| 65 | * enumerates through all the bridges and figures out the | ||
| 66 | * slot on Bus 0 where this device eventually hooks to. | ||
| 67 | * @pin: The PCI interrupt pin read from the device, then swizzled | ||
| 68 | * as it goes through each bridge. | ||
| 69 | * Returns Interrupt number for the device | ||
| 70 | */ | ||
| 71 | int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) | ||
| 72 | { | ||
| 73 | if (octeon_pcibios_map_irq) | ||
| 74 | return octeon_pcibios_map_irq(dev, slot, pin); | ||
| 75 | else | ||
| 76 | panic("octeon_pcibios_map_irq not set."); | ||
| 77 | } | ||
| 78 | |||
| 79 | |||
| 80 | /* | ||
| 81 | * Called to perform platform specific PCI setup | ||
| 82 | */ | ||
| 83 | int pcibios_plat_dev_init(struct pci_dev *dev) | ||
| 84 | { | ||
| 85 | uint16_t config; | ||
| 86 | uint32_t dconfig; | ||
| 87 | int pos; | ||
| 88 | /* | ||
| 89 | * Force the Cache line setting to 64 bytes. The standard | ||
| 90 | * Linux bus scan doesn't seem to set it. Octeon really has | ||
| 91 | * 128 byte lines, but Intel bridges get really upset if you | ||
| 92 | * try and set values above 64 bytes. Value is specified in | ||
| 93 | * 32bit words. | ||
| 94 | */ | ||
| 95 | pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, 64 / 4); | ||
| 96 | /* Set latency timers for all devices */ | ||
| 97 | pci_write_config_byte(dev, PCI_LATENCY_TIMER, 48); | ||
| 98 | |||
| 99 | /* Enable reporting System errors and parity errors on all devices */ | ||
| 100 | /* Enable parity checking and error reporting */ | ||
| 101 | pci_read_config_word(dev, PCI_COMMAND, &config); | ||
| 102 | config |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR; | ||
| 103 | pci_write_config_word(dev, PCI_COMMAND, config); | ||
| 104 | |||
| 105 | if (dev->subordinate) { | ||
| 106 | /* Set latency timers on sub bridges */ | ||
| 107 | pci_write_config_byte(dev, PCI_SEC_LATENCY_TIMER, 48); | ||
| 108 | /* More bridge error detection */ | ||
| 109 | pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &config); | ||
| 110 | config |= PCI_BRIDGE_CTL_PARITY | PCI_BRIDGE_CTL_SERR; | ||
| 111 | pci_write_config_word(dev, PCI_BRIDGE_CONTROL, config); | ||
| 112 | } | ||
| 113 | |||
| 114 | /* Enable the PCIe normal error reporting */ | ||
| 115 | pos = pci_find_capability(dev, PCI_CAP_ID_EXP); | ||
| 116 | if (pos) { | ||
| 117 | /* Update Device Control */ | ||
| 118 | pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &config); | ||
| 119 | /* Correctable Error Reporting */ | ||
| 120 | config |= PCI_EXP_DEVCTL_CERE; | ||
| 121 | /* Non-Fatal Error Reporting */ | ||
| 122 | config |= PCI_EXP_DEVCTL_NFERE; | ||
| 123 | /* Fatal Error Reporting */ | ||
| 124 | config |= PCI_EXP_DEVCTL_FERE; | ||
| 125 | /* Unsupported Request */ | ||
| 126 | config |= PCI_EXP_DEVCTL_URRE; | ||
| 127 | pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, config); | ||
| 128 | } | ||
| 129 | |||
| 130 | /* Find the Advanced Error Reporting capability */ | ||
| 131 | pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR); | ||
| 132 | if (pos) { | ||
| 133 | /* Clear Uncorrectable Error Status */ | ||
| 134 | pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, | ||
| 135 | &dconfig); | ||
| 136 | pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, | ||
| 137 | dconfig); | ||
| 138 | /* Enable reporting of all uncorrectable errors */ | ||
| 139 | /* Uncorrectable Error Mask - turned on bits disable errors */ | ||
| 140 | pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_MASK, 0); | ||
| 141 | /* | ||
| 142 | * Leave severity at HW default. This only controls if | ||
| 143 | * errors are reported as uncorrectable or | ||
| 144 | * correctable, not if the error is reported. | ||
| 145 | */ | ||
| 146 | /* PCI_ERR_UNCOR_SEVER - Uncorrectable Error Severity */ | ||
| 147 | /* Clear Correctable Error Status */ | ||
| 148 | pci_read_config_dword(dev, pos + PCI_ERR_COR_STATUS, &dconfig); | ||
| 149 | pci_write_config_dword(dev, pos + PCI_ERR_COR_STATUS, dconfig); | ||
| 150 | /* Enable reporting of all correctable errors */ | ||
| 151 | /* Correctable Error Mask - turned on bits disable errors */ | ||
| 152 | pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, 0); | ||
| 153 | /* Advanced Error Capabilities */ | ||
| 154 | pci_read_config_dword(dev, pos + PCI_ERR_CAP, &dconfig); | ||
| 155 | /* ECRC Generation Enable */ | ||
| 156 | if (config & PCI_ERR_CAP_ECRC_GENC) | ||
| 157 | config |= PCI_ERR_CAP_ECRC_GENE; | ||
| 158 | /* ECRC Check Enable */ | ||
| 159 | if (config & PCI_ERR_CAP_ECRC_CHKC) | ||
| 160 | config |= PCI_ERR_CAP_ECRC_CHKE; | ||
| 161 | pci_write_config_dword(dev, pos + PCI_ERR_CAP, dconfig); | ||
| 162 | /* PCI_ERR_HEADER_LOG - Header Log Register (16 bytes) */ | ||
| 163 | /* Report all errors to the root complex */ | ||
| 164 | pci_write_config_dword(dev, pos + PCI_ERR_ROOT_COMMAND, | ||
| 165 | PCI_ERR_ROOT_CMD_COR_EN | | ||
| 166 | PCI_ERR_ROOT_CMD_NONFATAL_EN | | ||
| 167 | PCI_ERR_ROOT_CMD_FATAL_EN); | ||
| 168 | /* Clear the Root status register */ | ||
| 169 | pci_read_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, &dconfig); | ||
| 170 | pci_write_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, dconfig); | ||
| 171 | } | ||
| 172 | |||
| 173 | return 0; | ||
| 174 | } | ||
| 175 | |||
| 57 | /** | 176 | /** |
| 58 | * Return the mapping of PCI device number to IRQ line. Each | 177 | * Return the mapping of PCI device number to IRQ line. Each |
| 59 | * character in the return string represents the interrupt | 178 | * character in the return string represents the interrupt |
| @@ -136,9 +255,8 @@ int __init octeon_pci_pcibios_map_irq(const struct pci_dev *dev, | |||
| 136 | } | 255 | } |
| 137 | 256 | ||
| 138 | 257 | ||
| 139 | /** | 258 | /* |
| 140 | * Read a value from configuration space | 259 | * Read a value from configuration space |
| 141 | * | ||
| 142 | */ | 260 | */ |
| 143 | static int octeon_read_config(struct pci_bus *bus, unsigned int devfn, | 261 | static int octeon_read_config(struct pci_bus *bus, unsigned int devfn, |
| 144 | int reg, int size, u32 *val) | 262 | int reg, int size, u32 *val) |
| @@ -174,15 +292,8 @@ static int octeon_read_config(struct pci_bus *bus, unsigned int devfn, | |||
| 174 | } | 292 | } |
| 175 | 293 | ||
| 176 | 294 | ||
| 177 | /** | 295 | /* |
| 178 | * Write a value to PCI configuration space | 296 | * Write a value to PCI configuration space |
| 179 | * | ||
| 180 | * @bus: | ||
| 181 | * @devfn: | ||
| 182 | * @reg: | ||
| 183 | * @size: | ||
| 184 | * @val: | ||
| 185 | * Returns | ||
| 186 | */ | 297 | */ |
| 187 | static int octeon_write_config(struct pci_bus *bus, unsigned int devfn, | 298 | static int octeon_write_config(struct pci_bus *bus, unsigned int devfn, |
| 188 | int reg, int size, u32 val) | 299 | int reg, int size, u32 val) |
| @@ -251,10 +362,8 @@ static struct pci_controller octeon_pci_controller = { | |||
| 251 | }; | 362 | }; |
| 252 | 363 | ||
| 253 | 364 | ||
| 254 | /** | 365 | /* |
| 255 | * Low level initialize the Octeon PCI controller | 366 | * Low level initialize the Octeon PCI controller |
| 256 | * | ||
| 257 | * Returns | ||
| 258 | */ | 367 | */ |
| 259 | static void octeon_pci_initialize(void) | 368 | static void octeon_pci_initialize(void) |
| 260 | { | 369 | { |
| @@ -398,7 +507,7 @@ static void octeon_pci_initialize(void) | |||
| 398 | pci_int_arb_cfg.s.en = 1; /* Internal arbiter enable */ | 507 | pci_int_arb_cfg.s.en = 1; /* Internal arbiter enable */ |
| 399 | cvmx_write_csr(CVMX_NPI_PCI_INT_ARB_CFG, pci_int_arb_cfg.u64); | 508 | cvmx_write_csr(CVMX_NPI_PCI_INT_ARB_CFG, pci_int_arb_cfg.u64); |
| 400 | } | 509 | } |
| 401 | #endif /* USE_OCTEON_INTERNAL_ARBITER */ | 510 | #endif /* USE_OCTEON_INTERNAL_ARBITER */ |
| 402 | 511 | ||
| 403 | /* | 512 | /* |
| 404 | * Preferrably written to 1 to set MLTD. [RDSATI,TRTAE, | 513 | * Preferrably written to 1 to set MLTD. [RDSATI,TRTAE, |
| @@ -457,10 +566,8 @@ static void octeon_pci_initialize(void) | |||
| 457 | } | 566 | } |
| 458 | 567 | ||
| 459 | 568 | ||
| 460 | /** | 569 | /* |
| 461 | * Initialize the Octeon PCI controller | 570 | * Initialize the Octeon PCI controller |
| 462 | * | ||
| 463 | * Returns | ||
| 464 | */ | 571 | */ |
| 465 | static int __init octeon_pci_setup(void) | 572 | static int __init octeon_pci_setup(void) |
| 466 | { | 573 | { |
diff --git a/arch/mips/pci/pci-vr41xx.c b/arch/mips/pci/pci-vr41xx.c index d1e049b55f34..56525711f8b7 100644 --- a/arch/mips/pci/pci-vr41xx.c +++ b/arch/mips/pci/pci-vr41xx.c | |||
| @@ -2,8 +2,8 @@ | |||
| 2 | * pci-vr41xx.c, PCI Control Unit routines for the NEC VR4100 series. | 2 | * pci-vr41xx.c, PCI Control Unit routines for the NEC VR4100 series. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2001-2003 MontaVista Software Inc. | 4 | * Copyright (C) 2001-2003 MontaVista Software Inc. |
| 5 | * Author: Yoichi Yuasa <yyuasa@mvista.com or source@mvista.com> | 5 | * Author: Yoichi Yuasa <source@mvista.com> |
| 6 | * Copyright (C) 2004-2008 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 6 | * Copyright (C) 2004-2008 Yoichi Yuasa <yuasa@linux-mips.org> |
| 7 | * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org) | 7 | * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org) |
| 8 | * | 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify | 9 | * This program is free software; you can redistribute it and/or modify |
| @@ -22,7 +22,7 @@ | |||
| 22 | */ | 22 | */ |
| 23 | /* | 23 | /* |
| 24 | * Changes: | 24 | * Changes: |
| 25 | * MontaVista Software Inc. <yyuasa@mvista.com> or <source@mvista.com> | 25 | * MontaVista Software Inc. <source@mvista.com> |
| 26 | * - New creation, NEC VR4122 and VR4131 are supported. | 26 | * - New creation, NEC VR4122 and VR4131 are supported. |
| 27 | */ | 27 | */ |
| 28 | #include <linux/init.h> | 28 | #include <linux/init.h> |
diff --git a/arch/mips/pci/pci-vr41xx.h b/arch/mips/pci/pci-vr41xx.h index 8a35e32b8376..6b1ae2eb1c06 100644 --- a/arch/mips/pci/pci-vr41xx.h +++ b/arch/mips/pci/pci-vr41xx.h | |||
| @@ -2,8 +2,8 @@ | |||
| 2 | * pci-vr41xx.h, Include file for PCI Control Unit of the NEC VR4100 series. | 2 | * pci-vr41xx.h, Include file for PCI Control Unit of the NEC VR4100 series. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2002 MontaVista Software Inc. | 4 | * Copyright (C) 2002 MontaVista Software Inc. |
| 5 | * Author: Yoichi Yuasa <yyuasa@mvista.com or source@mvista.com> | 5 | * Author: Yoichi Yuasa <source@mvista.com> |
| 6 | * Copyright (C) 2004-2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 6 | * Copyright (C) 2004-2005 Yoichi Yuasa <yuasa@linux-mips.org> |
| 7 | * | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by | 9 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/cavium-octeon/pcie.c b/arch/mips/pci/pcie-octeon.c index 49d14081b3b5..75262247f3e4 100644 --- a/arch/mips/cavium-octeon/pcie.c +++ b/arch/mips/pci/pcie-octeon.c | |||
| @@ -18,8 +18,7 @@ | |||
| 18 | #include <asm/octeon/cvmx-pescx-defs.h> | 18 | #include <asm/octeon/cvmx-pescx-defs.h> |
| 19 | #include <asm/octeon/cvmx-pexp-defs.h> | 19 | #include <asm/octeon/cvmx-pexp-defs.h> |
| 20 | #include <asm/octeon/cvmx-helper-errata.h> | 20 | #include <asm/octeon/cvmx-helper-errata.h> |
| 21 | 21 | #include <asm/octeon/pci-octeon.h> | |
| 22 | #include "pci-common.h" | ||
| 23 | 22 | ||
| 24 | union cvmx_pcie_address { | 23 | union cvmx_pcie_address { |
| 25 | uint64_t u64; | 24 | uint64_t u64; |
| @@ -976,13 +975,13 @@ static int cvmx_pcie_rc_initialize(int pcie_port) | |||
| 976 | /** | 975 | /** |
| 977 | * Map a PCI device to the appropriate interrupt line | 976 | * Map a PCI device to the appropriate interrupt line |
| 978 | * | 977 | * |
| 979 | * @param dev The Linux PCI device structure for the device to map | 978 | * @dev: The Linux PCI device structure for the device to map |
| 980 | * @param slot The slot number for this device on __BUS 0__. Linux | 979 | * @slot: The slot number for this device on __BUS 0__. Linux |
| 981 | * enumerates through all the bridges and figures out the | 980 | * enumerates through all the bridges and figures out the |
| 982 | * slot on Bus 0 where this device eventually hooks to. | 981 | * slot on Bus 0 where this device eventually hooks to. |
| 983 | * @param pin The PCI interrupt pin read from the device, then swizzled | 982 | * @pin: The PCI interrupt pin read from the device, then swizzled |
| 984 | * as it goes through each bridge. | 983 | * as it goes through each bridge. |
| 985 | * @return Interrupt number for the device | 984 | * Returns Interrupt number for the device |
| 986 | */ | 985 | */ |
| 987 | int __init octeon_pcie_pcibios_map_irq(const struct pci_dev *dev, | 986 | int __init octeon_pcie_pcibios_map_irq(const struct pci_dev *dev, |
| 988 | u8 slot, u8 pin) | 987 | u8 slot, u8 pin) |
| @@ -1025,12 +1024,12 @@ int __init octeon_pcie_pcibios_map_irq(const struct pci_dev *dev, | |||
| 1025 | /** | 1024 | /** |
| 1026 | * Read a value from configuration space | 1025 | * Read a value from configuration space |
| 1027 | * | 1026 | * |
| 1028 | * @param bus | 1027 | * @bus: |
| 1029 | * @param devfn | 1028 | * @devfn: |
| 1030 | * @param reg | 1029 | * @reg: |
| 1031 | * @param size | 1030 | * @size: |
| 1032 | * @param val | 1031 | * @val: |
| 1033 | * @return | 1032 | * Returns |
| 1034 | */ | 1033 | */ |
| 1035 | static inline int octeon_pcie_read_config(int pcie_port, struct pci_bus *bus, | 1034 | static inline int octeon_pcie_read_config(int pcie_port, struct pci_bus *bus, |
| 1036 | unsigned int devfn, int reg, int size, | 1035 | unsigned int devfn, int reg, int size, |
| @@ -1156,12 +1155,12 @@ static int octeon_pcie1_read_config(struct pci_bus *bus, unsigned int devfn, | |||
| 1156 | /** | 1155 | /** |
| 1157 | * Write a value to PCI configuration space | 1156 | * Write a value to PCI configuration space |
| 1158 | * | 1157 | * |
| 1159 | * @param bus | 1158 | * @bus: |
| 1160 | * @param devfn | 1159 | * @devfn: |
| 1161 | * @param reg | 1160 | * @reg: |
| 1162 | * @param size | 1161 | * @size: |
| 1163 | * @param val | 1162 | * @val: |
| 1164 | * @return | 1163 | * Returns |
| 1165 | */ | 1164 | */ |
| 1166 | static inline int octeon_pcie_write_config(int pcie_port, struct pci_bus *bus, | 1165 | static inline int octeon_pcie_write_config(int pcie_port, struct pci_bus *bus, |
| 1167 | unsigned int devfn, int reg, | 1166 | unsigned int devfn, int reg, |
| @@ -1254,7 +1253,7 @@ static struct pci_controller octeon_pcie1_controller = { | |||
| 1254 | /** | 1253 | /** |
| 1255 | * Initialize the Octeon PCIe controllers | 1254 | * Initialize the Octeon PCIe controllers |
| 1256 | * | 1255 | * |
| 1257 | * @return | 1256 | * Returns |
| 1258 | */ | 1257 | */ |
| 1259 | static int __init octeon_pcie_setup(void) | 1258 | static int __init octeon_pcie_setup(void) |
| 1260 | { | 1259 | { |
diff --git a/arch/mips/vr41xx/casio-e55/setup.c b/arch/mips/vr41xx/casio-e55/setup.c index 6d9bab890587..719f4a5b9844 100644 --- a/arch/mips/vr41xx/casio-e55/setup.c +++ b/arch/mips/vr41xx/casio-e55/setup.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * setup.c, Setup for the CASIO CASSIOPEIA E-11/15/55/65. | 2 | * setup.c, Setup for the CASIO CASSIOPEIA E-11/15/55/65. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2002-2006 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2002-2006 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/vr41xx/common/bcu.c b/arch/mips/vr41xx/common/bcu.c index d77c330a0d59..6346c59c9f9d 100644 --- a/arch/mips/vr41xx/common/bcu.c +++ b/arch/mips/vr41xx/common/bcu.c | |||
| @@ -2,8 +2,8 @@ | |||
| 2 | * bcu.c, Bus Control Unit routines for the NEC VR4100 series. | 2 | * bcu.c, Bus Control Unit routines for the NEC VR4100 series. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2002 MontaVista Software Inc. | 4 | * Copyright (C) 2002 MontaVista Software Inc. |
| 5 | * Author: Yoichi Yuasa <yyuasa@mvista.com, or source@mvista.com> | 5 | * Author: Yoichi Yuasa <source@mvista.com> |
| 6 | * Copyright (C) 2003-2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 6 | * Copyright (C) 2003-2005 Yoichi Yuasa <yuasa@linux-mips.org> |
| 7 | * | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by | 9 | * it under the terms of the GNU General Public License as published by |
| @@ -21,11 +21,11 @@ | |||
| 21 | */ | 21 | */ |
| 22 | /* | 22 | /* |
| 23 | * Changes: | 23 | * Changes: |
| 24 | * MontaVista Software Inc. <yyuasa@mvista.com> or <source@mvista.com> | 24 | * MontaVista Software Inc. <source@mvista.com> |
| 25 | * - New creation, NEC VR4122 and VR4131 are supported. | 25 | * - New creation, NEC VR4122 and VR4131 are supported. |
| 26 | * - Added support for NEC VR4111 and VR4121. | 26 | * - Added support for NEC VR4111 and VR4121. |
| 27 | * | 27 | * |
| 28 | * Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 28 | * Yoichi Yuasa <yuasa@linux-mips.org> |
| 29 | * - Added support for NEC VR4133. | 29 | * - Added support for NEC VR4133. |
| 30 | */ | 30 | */ |
| 31 | #include <linux/kernel.h> | 31 | #include <linux/kernel.h> |
diff --git a/arch/mips/vr41xx/common/cmu.c b/arch/mips/vr41xx/common/cmu.c index ad0e8e3409d9..8ba7d04a5ec5 100644 --- a/arch/mips/vr41xx/common/cmu.c +++ b/arch/mips/vr41xx/common/cmu.c | |||
| @@ -2,8 +2,8 @@ | |||
| 2 | * cmu.c, Clock Mask Unit routines for the NEC VR4100 series. | 2 | * cmu.c, Clock Mask Unit routines for the NEC VR4100 series. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2001-2002 MontaVista Software Inc. | 4 | * Copyright (C) 2001-2002 MontaVista Software Inc. |
| 5 | * Author: Yoichi Yuasa <yyuasa@mvista.com or source@mvista.com> | 5 | * Author: Yoichi Yuasa <source@mvista.com> |
| 6 | * Copuright (C) 2003-2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 6 | * Copuright (C) 2003-2005 Yoichi Yuasa <yuasa@linux-mips.org> |
| 7 | * | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by | 9 | * it under the terms of the GNU General Public License as published by |
| @@ -21,11 +21,11 @@ | |||
| 21 | */ | 21 | */ |
| 22 | /* | 22 | /* |
| 23 | * Changes: | 23 | * Changes: |
| 24 | * MontaVista Software Inc. <yyuasa@mvista.com> or <source@mvista.com> | 24 | * MontaVista Software Inc. <source@mvista.com> |
| 25 | * - New creation, NEC VR4122 and VR4131 are supported. | 25 | * - New creation, NEC VR4122 and VR4131 are supported. |
| 26 | * - Added support for NEC VR4111 and VR4121. | 26 | * - Added support for NEC VR4111 and VR4121. |
| 27 | * | 27 | * |
| 28 | * Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 28 | * Yoichi Yuasa <yuasa@linux-mips.org> |
| 29 | * - Added support for NEC VR4133. | 29 | * - Added support for NEC VR4133. |
| 30 | */ | 30 | */ |
| 31 | #include <linux/init.h> | 31 | #include <linux/init.h> |
diff --git a/arch/mips/vr41xx/common/giu.c b/arch/mips/vr41xx/common/giu.c index 2b272f1496fe..22cc6f2100a1 100644 --- a/arch/mips/vr41xx/common/giu.c +++ b/arch/mips/vr41xx/common/giu.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * NEC VR4100 series GIU platform device. | 2 | * NEC VR4100 series GIU platform device. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/vr41xx/common/icu.c b/arch/mips/vr41xx/common/icu.c index 3f23d9fda662..6d39e222b170 100644 --- a/arch/mips/vr41xx/common/icu.c +++ b/arch/mips/vr41xx/common/icu.c | |||
| @@ -2,8 +2,8 @@ | |||
| 2 | * icu.c, Interrupt Control Unit routines for the NEC VR4100 series. | 2 | * icu.c, Interrupt Control Unit routines for the NEC VR4100 series. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2001-2002 MontaVista Software Inc. | 4 | * Copyright (C) 2001-2002 MontaVista Software Inc. |
| 5 | * Author: Yoichi Yuasa <yyuasa@mvista.com or source@mvista.com> | 5 | * Author: Yoichi Yuasa <source@mvista.com> |
| 6 | * Copyright (C) 2003-2006 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 6 | * Copyright (C) 2003-2006 Yoichi Yuasa <yuasa@linux-mips.org> |
| 7 | * | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by | 9 | * it under the terms of the GNU General Public License as published by |
| @@ -21,11 +21,11 @@ | |||
| 21 | */ | 21 | */ |
| 22 | /* | 22 | /* |
| 23 | * Changes: | 23 | * Changes: |
| 24 | * MontaVista Software Inc. <yyuasa@mvista.com> or <source@mvista.com> | 24 | * MontaVista Software Inc. <source@mvista.com> |
| 25 | * - New creation, NEC VR4122 and VR4131 are supported. | 25 | * - New creation, NEC VR4122 and VR4131 are supported. |
| 26 | * - Added support for NEC VR4111 and VR4121. | 26 | * - Added support for NEC VR4111 and VR4121. |
| 27 | * | 27 | * |
| 28 | * Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 28 | * Yoichi Yuasa <yuasa@linux-mips.org> |
| 29 | * - Coped with INTASSIGN of NEC VR4133. | 29 | * - Coped with INTASSIGN of NEC VR4133. |
| 30 | */ | 30 | */ |
| 31 | #include <linux/errno.h> | 31 | #include <linux/errno.h> |
diff --git a/arch/mips/vr41xx/common/init.c b/arch/mips/vr41xx/common/init.c index c64995342ba8..1386e6f081c8 100644 --- a/arch/mips/vr41xx/common/init.c +++ b/arch/mips/vr41xx/common/init.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * init.c, Common initialization routines for NEC VR4100 series. | 2 | * init.c, Common initialization routines for NEC VR4100 series. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2003-2008 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2003-2008 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/vr41xx/common/irq.c b/arch/mips/vr41xx/common/irq.c index 9cc389109b19..bef06872f012 100644 --- a/arch/mips/vr41xx/common/irq.c +++ b/arch/mips/vr41xx/common/irq.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Interrupt handing routines for NEC VR4100 series. | 2 | * Interrupt handing routines for NEC VR4100 series. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2005-2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2005-2007 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/vr41xx/common/pmu.c b/arch/mips/vr41xx/common/pmu.c index 028aaf75eb21..692b4e85b7fc 100644 --- a/arch/mips/vr41xx/common/pmu.c +++ b/arch/mips/vr41xx/common/pmu.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * pmu.c, Power Management Unit routines for NEC VR4100 series. | 2 | * pmu.c, Power Management Unit routines for NEC VR4100 series. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2003-2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2003-2007 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/vr41xx/common/rtc.c b/arch/mips/vr41xx/common/rtc.c index 9f26c14edcac..ebc5dcf0ed8e 100644 --- a/arch/mips/vr41xx/common/rtc.c +++ b/arch/mips/vr41xx/common/rtc.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * NEC VR4100 series RTC platform device. | 2 | * NEC VR4100 series RTC platform device. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/vr41xx/common/siu.c b/arch/mips/vr41xx/common/siu.c index 654dee6208be..54eae56108fb 100644 --- a/arch/mips/vr41xx/common/siu.c +++ b/arch/mips/vr41xx/common/siu.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * NEC VR4100 series SIU platform device. | 2 | * NEC VR4100 series SIU platform device. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2007-2008 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2007-2008 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/vr41xx/common/type.c b/arch/mips/vr41xx/common/type.c index e0c1ac5e988e..ff841422b638 100644 --- a/arch/mips/vr41xx/common/type.c +++ b/arch/mips/vr41xx/common/type.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * type.c, System type for NEC VR4100 series. | 2 | * type.c, System type for NEC VR4100 series. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2005 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/vr41xx/ibm-workpad/setup.c b/arch/mips/vr41xx/ibm-workpad/setup.c index 9eef297eca1a..3982f378a3e6 100644 --- a/arch/mips/vr41xx/ibm-workpad/setup.c +++ b/arch/mips/vr41xx/ibm-workpad/setup.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * setup.c, Setup for the IBM WorkPad z50. | 2 | * setup.c, Setup for the IBM WorkPad z50. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2002-2006 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2002-2006 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index 0bd01f49cfd8..6a06913b01d3 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig | |||
| @@ -1029,10 +1029,6 @@ config CS5535_GPIO | |||
| 1029 | 1029 | ||
| 1030 | If compiled as a module, it will be called cs5535_gpio. | 1030 | If compiled as a module, it will be called cs5535_gpio. |
| 1031 | 1031 | ||
| 1032 | config GPIO_VR41XX | ||
| 1033 | tristate "NEC VR4100 series General-purpose I/O Unit support" | ||
| 1034 | depends on CPU_VR41XX | ||
| 1035 | |||
| 1036 | config RAW_DRIVER | 1032 | config RAW_DRIVER |
| 1037 | tristate "RAW driver (/dev/raw/rawN)" | 1033 | tristate "RAW driver (/dev/raw/rawN)" |
| 1038 | depends on BLOCK | 1034 | depends on BLOCK |
diff --git a/drivers/char/Makefile b/drivers/char/Makefile index 189efcff08ce..66f779ad4f4c 100644 --- a/drivers/char/Makefile +++ b/drivers/char/Makefile | |||
| @@ -95,7 +95,6 @@ obj-$(CONFIG_SCx200_GPIO) += scx200_gpio.o | |||
| 95 | obj-$(CONFIG_PC8736x_GPIO) += pc8736x_gpio.o | 95 | obj-$(CONFIG_PC8736x_GPIO) += pc8736x_gpio.o |
| 96 | obj-$(CONFIG_NSC_GPIO) += nsc_gpio.o | 96 | obj-$(CONFIG_NSC_GPIO) += nsc_gpio.o |
| 97 | obj-$(CONFIG_CS5535_GPIO) += cs5535_gpio.o | 97 | obj-$(CONFIG_CS5535_GPIO) += cs5535_gpio.o |
| 98 | obj-$(CONFIG_GPIO_VR41XX) += vr41xx_giu.o | ||
| 99 | obj-$(CONFIG_GPIO_TB0219) += tb0219.o | 98 | obj-$(CONFIG_GPIO_TB0219) += tb0219.o |
| 100 | obj-$(CONFIG_TELCLOCK) += tlclk.o | 99 | obj-$(CONFIG_TELCLOCK) += tlclk.o |
| 101 | 100 | ||
diff --git a/drivers/char/tb0219.c b/drivers/char/tb0219.c index 6062b62800fd..b3ec9b10e292 100644 --- a/drivers/char/tb0219.c +++ b/drivers/char/tb0219.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Driver for TANBAC TB0219 base board. | 2 | * Driver for TANBAC TB0219 base board. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2005 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
| @@ -28,7 +28,7 @@ | |||
| 28 | #include <asm/vr41xx/giu.h> | 28 | #include <asm/vr41xx/giu.h> |
| 29 | #include <asm/vr41xx/tb0219.h> | 29 | #include <asm/vr41xx/tb0219.h> |
| 30 | 30 | ||
| 31 | MODULE_AUTHOR("Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>"); | 31 | MODULE_AUTHOR("Yoichi Yuasa <yuasa@linux-mips.org>"); |
| 32 | MODULE_DESCRIPTION("TANBAC TB0219 base board driver"); | 32 | MODULE_DESCRIPTION("TANBAC TB0219 base board driver"); |
| 33 | MODULE_LICENSE("GPL"); | 33 | MODULE_LICENSE("GPL"); |
| 34 | 34 | ||
diff --git a/drivers/char/vr41xx_giu.c b/drivers/char/vr41xx_giu.c index 54c837288d19..e69de29bb2d1 100644 --- a/drivers/char/vr41xx_giu.c +++ b/drivers/char/vr41xx_giu.c | |||
| @@ -1,680 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Driver for NEC VR4100 series General-purpose I/O Unit. | ||
| 3 | * | ||
| 4 | * Copyright (C) 2002 MontaVista Software Inc. | ||
| 5 | * Author: Yoichi Yuasa <yyuasa@mvista.com or source@mvista.com> | ||
| 6 | * Copyright (C) 2003-2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License as published by | ||
| 10 | * the Free Software Foundation; either version 2 of the License, or | ||
| 11 | * (at your option) any later version. | ||
| 12 | * | ||
| 13 | * This program is distributed in the hope that it will be useful, | ||
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | * GNU General Public License for more details. | ||
| 17 | * | ||
| 18 | * You should have received a copy of the GNU General Public License | ||
| 19 | * along with this program; if not, write to the Free Software | ||
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 21 | */ | ||
| 22 | #include <linux/errno.h> | ||
| 23 | #include <linux/fs.h> | ||
| 24 | #include <linux/init.h> | ||
| 25 | #include <linux/interrupt.h> | ||
| 26 | #include <linux/irq.h> | ||
| 27 | #include <linux/kernel.h> | ||
| 28 | #include <linux/module.h> | ||
| 29 | #include <linux/platform_device.h> | ||
| 30 | #include <linux/smp_lock.h> | ||
| 31 | #include <linux/spinlock.h> | ||
| 32 | #include <linux/types.h> | ||
| 33 | |||
| 34 | #include <asm/io.h> | ||
| 35 | #include <asm/vr41xx/giu.h> | ||
| 36 | #include <asm/vr41xx/irq.h> | ||
| 37 | #include <asm/vr41xx/vr41xx.h> | ||
| 38 | |||
| 39 | MODULE_AUTHOR("Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>"); | ||
| 40 | MODULE_DESCRIPTION("NEC VR4100 series General-purpose I/O Unit driver"); | ||
| 41 | MODULE_LICENSE("GPL"); | ||
| 42 | |||
| 43 | static int major; /* default is dynamic major device number */ | ||
| 44 | module_param(major, int, 0); | ||
| 45 | MODULE_PARM_DESC(major, "Major device number"); | ||
| 46 | |||
| 47 | #define GIUIOSELL 0x00 | ||
| 48 | #define GIUIOSELH 0x02 | ||
| 49 | #define GIUPIODL 0x04 | ||
| 50 | #define GIUPIODH 0x06 | ||
| 51 | #define GIUINTSTATL 0x08 | ||
| 52 | #define GIUINTSTATH 0x0a | ||
| 53 | #define GIUINTENL 0x0c | ||
| 54 | #define GIUINTENH 0x0e | ||
| 55 | #define GIUINTTYPL 0x10 | ||
| 56 | #define GIUINTTYPH 0x12 | ||
| 57 | #define GIUINTALSELL 0x14 | ||
| 58 | #define GIUINTALSELH 0x16 | ||
| 59 | #define GIUINTHTSELL 0x18 | ||
| 60 | #define GIUINTHTSELH 0x1a | ||
| 61 | #define GIUPODATL 0x1c | ||
| 62 | #define GIUPODATEN 0x1c | ||
| 63 | #define GIUPODATH 0x1e | ||
| 64 | #define PIOEN0 0x0100 | ||
| 65 | #define PIOEN1 0x0200 | ||
| 66 | #define GIUPODAT 0x1e | ||
| 67 | #define GIUFEDGEINHL 0x20 | ||
| 68 | #define GIUFEDGEINHH 0x22 | ||
| 69 | #define GIUREDGEINHL 0x24 | ||
| 70 | #define GIUREDGEINHH 0x26 | ||
| 71 | |||
| 72 | #define GIUUSEUPDN 0x1e0 | ||
| 73 | #define GIUTERMUPDN 0x1e2 | ||
| 74 | |||
| 75 | #define GPIO_HAS_PULLUPDOWN_IO 0x0001 | ||
| 76 | #define GPIO_HAS_OUTPUT_ENABLE 0x0002 | ||
| 77 | #define GPIO_HAS_INTERRUPT_EDGE_SELECT 0x0100 | ||
| 78 | |||
| 79 | static spinlock_t giu_lock; | ||
| 80 | static unsigned long giu_flags; | ||
| 81 | static unsigned int giu_nr_pins; | ||
| 82 | |||
| 83 | static void __iomem *giu_base; | ||
| 84 | |||
| 85 | #define giu_read(offset) readw(giu_base + (offset)) | ||
| 86 | #define giu_write(offset, value) writew((value), giu_base + (offset)) | ||
| 87 | |||
| 88 | #define GPIO_PIN_OF_IRQ(irq) ((irq) - GIU_IRQ_BASE) | ||
| 89 | #define GIUINT_HIGH_OFFSET 16 | ||
| 90 | #define GIUINT_HIGH_MAX 32 | ||
| 91 | |||
| 92 | static inline uint16_t giu_set(uint16_t offset, uint16_t set) | ||
| 93 | { | ||
| 94 | uint16_t data; | ||
| 95 | |||
| 96 | data = giu_read(offset); | ||
| 97 | data |= set; | ||
| 98 | giu_write(offset, data); | ||
| 99 | |||
| 100 | return data; | ||
| 101 | } | ||
| 102 | |||
| 103 | static inline uint16_t giu_clear(uint16_t offset, uint16_t clear) | ||
| 104 | { | ||
| 105 | uint16_t data; | ||
| 106 | |||
| 107 | data = giu_read(offset); | ||
| 108 | data &= ~clear; | ||
| 109 | giu_write(offset, data); | ||
| 110 | |||
| 111 | return data; | ||
| 112 | } | ||
| 113 | |||
| 114 | static void ack_giuint_low(unsigned int irq) | ||
| 115 | { | ||
| 116 | giu_write(GIUINTSTATL, 1 << GPIO_PIN_OF_IRQ(irq)); | ||
| 117 | } | ||
| 118 | |||
| 119 | static void mask_giuint_low(unsigned int irq) | ||
| 120 | { | ||
| 121 | giu_clear(GIUINTENL, 1 << GPIO_PIN_OF_IRQ(irq)); | ||
| 122 | } | ||
| 123 | |||
| 124 | static void mask_ack_giuint_low(unsigned int irq) | ||
| 125 | { | ||
| 126 | unsigned int pin; | ||
| 127 | |||
| 128 | pin = GPIO_PIN_OF_IRQ(irq); | ||
| 129 | giu_clear(GIUINTENL, 1 << pin); | ||
| 130 | giu_write(GIUINTSTATL, 1 << pin); | ||
| 131 | } | ||
| 132 | |||
| 133 | static void unmask_giuint_low(unsigned int irq) | ||
| 134 | { | ||
| 135 | giu_set(GIUINTENL, 1 << GPIO_PIN_OF_IRQ(irq)); | ||
| 136 | } | ||
| 137 | |||
| 138 | static struct irq_chip giuint_low_irq_chip = { | ||
| 139 | .name = "GIUINTL", | ||
| 140 | .ack = ack_giuint_low, | ||
| 141 | .mask = mask_giuint_low, | ||
| 142 | .mask_ack = mask_ack_giuint_low, | ||
| 143 | .unmask = unmask_giuint_low, | ||
| 144 | }; | ||
| 145 | |||
| 146 | static void ack_giuint_high(unsigned int irq) | ||
| 147 | { | ||
| 148 | giu_write(GIUINTSTATH, 1 << (GPIO_PIN_OF_IRQ(irq) - GIUINT_HIGH_OFFSET)); | ||
| 149 | } | ||
| 150 | |||
| 151 | static void mask_giuint_high(unsigned int irq) | ||
| 152 | { | ||
| 153 | giu_clear(GIUINTENH, 1 << (GPIO_PIN_OF_IRQ(irq) - GIUINT_HIGH_OFFSET)); | ||
| 154 | } | ||
| 155 | |||
| 156 | static void mask_ack_giuint_high(unsigned int irq) | ||
| 157 | { | ||
| 158 | unsigned int pin; | ||
| 159 | |||
| 160 | pin = GPIO_PIN_OF_IRQ(irq) - GIUINT_HIGH_OFFSET; | ||
| 161 | giu_clear(GIUINTENH, 1 << pin); | ||
| 162 | giu_write(GIUINTSTATH, 1 << pin); | ||
| 163 | } | ||
| 164 | |||
| 165 | static void unmask_giuint_high(unsigned int irq) | ||
| 166 | { | ||
| 167 | giu_set(GIUINTENH, 1 << (GPIO_PIN_OF_IRQ(irq) - GIUINT_HIGH_OFFSET)); | ||
| 168 | } | ||
| 169 | |||
| 170 | static struct irq_chip giuint_high_irq_chip = { | ||
| 171 | .name = "GIUINTH", | ||
| 172 | .ack = ack_giuint_high, | ||
| 173 | .mask = mask_giuint_high, | ||
| 174 | .mask_ack = mask_ack_giuint_high, | ||
| 175 | .unmask = unmask_giuint_high, | ||
| 176 | }; | ||
| 177 | |||
| 178 | static int giu_get_irq(unsigned int irq) | ||
| 179 | { | ||
| 180 | uint16_t pendl, pendh, maskl, maskh; | ||
| 181 | int i; | ||
| 182 | |||
| 183 | pendl = giu_read(GIUINTSTATL); | ||
| 184 | pendh = giu_read(GIUINTSTATH); | ||
| 185 | maskl = giu_read(GIUINTENL); | ||
| 186 | maskh = giu_read(GIUINTENH); | ||
| 187 | |||
| 188 | maskl &= pendl; | ||
| 189 | maskh &= pendh; | ||
| 190 | |||
| 191 | if (maskl) { | ||
| 192 | for (i = 0; i < 16; i++) { | ||
| 193 | if (maskl & (1 << i)) | ||
| 194 | return GIU_IRQ(i); | ||
| 195 | } | ||
| 196 | } else if (maskh) { | ||
| 197 | for (i = 0; i < 16; i++) { | ||
| 198 | if (maskh & (1 << i)) | ||
| 199 | return GIU_IRQ(i + GIUINT_HIGH_OFFSET); | ||
| 200 | } | ||
| 201 | } | ||
| 202 | |||
| 203 | printk(KERN_ERR "spurious GIU interrupt: %04x(%04x),%04x(%04x)\n", | ||
| 204 | maskl, pendl, maskh, pendh); | ||
| 205 | |||
| 206 | atomic_inc(&irq_err_count); | ||
| 207 | |||
| 208 | return -EINVAL; | ||
| 209 | } | ||
| 210 | |||
| 211 | void vr41xx_set_irq_trigger(unsigned int pin, irq_trigger_t trigger, irq_signal_t signal) | ||
| 212 | { | ||
| 213 | uint16_t mask; | ||
| 214 | |||
| 215 | if (pin < GIUINT_HIGH_OFFSET) { | ||
| 216 | mask = 1 << pin; | ||
| 217 | if (trigger != IRQ_TRIGGER_LEVEL) { | ||
| 218 | giu_set(GIUINTTYPL, mask); | ||
| 219 | if (signal == IRQ_SIGNAL_HOLD) | ||
| 220 | giu_set(GIUINTHTSELL, mask); | ||
| 221 | else | ||
| 222 | giu_clear(GIUINTHTSELL, mask); | ||
| 223 | if (giu_flags & GPIO_HAS_INTERRUPT_EDGE_SELECT) { | ||
| 224 | switch (trigger) { | ||
| 225 | case IRQ_TRIGGER_EDGE_FALLING: | ||
| 226 | giu_set(GIUFEDGEINHL, mask); | ||
| 227 | giu_clear(GIUREDGEINHL, mask); | ||
| 228 | break; | ||
| 229 | case IRQ_TRIGGER_EDGE_RISING: | ||
| 230 | giu_clear(GIUFEDGEINHL, mask); | ||
| 231 | giu_set(GIUREDGEINHL, mask); | ||
| 232 | break; | ||
| 233 | default: | ||
| 234 | giu_set(GIUFEDGEINHL, mask); | ||
| 235 | giu_set(GIUREDGEINHL, mask); | ||
| 236 | break; | ||
| 237 | } | ||
| 238 | } | ||
| 239 | set_irq_chip_and_handler(GIU_IRQ(pin), | ||
| 240 | &giuint_low_irq_chip, | ||
| 241 | handle_edge_irq); | ||
| 242 | } else { | ||
| 243 | giu_clear(GIUINTTYPL, mask); | ||
| 244 | giu_clear(GIUINTHTSELL, mask); | ||
| 245 | set_irq_chip_and_handler(GIU_IRQ(pin), | ||
| 246 | &giuint_low_irq_chip, | ||
| 247 | handle_level_irq); | ||
| 248 | } | ||
| 249 | giu_write(GIUINTSTATL, mask); | ||
| 250 | } else if (pin < GIUINT_HIGH_MAX) { | ||
| 251 | mask = 1 << (pin - GIUINT_HIGH_OFFSET); | ||
| 252 | if (trigger != IRQ_TRIGGER_LEVEL) { | ||
| 253 | giu_set(GIUINTTYPH, mask); | ||
| 254 | if (signal == IRQ_SIGNAL_HOLD) | ||
| 255 | giu_set(GIUINTHTSELH, mask); | ||
| 256 | else | ||
| 257 | giu_clear(GIUINTHTSELH, mask); | ||
| 258 | if (giu_flags & GPIO_HAS_INTERRUPT_EDGE_SELECT) { | ||
| 259 | switch (trigger) { | ||
| 260 | case IRQ_TRIGGER_EDGE_FALLING: | ||
| 261 | giu_set(GIUFEDGEINHH, mask); | ||
| 262 | giu_clear(GIUREDGEINHH, mask); | ||
| 263 | break; | ||
| 264 | case IRQ_TRIGGER_EDGE_RISING: | ||
| 265 | giu_clear(GIUFEDGEINHH, mask); | ||
| 266 | giu_set(GIUREDGEINHH, mask); | ||
| 267 | break; | ||
| 268 | default: | ||
| 269 | giu_set(GIUFEDGEINHH, mask); | ||
| 270 | giu_set(GIUREDGEINHH, mask); | ||
| 271 | break; | ||
| 272 | } | ||
| 273 | } | ||
| 274 | set_irq_chip_and_handler(GIU_IRQ(pin), | ||
| 275 | &giuint_high_irq_chip, | ||
| 276 | handle_edge_irq); | ||
| 277 | } else { | ||
| 278 | giu_clear(GIUINTTYPH, mask); | ||
| 279 | giu_clear(GIUINTHTSELH, mask); | ||
| 280 | set_irq_chip_and_handler(GIU_IRQ(pin), | ||
| 281 | &giuint_high_irq_chip, | ||
| 282 | handle_level_irq); | ||
| 283 | } | ||
| 284 | giu_write(GIUINTSTATH, mask); | ||
| 285 | } | ||
| 286 | } | ||
| 287 | EXPORT_SYMBOL_GPL(vr41xx_set_irq_trigger); | ||
| 288 | |||
| 289 | void vr41xx_set_irq_level(unsigned int pin, irq_level_t level) | ||
| 290 | { | ||
| 291 | uint16_t mask; | ||
| 292 | |||
| 293 | if (pin < GIUINT_HIGH_OFFSET) { | ||
| 294 | mask = 1 << pin; | ||
| 295 | if (level == IRQ_LEVEL_HIGH) | ||
| 296 | giu_set(GIUINTALSELL, mask); | ||
| 297 | else | ||
| 298 | giu_clear(GIUINTALSELL, mask); | ||
| 299 | giu_write(GIUINTSTATL, mask); | ||
| 300 | } else if (pin < GIUINT_HIGH_MAX) { | ||
| 301 | mask = 1 << (pin - GIUINT_HIGH_OFFSET); | ||
| 302 | if (level == IRQ_LEVEL_HIGH) | ||
| 303 | giu_set(GIUINTALSELH, mask); | ||
| 304 | else | ||
| 305 | giu_clear(GIUINTALSELH, mask); | ||
| 306 | giu_write(GIUINTSTATH, mask); | ||
| 307 | } | ||
| 308 | } | ||
| 309 | EXPORT_SYMBOL_GPL(vr41xx_set_irq_level); | ||
| 310 | |||
| 311 | gpio_data_t vr41xx_gpio_get_pin(unsigned int pin) | ||
| 312 | { | ||
| 313 | uint16_t reg, mask; | ||
| 314 | |||
| 315 | if (pin >= giu_nr_pins) | ||
| 316 | return GPIO_DATA_INVAL; | ||
| 317 | |||
| 318 | if (pin < 16) { | ||
| 319 | reg = giu_read(GIUPIODL); | ||
| 320 | mask = (uint16_t)1 << pin; | ||
| 321 | } else if (pin < 32) { | ||
| 322 | reg = giu_read(GIUPIODH); | ||
| 323 | mask = (uint16_t)1 << (pin - 16); | ||
| 324 | } else if (pin < 48) { | ||
| 325 | reg = giu_read(GIUPODATL); | ||
| 326 | mask = (uint16_t)1 << (pin - 32); | ||
| 327 | } else { | ||
| 328 | reg = giu_read(GIUPODATH); | ||
| 329 | mask = (uint16_t)1 << (pin - 48); | ||
| 330 | } | ||
| 331 | |||
| 332 | if (reg & mask) | ||
| 333 | return GPIO_DATA_HIGH; | ||
| 334 | |||
| 335 | return GPIO_DATA_LOW; | ||
| 336 | } | ||
| 337 | EXPORT_SYMBOL_GPL(vr41xx_gpio_get_pin); | ||
| 338 | |||
| 339 | int vr41xx_gpio_set_pin(unsigned int pin, gpio_data_t data) | ||
| 340 | { | ||
| 341 | uint16_t offset, mask, reg; | ||
| 342 | unsigned long flags; | ||
| 343 | |||
| 344 | if (pin >= giu_nr_pins) | ||
| 345 | return -EINVAL; | ||
| 346 | |||
| 347 | if (pin < 16) { | ||
| 348 | offset = GIUPIODL; | ||
| 349 | mask = (uint16_t)1 << pin; | ||
| 350 | } else if (pin < 32) { | ||
| 351 | offset = GIUPIODH; | ||
| 352 | mask = (uint16_t)1 << (pin - 16); | ||
| 353 | } else if (pin < 48) { | ||
| 354 | offset = GIUPODATL; | ||
| 355 | mask = (uint16_t)1 << (pin - 32); | ||
| 356 | } else { | ||
| 357 | offset = GIUPODATH; | ||
| 358 | mask = (uint16_t)1 << (pin - 48); | ||
| 359 | } | ||
| 360 | |||
| 361 | spin_lock_irqsave(&giu_lock, flags); | ||
| 362 | |||
| 363 | reg = giu_read(offset); | ||
| 364 | if (data == GPIO_DATA_HIGH) | ||
| 365 | reg |= mask; | ||
| 366 | else | ||
| 367 | reg &= ~mask; | ||
| 368 | giu_write(offset, reg); | ||
| 369 | |||
| 370 | spin_unlock_irqrestore(&giu_lock, flags); | ||
| 371 | |||
| 372 | return 0; | ||
| 373 | } | ||
| 374 | EXPORT_SYMBOL_GPL(vr41xx_gpio_set_pin); | ||
| 375 | |||
| 376 | int vr41xx_gpio_set_direction(unsigned int pin, gpio_direction_t dir) | ||
| 377 | { | ||
| 378 | uint16_t offset, mask, reg; | ||
| 379 | unsigned long flags; | ||
| 380 | |||
| 381 | if (pin >= giu_nr_pins) | ||
| 382 | return -EINVAL; | ||
| 383 | |||
| 384 | if (pin < 16) { | ||
| 385 | offset = GIUIOSELL; | ||
| 386 | mask = (uint16_t)1 << pin; | ||
| 387 | } else if (pin < 32) { | ||
| 388 | offset = GIUIOSELH; | ||
| 389 | mask = (uint16_t)1 << (pin - 16); | ||
| 390 | } else { | ||
| 391 | if (giu_flags & GPIO_HAS_OUTPUT_ENABLE) { | ||
| 392 | offset = GIUPODATEN; | ||
| 393 | mask = (uint16_t)1 << (pin - 32); | ||
| 394 | } else { | ||
| 395 | switch (pin) { | ||
| 396 | case 48: | ||
| 397 | offset = GIUPODATH; | ||
| 398 | mask = PIOEN0; | ||
| 399 | break; | ||
| 400 | case 49: | ||
| 401 | offset = GIUPODATH; | ||
| 402 | mask = PIOEN1; | ||
| 403 | break; | ||
| 404 | default: | ||
| 405 | return -EINVAL; | ||
| 406 | } | ||
| 407 | } | ||
| 408 | } | ||
| 409 | |||
| 410 | spin_lock_irqsave(&giu_lock, flags); | ||
| 411 | |||
| 412 | reg = giu_read(offset); | ||
| 413 | if (dir == GPIO_OUTPUT) | ||
| 414 | reg |= mask; | ||
| 415 | else | ||
| 416 | reg &= ~mask; | ||
| 417 | giu_write(offset, reg); | ||
| 418 | |||
| 419 | spin_unlock_irqrestore(&giu_lock, flags); | ||
| 420 | |||
| 421 | return 0; | ||
| 422 | } | ||
| 423 | EXPORT_SYMBOL_GPL(vr41xx_gpio_set_direction); | ||
| 424 | |||
| 425 | int vr41xx_gpio_pullupdown(unsigned int pin, gpio_pull_t pull) | ||
| 426 | { | ||
| 427 | uint16_t reg, mask; | ||
| 428 | unsigned long flags; | ||
| 429 | |||
| 430 | if ((giu_flags & GPIO_HAS_PULLUPDOWN_IO) != GPIO_HAS_PULLUPDOWN_IO) | ||
| 431 | return -EPERM; | ||
| 432 | |||
| 433 | if (pin >= 15) | ||
| 434 | return -EINVAL; | ||
| 435 | |||
| 436 | mask = (uint16_t)1 << pin; | ||
| 437 | |||
| 438 | spin_lock_irqsave(&giu_lock, flags); | ||
| 439 | |||
| 440 | if (pull == GPIO_PULL_UP || pull == GPIO_PULL_DOWN) { | ||
| 441 | reg = giu_read(GIUTERMUPDN); | ||
| 442 | if (pull == GPIO_PULL_UP) | ||
| 443 | reg |= mask; | ||
| 444 | else | ||
| 445 | reg &= ~mask; | ||
| 446 | giu_write(GIUTERMUPDN, reg); | ||
| 447 | |||
| 448 | reg = giu_read(GIUUSEUPDN); | ||
| 449 | reg |= mask; | ||
| 450 | giu_write(GIUUSEUPDN, reg); | ||
| 451 | } else { | ||
| 452 | reg = giu_read(GIUUSEUPDN); | ||
| 453 | reg &= ~mask; | ||
| 454 | giu_write(GIUUSEUPDN, reg); | ||
| 455 | } | ||
| 456 | |||
| 457 | spin_unlock_irqrestore(&giu_lock, flags); | ||
| 458 | |||
| 459 | return 0; | ||
| 460 | } | ||
| 461 | EXPORT_SYMBOL_GPL(vr41xx_gpio_pullupdown); | ||
| 462 | |||
| 463 | static ssize_t gpio_read(struct file *file, char __user *buf, size_t len, | ||
| 464 | loff_t *ppos) | ||
| 465 | { | ||
| 466 | unsigned int pin; | ||
| 467 | char value = '0'; | ||
| 468 | |||
| 469 | pin = iminor(file->f_path.dentry->d_inode); | ||
| 470 | if (pin >= giu_nr_pins) | ||
| 471 | return -EBADF; | ||
| 472 | |||
| 473 | if (vr41xx_gpio_get_pin(pin) == GPIO_DATA_HIGH) | ||
| 474 | value = '1'; | ||
| 475 | |||
| 476 | if (len <= 0) | ||
| 477 | return -EFAULT; | ||
| 478 | |||
| 479 | if (put_user(value, buf)) | ||
| 480 | return -EFAULT; | ||
| 481 | |||
| 482 | return 1; | ||
| 483 | } | ||
| 484 | |||
| 485 | static ssize_t gpio_write(struct file *file, const char __user *data, | ||
| 486 | size_t len, loff_t *ppos) | ||
| 487 | { | ||
| 488 | unsigned int pin; | ||
| 489 | size_t i; | ||
| 490 | char c; | ||
| 491 | int retval = 0; | ||
| 492 | |||
| 493 | pin = iminor(file->f_path.dentry->d_inode); | ||
| 494 | if (pin >= giu_nr_pins) | ||
| 495 | return -EBADF; | ||
| 496 | |||
| 497 | for (i = 0; i < len; i++) { | ||
| 498 | if (get_user(c, data + i)) | ||
| 499 | return -EFAULT; | ||
| 500 | |||
| 501 | switch (c) { | ||
| 502 | case '0': | ||
| 503 | retval = vr41xx_gpio_set_pin(pin, GPIO_DATA_LOW); | ||
| 504 | break; | ||
| 505 | case '1': | ||
| 506 | retval = vr41xx_gpio_set_pin(pin, GPIO_DATA_HIGH); | ||
| 507 | break; | ||
| 508 | case 'D': | ||
| 509 | printk(KERN_INFO "GPIO%d: pull down\n", pin); | ||
| 510 | retval = vr41xx_gpio_pullupdown(pin, GPIO_PULL_DOWN); | ||
| 511 | break; | ||
| 512 | case 'd': | ||
| 513 | printk(KERN_INFO "GPIO%d: pull up/down disable\n", pin); | ||
| 514 | retval = vr41xx_gpio_pullupdown(pin, GPIO_PULL_DISABLE); | ||
| 515 | break; | ||
| 516 | case 'I': | ||
| 517 | printk(KERN_INFO "GPIO%d: input\n", pin); | ||
| 518 | retval = vr41xx_gpio_set_direction(pin, GPIO_INPUT); | ||
| 519 | break; | ||
| 520 | case 'O': | ||
| 521 | printk(KERN_INFO "GPIO%d: output\n", pin); | ||
| 522 | retval = vr41xx_gpio_set_direction(pin, GPIO_OUTPUT); | ||
| 523 | break; | ||
| 524 | case 'o': | ||
| 525 | printk(KERN_INFO "GPIO%d: output disable\n", pin); | ||
| 526 | retval = vr41xx_gpio_set_direction(pin, GPIO_OUTPUT_DISABLE); | ||
| 527 | break; | ||
| 528 | case 'P': | ||
| 529 | printk(KERN_INFO "GPIO%d: pull up\n", pin); | ||
| 530 | retval = vr41xx_gpio_pullupdown(pin, GPIO_PULL_UP); | ||
| 531 | break; | ||
| 532 | case 'p': | ||
| 533 | printk(KERN_INFO "GPIO%d: pull up/down disable\n", pin); | ||
| 534 | retval = vr41xx_gpio_pullupdown(pin, GPIO_PULL_DISABLE); | ||
| 535 | break; | ||
| 536 | default: | ||
| 537 | break; | ||
| 538 | } | ||
| 539 | |||
| 540 | if (retval < 0) | ||
| 541 | break; | ||
| 542 | } | ||
| 543 | |||
| 544 | return i; | ||
| 545 | } | ||
| 546 | |||
| 547 | static int gpio_open(struct inode *inode, struct file *file) | ||
| 548 | { | ||
| 549 | unsigned int pin; | ||
| 550 | |||
| 551 | cycle_kernel_lock(); | ||
| 552 | pin = iminor(inode); | ||
| 553 | if (pin >= giu_nr_pins) | ||
| 554 | return -EBADF; | ||
| 555 | |||
| 556 | return nonseekable_open(inode, file); | ||
| 557 | } | ||
| 558 | |||
| 559 | static int gpio_release(struct inode *inode, struct file *file) | ||
| 560 | { | ||
| 561 | unsigned int pin; | ||
| 562 | |||
| 563 | pin = iminor(inode); | ||
| 564 | if (pin >= giu_nr_pins) | ||
| 565 | return -EBADF; | ||
| 566 | |||
| 567 | return 0; | ||
| 568 | } | ||
| 569 | |||
| 570 | static const struct file_operations gpio_fops = { | ||
| 571 | .owner = THIS_MODULE, | ||
| 572 | .read = gpio_read, | ||
| 573 | .write = gpio_write, | ||
| 574 | .open = gpio_open, | ||
| 575 | .release = gpio_release, | ||
| 576 | }; | ||
| 577 | |||
| 578 | static int __devinit giu_probe(struct platform_device *dev) | ||
| 579 | { | ||
| 580 | struct resource *res; | ||
| 581 | unsigned int trigger, i, pin; | ||
| 582 | struct irq_chip *chip; | ||
| 583 | int irq, retval; | ||
| 584 | |||
| 585 | switch (dev->id) { | ||
| 586 | case GPIO_50PINS_PULLUPDOWN: | ||
| 587 | giu_flags = GPIO_HAS_PULLUPDOWN_IO; | ||
| 588 | giu_nr_pins = 50; | ||
| 589 | break; | ||
| 590 | case GPIO_36PINS: | ||
| 591 | giu_nr_pins = 36; | ||
| 592 | break; | ||
| 593 | case GPIO_48PINS_EDGE_SELECT: | ||
| 594 | giu_flags = GPIO_HAS_INTERRUPT_EDGE_SELECT; | ||
| 595 | giu_nr_pins = 48; | ||
| 596 | break; | ||
| 597 | default: | ||
| 598 | printk(KERN_ERR "GIU: unknown ID %d\n", dev->id); | ||
| 599 | return -ENODEV; | ||
| 600 | } | ||
| 601 | |||
| 602 | res = platform_get_resource(dev, IORESOURCE_MEM, 0); | ||
| 603 | if (!res) | ||
| 604 | return -EBUSY; | ||
| 605 | |||
| 606 | giu_base = ioremap(res->start, res->end - res->start + 1); | ||
| 607 | if (!giu_base) | ||
| 608 | return -ENOMEM; | ||
| 609 | |||
| 610 | retval = register_chrdev(major, "GIU", &gpio_fops); | ||
| 611 | if (retval < 0) { | ||
| 612 | iounmap(giu_base); | ||
| 613 | giu_base = NULL; | ||
| 614 | return retval; | ||
| 615 | } | ||
| 616 | |||
| 617 | if (major == 0) { | ||
| 618 | major = retval; | ||
| 619 | printk(KERN_INFO "GIU: major number %d\n", major); | ||
| 620 | } | ||
| 621 | |||
| 622 | spin_lock_init(&giu_lock); | ||
| 623 | |||
| 624 | giu_write(GIUINTENL, 0); | ||
| 625 | giu_write(GIUINTENH, 0); | ||
| 626 | |||
| 627 | trigger = giu_read(GIUINTTYPH) << 16; | ||
| 628 | trigger |= giu_read(GIUINTTYPL); | ||
| 629 | for (i = GIU_IRQ_BASE; i <= GIU_IRQ_LAST; i++) { | ||
| 630 | pin = GPIO_PIN_OF_IRQ(i); | ||
| 631 | if (pin < GIUINT_HIGH_OFFSET) | ||
| 632 | chip = &giuint_low_irq_chip; | ||
| 633 | else | ||
| 634 | chip = &giuint_high_irq_chip; | ||
| 635 | |||
| 636 | if (trigger & (1 << pin)) | ||
| 637 | set_irq_chip_and_handler(i, chip, handle_edge_irq); | ||
| 638 | else | ||
| 639 | set_irq_chip_and_handler(i, chip, handle_level_irq); | ||
| 640 | |||
| 641 | } | ||
| 642 | |||
| 643 | irq = platform_get_irq(dev, 0); | ||
| 644 | if (irq < 0 || irq >= nr_irqs) | ||
| 645 | return -EBUSY; | ||
| 646 | |||
| 647 | return cascade_irq(irq, giu_get_irq); | ||
| 648 | } | ||
| 649 | |||
| 650 | static int __devexit giu_remove(struct platform_device *dev) | ||
| 651 | { | ||
| 652 | if (giu_base) { | ||
| 653 | iounmap(giu_base); | ||
| 654 | giu_base = NULL; | ||
| 655 | } | ||
| 656 | |||
| 657 | return 0; | ||
| 658 | } | ||
| 659 | |||
| 660 | static struct platform_driver giu_device_driver = { | ||
| 661 | .probe = giu_probe, | ||
| 662 | .remove = __devexit_p(giu_remove), | ||
| 663 | .driver = { | ||
| 664 | .name = "GIU", | ||
| 665 | .owner = THIS_MODULE, | ||
| 666 | }, | ||
| 667 | }; | ||
| 668 | |||
| 669 | static int __init vr41xx_giu_init(void) | ||
| 670 | { | ||
| 671 | return platform_driver_register(&giu_device_driver); | ||
| 672 | } | ||
| 673 | |||
| 674 | static void __exit vr41xx_giu_exit(void) | ||
| 675 | { | ||
| 676 | platform_driver_unregister(&giu_device_driver); | ||
| 677 | } | ||
| 678 | |||
| 679 | module_init(vr41xx_giu_init); | ||
| 680 | module_exit(vr41xx_giu_exit); | ||
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 3582c39f9725..96dda81c9228 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig | |||
| @@ -79,6 +79,12 @@ config GPIO_XILINX | |||
| 79 | help | 79 | help |
| 80 | Say yes here to support the Xilinx FPGA GPIO device | 80 | Say yes here to support the Xilinx FPGA GPIO device |
| 81 | 81 | ||
| 82 | config GPIO_VR41XX | ||
| 83 | tristate "NEC VR4100 series General-purpose I/O Uint support" | ||
| 84 | depends on CPU_VR41XX | ||
| 85 | help | ||
| 86 | Say yes here to support the NEC VR4100 series General-purpose I/O Uint | ||
| 87 | |||
| 82 | comment "I2C GPIO expanders:" | 88 | comment "I2C GPIO expanders:" |
| 83 | 89 | ||
| 84 | config GPIO_MAX732X | 90 | config GPIO_MAX732X |
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile index ef90203e8f3c..9244c6fcd8be 100644 --- a/drivers/gpio/Makefile +++ b/drivers/gpio/Makefile | |||
| @@ -13,3 +13,4 @@ obj-$(CONFIG_GPIO_PL061) += pl061.o | |||
| 13 | obj-$(CONFIG_GPIO_TWL4030) += twl4030-gpio.o | 13 | obj-$(CONFIG_GPIO_TWL4030) += twl4030-gpio.o |
| 14 | obj-$(CONFIG_GPIO_XILINX) += xilinx_gpio.o | 14 | obj-$(CONFIG_GPIO_XILINX) += xilinx_gpio.o |
| 15 | obj-$(CONFIG_GPIO_BT8XX) += bt8xxgpio.o | 15 | obj-$(CONFIG_GPIO_BT8XX) += bt8xxgpio.o |
| 16 | obj-$(CONFIG_GPIO_VR41XX) += vr41xx_giu.o | ||
diff --git a/drivers/gpio/vr41xx_giu.c b/drivers/gpio/vr41xx_giu.c new file mode 100644 index 000000000000..b70e06133e78 --- /dev/null +++ b/drivers/gpio/vr41xx_giu.c | |||
| @@ -0,0 +1,586 @@ | |||
| 1 | /* | ||
| 2 | * Driver for NEC VR4100 series General-purpose I/O Unit. | ||
| 3 | * | ||
| 4 | * Copyright (C) 2002 MontaVista Software Inc. | ||
| 5 | * Author: Yoichi Yuasa <source@mvista.com> | ||
| 6 | * Copyright (C) 2003-2009 Yoichi Yuasa <yuasa@linux-mips.org> | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License as published by | ||
| 10 | * the Free Software Foundation; either version 2 of the License, or | ||
| 11 | * (at your option) any later version. | ||
| 12 | * | ||
| 13 | * This program is distributed in the hope that it will be useful, | ||
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | * GNU General Public License for more details. | ||
| 17 | * | ||
| 18 | * You should have received a copy of the GNU General Public License | ||
| 19 | * along with this program; if not, write to the Free Software | ||
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 21 | */ | ||
| 22 | #include <linux/errno.h> | ||
| 23 | #include <linux/fs.h> | ||
| 24 | #include <linux/gpio.h> | ||
| 25 | #include <linux/init.h> | ||
| 26 | #include <linux/interrupt.h> | ||
| 27 | #include <linux/io.h> | ||
| 28 | #include <linux/irq.h> | ||
| 29 | #include <linux/kernel.h> | ||
| 30 | #include <linux/module.h> | ||
| 31 | #include <linux/platform_device.h> | ||
| 32 | #include <linux/smp_lock.h> | ||
| 33 | #include <linux/spinlock.h> | ||
| 34 | #include <linux/types.h> | ||
| 35 | |||
| 36 | #include <asm/vr41xx/giu.h> | ||
| 37 | #include <asm/vr41xx/irq.h> | ||
| 38 | #include <asm/vr41xx/vr41xx.h> | ||
| 39 | |||
| 40 | MODULE_AUTHOR("Yoichi Yuasa <yuasa@linux-mips.org>"); | ||
| 41 | MODULE_DESCRIPTION("NEC VR4100 series General-purpose I/O Unit driver"); | ||
| 42 | MODULE_LICENSE("GPL"); | ||
| 43 | |||
| 44 | #define GIUIOSELL 0x00 | ||
| 45 | #define GIUIOSELH 0x02 | ||
| 46 | #define GIUPIODL 0x04 | ||
| 47 | #define GIUPIODH 0x06 | ||
| 48 | #define GIUINTSTATL 0x08 | ||
| 49 | #define GIUINTSTATH 0x0a | ||
| 50 | #define GIUINTENL 0x0c | ||
| 51 | #define GIUINTENH 0x0e | ||
| 52 | #define GIUINTTYPL 0x10 | ||
| 53 | #define GIUINTTYPH 0x12 | ||
| 54 | #define GIUINTALSELL 0x14 | ||
| 55 | #define GIUINTALSELH 0x16 | ||
| 56 | #define GIUINTHTSELL 0x18 | ||
| 57 | #define GIUINTHTSELH 0x1a | ||
| 58 | #define GIUPODATL 0x1c | ||
| 59 | #define GIUPODATEN 0x1c | ||
| 60 | #define GIUPODATH 0x1e | ||
| 61 | #define PIOEN0 0x0100 | ||
| 62 | #define PIOEN1 0x0200 | ||
| 63 | #define GIUPODAT 0x1e | ||
| 64 | #define GIUFEDGEINHL 0x20 | ||
| 65 | #define GIUFEDGEINHH 0x22 | ||
| 66 | #define GIUREDGEINHL 0x24 | ||
| 67 | #define GIUREDGEINHH 0x26 | ||
| 68 | |||
| 69 | #define GIUUSEUPDN 0x1e0 | ||
| 70 | #define GIUTERMUPDN 0x1e2 | ||
| 71 | |||
| 72 | #define GPIO_HAS_PULLUPDOWN_IO 0x0001 | ||
| 73 | #define GPIO_HAS_OUTPUT_ENABLE 0x0002 | ||
| 74 | #define GPIO_HAS_INTERRUPT_EDGE_SELECT 0x0100 | ||
| 75 | |||
| 76 | enum { | ||
| 77 | GPIO_INPUT, | ||
| 78 | GPIO_OUTPUT, | ||
| 79 | }; | ||
| 80 | |||
| 81 | static DEFINE_SPINLOCK(giu_lock); | ||
| 82 | static unsigned long giu_flags; | ||
| 83 | |||
| 84 | static void __iomem *giu_base; | ||
| 85 | |||
| 86 | #define giu_read(offset) readw(giu_base + (offset)) | ||
| 87 | #define giu_write(offset, value) writew((value), giu_base + (offset)) | ||
| 88 | |||
| 89 | #define GPIO_PIN_OF_IRQ(irq) ((irq) - GIU_IRQ_BASE) | ||
| 90 | #define GIUINT_HIGH_OFFSET 16 | ||
| 91 | #define GIUINT_HIGH_MAX 32 | ||
| 92 | |||
| 93 | static inline u16 giu_set(u16 offset, u16 set) | ||
| 94 | { | ||
| 95 | u16 data; | ||
| 96 | |||
| 97 | data = giu_read(offset); | ||
| 98 | data |= set; | ||
| 99 | giu_write(offset, data); | ||
| 100 | |||
| 101 | return data; | ||
| 102 | } | ||
| 103 | |||
| 104 | static inline u16 giu_clear(u16 offset, u16 clear) | ||
| 105 | { | ||
| 106 | u16 data; | ||
| 107 | |||
| 108 | data = giu_read(offset); | ||
| 109 | data &= ~clear; | ||
| 110 | giu_write(offset, data); | ||
| 111 | |||
| 112 | return data; | ||
| 113 | } | ||
| 114 | |||
| 115 | static void ack_giuint_low(unsigned int irq) | ||
| 116 | { | ||
| 117 | giu_write(GIUINTSTATL, 1 << GPIO_PIN_OF_IRQ(irq)); | ||
| 118 | } | ||
| 119 | |||
| 120 | static void mask_giuint_low(unsigned int irq) | ||
| 121 | { | ||
| 122 | giu_clear(GIUINTENL, 1 << GPIO_PIN_OF_IRQ(irq)); | ||
| 123 | } | ||
| 124 | |||
| 125 | static void mask_ack_giuint_low(unsigned int irq) | ||
| 126 | { | ||
| 127 | unsigned int pin; | ||
| 128 | |||
| 129 | pin = GPIO_PIN_OF_IRQ(irq); | ||
| 130 | giu_clear(GIUINTENL, 1 << pin); | ||
| 131 | giu_write(GIUINTSTATL, 1 << pin); | ||
| 132 | } | ||
| 133 | |||
| 134 | static void unmask_giuint_low(unsigned int irq) | ||
| 135 | { | ||
| 136 | giu_set(GIUINTENL, 1 << GPIO_PIN_OF_IRQ(irq)); | ||
| 137 | } | ||
| 138 | |||
| 139 | static struct irq_chip giuint_low_irq_chip = { | ||
| 140 | .name = "GIUINTL", | ||
| 141 | .ack = ack_giuint_low, | ||
| 142 | .mask = mask_giuint_low, | ||
| 143 | .mask_ack = mask_ack_giuint_low, | ||
| 144 | .unmask = unmask_giuint_low, | ||
| 145 | }; | ||
| 146 | |||
| 147 | static void ack_giuint_high(unsigned int irq) | ||
| 148 | { | ||
| 149 | giu_write(GIUINTSTATH, | ||
| 150 | 1 << (GPIO_PIN_OF_IRQ(irq) - GIUINT_HIGH_OFFSET)); | ||
| 151 | } | ||
| 152 | |||
| 153 | static void mask_giuint_high(unsigned int irq) | ||
| 154 | { | ||
| 155 | giu_clear(GIUINTENH, 1 << (GPIO_PIN_OF_IRQ(irq) - GIUINT_HIGH_OFFSET)); | ||
| 156 | } | ||
| 157 | |||
| 158 | static void mask_ack_giuint_high(unsigned int irq) | ||
| 159 | { | ||
| 160 | unsigned int pin; | ||
| 161 | |||
| 162 | pin = GPIO_PIN_OF_IRQ(irq) - GIUINT_HIGH_OFFSET; | ||
| 163 | giu_clear(GIUINTENH, 1 << pin); | ||
| 164 | giu_write(GIUINTSTATH, 1 << pin); | ||
| 165 | } | ||
| 166 | |||
| 167 | static void unmask_giuint_high(unsigned int irq) | ||
| 168 | { | ||
| 169 | giu_set(GIUINTENH, 1 << (GPIO_PIN_OF_IRQ(irq) - GIUINT_HIGH_OFFSET)); | ||
| 170 | } | ||
| 171 | |||
| 172 | static struct irq_chip giuint_high_irq_chip = { | ||
| 173 | .name = "GIUINTH", | ||
| 174 | .ack = ack_giuint_high, | ||
| 175 | .mask = mask_giuint_high, | ||
| 176 | .mask_ack = mask_ack_giuint_high, | ||
| 177 | .unmask = unmask_giuint_high, | ||
| 178 | }; | ||
| 179 | |||
| 180 | static int giu_get_irq(unsigned int irq) | ||
| 181 | { | ||
| 182 | u16 pendl, pendh, maskl, maskh; | ||
| 183 | int i; | ||
| 184 | |||
| 185 | pendl = giu_read(GIUINTSTATL); | ||
| 186 | pendh = giu_read(GIUINTSTATH); | ||
| 187 | maskl = giu_read(GIUINTENL); | ||
| 188 | maskh = giu_read(GIUINTENH); | ||
| 189 | |||
| 190 | maskl &= pendl; | ||
| 191 | maskh &= pendh; | ||
| 192 | |||
| 193 | if (maskl) { | ||
| 194 | for (i = 0; i < 16; i++) { | ||
| 195 | if (maskl & (1 << i)) | ||
| 196 | return GIU_IRQ(i); | ||
| 197 | } | ||
| 198 | } else if (maskh) { | ||
| 199 | for (i = 0; i < 16; i++) { | ||
| 200 | if (maskh & (1 << i)) | ||
| 201 | return GIU_IRQ(i + GIUINT_HIGH_OFFSET); | ||
| 202 | } | ||
| 203 | } | ||
| 204 | |||
| 205 | printk(KERN_ERR "spurious GIU interrupt: %04x(%04x),%04x(%04x)\n", | ||
| 206 | maskl, pendl, maskh, pendh); | ||
| 207 | |||
| 208 | atomic_inc(&irq_err_count); | ||
| 209 | |||
| 210 | return -EINVAL; | ||
| 211 | } | ||
| 212 | |||
| 213 | void vr41xx_set_irq_trigger(unsigned int pin, irq_trigger_t trigger, | ||
| 214 | irq_signal_t signal) | ||
| 215 | { | ||
| 216 | u16 mask; | ||
| 217 | |||
| 218 | if (pin < GIUINT_HIGH_OFFSET) { | ||
| 219 | mask = 1 << pin; | ||
| 220 | if (trigger != IRQ_TRIGGER_LEVEL) { | ||
| 221 | giu_set(GIUINTTYPL, mask); | ||
| 222 | if (signal == IRQ_SIGNAL_HOLD) | ||
| 223 | giu_set(GIUINTHTSELL, mask); | ||
| 224 | else | ||
| 225 | giu_clear(GIUINTHTSELL, mask); | ||
| 226 | if (giu_flags & GPIO_HAS_INTERRUPT_EDGE_SELECT) { | ||
| 227 | switch (trigger) { | ||
| 228 | case IRQ_TRIGGER_EDGE_FALLING: | ||
| 229 | giu_set(GIUFEDGEINHL, mask); | ||
| 230 | giu_clear(GIUREDGEINHL, mask); | ||
| 231 | break; | ||
| 232 | case IRQ_TRIGGER_EDGE_RISING: | ||
| 233 | giu_clear(GIUFEDGEINHL, mask); | ||
| 234 | giu_set(GIUREDGEINHL, mask); | ||
| 235 | break; | ||
| 236 | default: | ||
| 237 | giu_set(GIUFEDGEINHL, mask); | ||
| 238 | giu_set(GIUREDGEINHL, mask); | ||
| 239 | break; | ||
| 240 | } | ||
| 241 | } | ||
| 242 | set_irq_chip_and_handler(GIU_IRQ(pin), | ||
| 243 | &giuint_low_irq_chip, | ||
| 244 | handle_edge_irq); | ||
| 245 | } else { | ||
| 246 | giu_clear(GIUINTTYPL, mask); | ||
| 247 | giu_clear(GIUINTHTSELL, mask); | ||
| 248 | set_irq_chip_and_handler(GIU_IRQ(pin), | ||
| 249 | &giuint_low_irq_chip, | ||
| 250 | handle_level_irq); | ||
| 251 | } | ||
| 252 | giu_write(GIUINTSTATL, mask); | ||
| 253 | } else if (pin < GIUINT_HIGH_MAX) { | ||
| 254 | mask = 1 << (pin - GIUINT_HIGH_OFFSET); | ||
| 255 | if (trigger != IRQ_TRIGGER_LEVEL) { | ||
| 256 | giu_set(GIUINTTYPH, mask); | ||
| 257 | if (signal == IRQ_SIGNAL_HOLD) | ||
| 258 | giu_set(GIUINTHTSELH, mask); | ||
| 259 | else | ||
| 260 | giu_clear(GIUINTHTSELH, mask); | ||
| 261 | if (giu_flags & GPIO_HAS_INTERRUPT_EDGE_SELECT) { | ||
| 262 | switch (trigger) { | ||
| 263 | case IRQ_TRIGGER_EDGE_FALLING: | ||
| 264 | giu_set(GIUFEDGEINHH, mask); | ||
| 265 | giu_clear(GIUREDGEINHH, mask); | ||
| 266 | break; | ||
| 267 | case IRQ_TRIGGER_EDGE_RISING: | ||
| 268 | giu_clear(GIUFEDGEINHH, mask); | ||
| 269 | giu_set(GIUREDGEINHH, mask); | ||
| 270 | break; | ||
| 271 | default: | ||
| 272 | giu_set(GIUFEDGEINHH, mask); | ||
| 273 | giu_set(GIUREDGEINHH, mask); | ||
| 274 | break; | ||
| 275 | } | ||
| 276 | } | ||
| 277 | set_irq_chip_and_handler(GIU_IRQ(pin), | ||
| 278 | &giuint_high_irq_chip, | ||
| 279 | handle_edge_irq); | ||
| 280 | } else { | ||
| 281 | giu_clear(GIUINTTYPH, mask); | ||
| 282 | giu_clear(GIUINTHTSELH, mask); | ||
| 283 | set_irq_chip_and_handler(GIU_IRQ(pin), | ||
| 284 | &giuint_high_irq_chip, | ||
| 285 | handle_level_irq); | ||
| 286 | } | ||
| 287 | giu_write(GIUINTSTATH, mask); | ||
| 288 | } | ||
| 289 | } | ||
| 290 | EXPORT_SYMBOL_GPL(vr41xx_set_irq_trigger); | ||
| 291 | |||
| 292 | void vr41xx_set_irq_level(unsigned int pin, irq_level_t level) | ||
| 293 | { | ||
| 294 | u16 mask; | ||
| 295 | |||
| 296 | if (pin < GIUINT_HIGH_OFFSET) { | ||
| 297 | mask = 1 << pin; | ||
| 298 | if (level == IRQ_LEVEL_HIGH) | ||
| 299 | giu_set(GIUINTALSELL, mask); | ||
| 300 | else | ||
| 301 | giu_clear(GIUINTALSELL, mask); | ||
| 302 | giu_write(GIUINTSTATL, mask); | ||
| 303 | } else if (pin < GIUINT_HIGH_MAX) { | ||
| 304 | mask = 1 << (pin - GIUINT_HIGH_OFFSET); | ||
| 305 | if (level == IRQ_LEVEL_HIGH) | ||
| 306 | giu_set(GIUINTALSELH, mask); | ||
| 307 | else | ||
| 308 | giu_clear(GIUINTALSELH, mask); | ||
| 309 | giu_write(GIUINTSTATH, mask); | ||
| 310 | } | ||
| 311 | } | ||
| 312 | EXPORT_SYMBOL_GPL(vr41xx_set_irq_level); | ||
| 313 | |||
| 314 | static int giu_set_direction(struct gpio_chip *chip, unsigned pin, int dir) | ||
| 315 | { | ||
| 316 | u16 offset, mask, reg; | ||
| 317 | unsigned long flags; | ||
| 318 | |||
| 319 | if (pin >= chip->ngpio) | ||
| 320 | return -EINVAL; | ||
| 321 | |||
| 322 | if (pin < 16) { | ||
| 323 | offset = GIUIOSELL; | ||
| 324 | mask = 1 << pin; | ||
| 325 | } else if (pin < 32) { | ||
| 326 | offset = GIUIOSELH; | ||
| 327 | mask = 1 << (pin - 16); | ||
| 328 | } else { | ||
| 329 | if (giu_flags & GPIO_HAS_OUTPUT_ENABLE) { | ||
| 330 | offset = GIUPODATEN; | ||
| 331 | mask = 1 << (pin - 32); | ||
| 332 | } else { | ||
| 333 | switch (pin) { | ||
| 334 | case 48: | ||
| 335 | offset = GIUPODATH; | ||
| 336 | mask = PIOEN0; | ||
| 337 | break; | ||
| 338 | case 49: | ||
| 339 | offset = GIUPODATH; | ||
| 340 | mask = PIOEN1; | ||
| 341 | break; | ||
| 342 | default: | ||
| 343 | return -EINVAL; | ||
| 344 | } | ||
| 345 | } | ||
| 346 | } | ||
| 347 | |||
| 348 | spin_lock_irqsave(&giu_lock, flags); | ||
| 349 | |||
| 350 | reg = giu_read(offset); | ||
| 351 | if (dir == GPIO_OUTPUT) | ||
| 352 | reg |= mask; | ||
| 353 | else | ||
| 354 | reg &= ~mask; | ||
| 355 | giu_write(offset, reg); | ||
| 356 | |||
| 357 | spin_unlock_irqrestore(&giu_lock, flags); | ||
| 358 | |||
| 359 | return 0; | ||
| 360 | } | ||
| 361 | |||
| 362 | int vr41xx_gpio_pullupdown(unsigned int pin, gpio_pull_t pull) | ||
| 363 | { | ||
| 364 | u16 reg, mask; | ||
| 365 | unsigned long flags; | ||
| 366 | |||
| 367 | if ((giu_flags & GPIO_HAS_PULLUPDOWN_IO) != GPIO_HAS_PULLUPDOWN_IO) | ||
| 368 | return -EPERM; | ||
| 369 | |||
| 370 | if (pin >= 15) | ||
| 371 | return -EINVAL; | ||
| 372 | |||
| 373 | mask = 1 << pin; | ||
| 374 | |||
| 375 | spin_lock_irqsave(&giu_lock, flags); | ||
| 376 | |||
| 377 | if (pull == GPIO_PULL_UP || pull == GPIO_PULL_DOWN) { | ||
| 378 | reg = giu_read(GIUTERMUPDN); | ||
| 379 | if (pull == GPIO_PULL_UP) | ||
| 380 | reg |= mask; | ||
| 381 | else | ||
| 382 | reg &= ~mask; | ||
| 383 | giu_write(GIUTERMUPDN, reg); | ||
| 384 | |||
| 385 | reg = giu_read(GIUUSEUPDN); | ||
| 386 | reg |= mask; | ||
| 387 | giu_write(GIUUSEUPDN, reg); | ||
| 388 | } else { | ||
| 389 | reg = giu_read(GIUUSEUPDN); | ||
| 390 | reg &= ~mask; | ||
| 391 | giu_write(GIUUSEUPDN, reg); | ||
| 392 | } | ||
| 393 | |||
| 394 | spin_unlock_irqrestore(&giu_lock, flags); | ||
| 395 | |||
| 396 | return 0; | ||
| 397 | } | ||
| 398 | EXPORT_SYMBOL_GPL(vr41xx_gpio_pullupdown); | ||
| 399 | |||
| 400 | static int vr41xx_gpio_get(struct gpio_chip *chip, unsigned pin) | ||
| 401 | { | ||
| 402 | u16 reg, mask; | ||
| 403 | |||
| 404 | if (pin >= chip->ngpio) | ||
| 405 | return -EINVAL; | ||
| 406 | |||
| 407 | if (pin < 16) { | ||
| 408 | reg = giu_read(GIUPIODL); | ||
| 409 | mask = 1 << pin; | ||
| 410 | } else if (pin < 32) { | ||
| 411 | reg = giu_read(GIUPIODH); | ||
| 412 | mask = 1 << (pin - 16); | ||
| 413 | } else if (pin < 48) { | ||
| 414 | reg = giu_read(GIUPODATL); | ||
| 415 | mask = 1 << (pin - 32); | ||
| 416 | } else { | ||
| 417 | reg = giu_read(GIUPODATH); | ||
| 418 | mask = 1 << (pin - 48); | ||
| 419 | } | ||
| 420 | |||
| 421 | if (reg & mask) | ||
| 422 | return 1; | ||
| 423 | |||
| 424 | return 0; | ||
| 425 | } | ||
| 426 | |||
| 427 | static void vr41xx_gpio_set(struct gpio_chip *chip, unsigned pin, | ||
| 428 | int value) | ||
| 429 | { | ||
| 430 | u16 offset, mask, reg; | ||
| 431 | unsigned long flags; | ||
| 432 | |||
| 433 | if (pin >= chip->ngpio) | ||
| 434 | return; | ||
| 435 | |||
| 436 | if (pin < 16) { | ||
| 437 | offset = GIUPIODL; | ||
| 438 | mask = 1 << pin; | ||
| 439 | } else if (pin < 32) { | ||
| 440 | offset = GIUPIODH; | ||
| 441 | mask = 1 << (pin - 16); | ||
| 442 | } else if (pin < 48) { | ||
| 443 | offset = GIUPODATL; | ||
| 444 | mask = 1 << (pin - 32); | ||
| 445 | } else { | ||
| 446 | offset = GIUPODATH; | ||
| 447 | mask = 1 << (pin - 48); | ||
| 448 | } | ||
| 449 | |||
| 450 | spin_lock_irqsave(&giu_lock, flags); | ||
| 451 | |||
| 452 | reg = giu_read(offset); | ||
| 453 | if (value) | ||
| 454 | reg |= mask; | ||
| 455 | else | ||
| 456 | reg &= ~mask; | ||
| 457 | giu_write(offset, reg); | ||
| 458 | |||
| 459 | spin_unlock_irqrestore(&giu_lock, flags); | ||
| 460 | } | ||
| 461 | |||
| 462 | |||
| 463 | static int vr41xx_gpio_direction_input(struct gpio_chip *chip, unsigned offset) | ||
| 464 | { | ||
| 465 | return giu_set_direction(chip, offset, GPIO_INPUT); | ||
| 466 | } | ||
| 467 | |||
| 468 | static int vr41xx_gpio_direction_output(struct gpio_chip *chip, unsigned offset, | ||
| 469 | int value) | ||
| 470 | { | ||
| 471 | vr41xx_gpio_set(chip, offset, value); | ||
| 472 | |||
| 473 | return giu_set_direction(chip, offset, GPIO_OUTPUT); | ||
| 474 | } | ||
| 475 | |||
| 476 | static int vr41xx_gpio_to_irq(struct gpio_chip *chip, unsigned offset) | ||
| 477 | { | ||
| 478 | if (offset >= chip->ngpio) | ||
| 479 | return -EINVAL; | ||
| 480 | |||
| 481 | return GIU_IRQ_BASE + offset; | ||
| 482 | } | ||
| 483 | |||
| 484 | static struct gpio_chip vr41xx_gpio_chip = { | ||
| 485 | .label = "vr41xx", | ||
| 486 | .owner = THIS_MODULE, | ||
| 487 | .direction_input = vr41xx_gpio_direction_input, | ||
| 488 | .get = vr41xx_gpio_get, | ||
| 489 | .direction_output = vr41xx_gpio_direction_output, | ||
| 490 | .set = vr41xx_gpio_set, | ||
| 491 | .to_irq = vr41xx_gpio_to_irq, | ||
| 492 | }; | ||
| 493 | |||
| 494 | static int __devinit giu_probe(struct platform_device *pdev) | ||
| 495 | { | ||
| 496 | struct resource *res; | ||
| 497 | unsigned int trigger, i, pin; | ||
| 498 | struct irq_chip *chip; | ||
| 499 | int irq, retval; | ||
| 500 | |||
| 501 | switch (pdev->id) { | ||
| 502 | case GPIO_50PINS_PULLUPDOWN: | ||
| 503 | giu_flags = GPIO_HAS_PULLUPDOWN_IO; | ||
| 504 | vr41xx_gpio_chip.ngpio = 50; | ||
| 505 | break; | ||
| 506 | case GPIO_36PINS: | ||
| 507 | vr41xx_gpio_chip.ngpio = 36; | ||
| 508 | break; | ||
| 509 | case GPIO_48PINS_EDGE_SELECT: | ||
| 510 | giu_flags = GPIO_HAS_INTERRUPT_EDGE_SELECT; | ||
| 511 | vr41xx_gpio_chip.ngpio = 48; | ||
| 512 | break; | ||
| 513 | default: | ||
| 514 | dev_err(&pdev->dev, "GIU: unknown ID %d\n", pdev->id); | ||
| 515 | return -ENODEV; | ||
| 516 | } | ||
| 517 | |||
| 518 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
| 519 | if (!res) | ||
| 520 | return -EBUSY; | ||
| 521 | |||
| 522 | giu_base = ioremap(res->start, res->end - res->start + 1); | ||
| 523 | if (!giu_base) | ||
| 524 | return -ENOMEM; | ||
| 525 | |||
| 526 | vr41xx_gpio_chip.dev = &pdev->dev; | ||
| 527 | |||
| 528 | retval = gpiochip_add(&vr41xx_gpio_chip); | ||
| 529 | |||
| 530 | giu_write(GIUINTENL, 0); | ||
| 531 | giu_write(GIUINTENH, 0); | ||
| 532 | |||
| 533 | trigger = giu_read(GIUINTTYPH) << 16; | ||
| 534 | trigger |= giu_read(GIUINTTYPL); | ||
| 535 | for (i = GIU_IRQ_BASE; i <= GIU_IRQ_LAST; i++) { | ||
| 536 | pin = GPIO_PIN_OF_IRQ(i); | ||
| 537 | if (pin < GIUINT_HIGH_OFFSET) | ||
| 538 | chip = &giuint_low_irq_chip; | ||
| 539 | else | ||
| 540 | chip = &giuint_high_irq_chip; | ||
| 541 | |||
| 542 | if (trigger & (1 << pin)) | ||
| 543 | set_irq_chip_and_handler(i, chip, handle_edge_irq); | ||
| 544 | else | ||
| 545 | set_irq_chip_and_handler(i, chip, handle_level_irq); | ||
| 546 | |||
| 547 | } | ||
| 548 | |||
| 549 | irq = platform_get_irq(pdev, 0); | ||
| 550 | if (irq < 0 || irq >= nr_irqs) | ||
| 551 | return -EBUSY; | ||
| 552 | |||
| 553 | return cascade_irq(irq, giu_get_irq); | ||
| 554 | } | ||
| 555 | |||
| 556 | static int __devexit giu_remove(struct platform_device *pdev) | ||
| 557 | { | ||
| 558 | if (giu_base) { | ||
| 559 | iounmap(giu_base); | ||
| 560 | giu_base = NULL; | ||
| 561 | } | ||
| 562 | |||
| 563 | return 0; | ||
| 564 | } | ||
| 565 | |||
| 566 | static struct platform_driver giu_device_driver = { | ||
| 567 | .probe = giu_probe, | ||
| 568 | .remove = __devexit_p(giu_remove), | ||
| 569 | .driver = { | ||
| 570 | .name = "GIU", | ||
| 571 | .owner = THIS_MODULE, | ||
| 572 | }, | ||
| 573 | }; | ||
| 574 | |||
| 575 | static int __init vr41xx_giu_init(void) | ||
| 576 | { | ||
| 577 | return platform_driver_register(&giu_device_driver); | ||
| 578 | } | ||
| 579 | |||
| 580 | static void __exit vr41xx_giu_exit(void) | ||
| 581 | { | ||
| 582 | platform_driver_unregister(&giu_device_driver); | ||
| 583 | } | ||
| 584 | |||
| 585 | module_init(vr41xx_giu_init); | ||
| 586 | module_exit(vr41xx_giu_exit); | ||
diff --git a/drivers/input/misc/cobalt_btns.c b/drivers/input/misc/cobalt_btns.c index 2adf9cb265da..d114d3a9e1e9 100644 --- a/drivers/input/misc/cobalt_btns.c +++ b/drivers/input/misc/cobalt_btns.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Cobalt button interface driver. | 2 | * Cobalt button interface driver. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2007-2008 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2007-2008 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
| @@ -148,7 +148,7 @@ static int __devexit cobalt_buttons_remove(struct platform_device *pdev) | |||
| 148 | return 0; | 148 | return 0; |
| 149 | } | 149 | } |
| 150 | 150 | ||
| 151 | MODULE_AUTHOR("Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>"); | 151 | MODULE_AUTHOR("Yoichi Yuasa <yuasa@linux-mips.org>"); |
| 152 | MODULE_DESCRIPTION("Cobalt button interface driver"); | 152 | MODULE_DESCRIPTION("Cobalt button interface driver"); |
| 153 | MODULE_LICENSE("GPL"); | 153 | MODULE_LICENSE("GPL"); |
| 154 | /* work with hotplug and coldplug */ | 154 | /* work with hotplug and coldplug */ |
diff --git a/drivers/leds/leds-cobalt-raq.c b/drivers/leds/leds-cobalt-raq.c index ff0e8c3fbf9b..5f1ce810815f 100644 --- a/drivers/leds/leds-cobalt-raq.c +++ b/drivers/leds/leds-cobalt-raq.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * LEDs driver for the Cobalt Raq series. | 2 | * LEDs driver for the Cobalt Raq series. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/drivers/pcmcia/vrc4171_card.c b/drivers/pcmcia/vrc4171_card.c index 659421d0ca46..d4ad50d737b0 100644 --- a/drivers/pcmcia/vrc4171_card.c +++ b/drivers/pcmcia/vrc4171_card.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * vrc4171_card.c, NEC VRC4171 Card Controller driver for Socket Services. | 2 | * vrc4171_card.c, NEC VRC4171 Card Controller driver for Socket Services. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2003-2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2003-2005 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
| @@ -32,7 +32,7 @@ | |||
| 32 | #include "i82365.h" | 32 | #include "i82365.h" |
| 33 | 33 | ||
| 34 | MODULE_DESCRIPTION("NEC VRC4171 Card Controllers driver for Socket Services"); | 34 | MODULE_DESCRIPTION("NEC VRC4171 Card Controllers driver for Socket Services"); |
| 35 | MODULE_AUTHOR("Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>"); | 35 | MODULE_AUTHOR("Yoichi Yuasa <yuasa@linux-mips.org>"); |
| 36 | MODULE_LICENSE("GPL"); | 36 | MODULE_LICENSE("GPL"); |
| 37 | 37 | ||
| 38 | #define CARD_MAX_SLOTS 2 | 38 | #define CARD_MAX_SLOTS 2 |
diff --git a/drivers/pcmcia/vrc4173_cardu.c b/drivers/pcmcia/vrc4173_cardu.c index 812f038e9bda..9b3c15827e5c 100644 --- a/drivers/pcmcia/vrc4173_cardu.c +++ b/drivers/pcmcia/vrc4173_cardu.c | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | * NEC VRC4173 CARDU driver for Socket Services | 6 | * NEC VRC4173 CARDU driver for Socket Services |
| 7 | * (This device doesn't support CardBus. it is supporting only 16bit PC Card.) | 7 | * (This device doesn't support CardBus. it is supporting only 16bit PC Card.) |
| 8 | * | 8 | * |
| 9 | * Copyright 2002,2003 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 9 | * Copyright 2002,2003 Yoichi Yuasa <yuasa@linux-mips.org> |
| 10 | * | 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify it | 11 | * This program is free software; you can redistribute it and/or modify it |
| 12 | * under the terms of the GNU General Public License as published by the | 12 | * under the terms of the GNU General Public License as published by the |
| @@ -41,7 +41,7 @@ | |||
| 41 | #include "vrc4173_cardu.h" | 41 | #include "vrc4173_cardu.h" |
| 42 | 42 | ||
| 43 | MODULE_DESCRIPTION("NEC VRC4173 CARDU driver for Socket Services"); | 43 | MODULE_DESCRIPTION("NEC VRC4173 CARDU driver for Socket Services"); |
| 44 | MODULE_AUTHOR("Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>"); | 44 | MODULE_AUTHOR("Yoichi Yuasa <yuasa@linux-mips.org>"); |
| 45 | MODULE_LICENSE("GPL"); | 45 | MODULE_LICENSE("GPL"); |
| 46 | 46 | ||
| 47 | static int vrc4173_cardu_slots; | 47 | static int vrc4173_cardu_slots; |
diff --git a/drivers/pcmcia/vrc4173_cardu.h b/drivers/pcmcia/vrc4173_cardu.h index 7d77c74120c1..a7d96018ed8d 100644 --- a/drivers/pcmcia/vrc4173_cardu.h +++ b/drivers/pcmcia/vrc4173_cardu.h | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | * BRIEF MODULE DESCRIPTION | 5 | * BRIEF MODULE DESCRIPTION |
| 6 | * Include file for NEC VRC4173 CARDU. | 6 | * Include file for NEC VRC4173 CARDU. |
| 7 | * | 7 | * |
| 8 | * Copyright 2002 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 8 | * Copyright 2002 Yoichi Yuasa <yuasa@linux-mips.org> |
| 9 | * | 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify it | 10 | * This program is free software; you can redistribute it and/or modify it |
| 11 | * under the terms of the GNU General Public License as published by the | 11 | * under the terms of the GNU General Public License as published by the |
diff --git a/drivers/rtc/rtc-vr41xx.c b/drivers/rtc/rtc-vr41xx.c index f11297aff854..2c839d0d21bd 100644 --- a/drivers/rtc/rtc-vr41xx.c +++ b/drivers/rtc/rtc-vr41xx.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Driver for NEC VR4100 series Real Time Clock unit. | 2 | * Driver for NEC VR4100 series Real Time Clock unit. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2003-2008 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2003-2008 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
| @@ -33,7 +33,7 @@ | |||
| 33 | #include <asm/io.h> | 33 | #include <asm/io.h> |
| 34 | #include <asm/uaccess.h> | 34 | #include <asm/uaccess.h> |
| 35 | 35 | ||
| 36 | MODULE_AUTHOR("Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>"); | 36 | MODULE_AUTHOR("Yoichi Yuasa <yuasa@linux-mips.org>"); |
| 37 | MODULE_DESCRIPTION("NEC VR4100 series RTC driver"); | 37 | MODULE_DESCRIPTION("NEC VR4100 series RTC driver"); |
| 38 | MODULE_LICENSE("GPL v2"); | 38 | MODULE_LICENSE("GPL v2"); |
| 39 | 39 | ||
diff --git a/drivers/serial/vr41xx_siu.c b/drivers/serial/vr41xx_siu.c index 0573f3b5175e..dac550e57c29 100644 --- a/drivers/serial/vr41xx_siu.c +++ b/drivers/serial/vr41xx_siu.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Driver for NEC VR4100 series Serial Interface Unit. | 2 | * Driver for NEC VR4100 series Serial Interface Unit. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2004-2008 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2004-2008 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * Based on drivers/serial/8250.c, by Russell King. | 6 | * Based on drivers/serial/8250.c, by Russell King. |
| 7 | * | 7 | * |
diff --git a/drivers/ssb/driver_mipscore.c b/drivers/ssb/driver_mipscore.c index 3fd3e3b412b6..3c6feed46f6e 100644 --- a/drivers/ssb/driver_mipscore.c +++ b/drivers/ssb/driver_mipscore.c | |||
| @@ -49,29 +49,54 @@ static const u32 ipsflag_irq_shift[] = { | |||
| 49 | 49 | ||
| 50 | static inline u32 ssb_irqflag(struct ssb_device *dev) | 50 | static inline u32 ssb_irqflag(struct ssb_device *dev) |
| 51 | { | 51 | { |
| 52 | return ssb_read32(dev, SSB_TPSFLAG) & SSB_TPSFLAG_BPFLAG; | 52 | u32 tpsflag = ssb_read32(dev, SSB_TPSFLAG); |
| 53 | if (tpsflag) | ||
| 54 | return ssb_read32(dev, SSB_TPSFLAG) & SSB_TPSFLAG_BPFLAG; | ||
| 55 | else | ||
| 56 | /* not irq supported */ | ||
| 57 | return 0x3f; | ||
| 58 | } | ||
| 59 | |||
| 60 | static struct ssb_device *find_device(struct ssb_device *rdev, int irqflag) | ||
| 61 | { | ||
| 62 | struct ssb_bus *bus = rdev->bus; | ||
| 63 | int i; | ||
| 64 | for (i = 0; i < bus->nr_devices; i++) { | ||
| 65 | struct ssb_device *dev; | ||
| 66 | dev = &(bus->devices[i]); | ||
| 67 | if (ssb_irqflag(dev) == irqflag) | ||
| 68 | return dev; | ||
| 69 | } | ||
| 70 | return NULL; | ||
| 53 | } | 71 | } |
| 54 | 72 | ||
| 55 | /* Get the MIPS IRQ assignment for a specified device. | 73 | /* Get the MIPS IRQ assignment for a specified device. |
| 56 | * If unassigned, 0 is returned. | 74 | * If unassigned, 0 is returned. |
| 75 | * If disabled, 5 is returned. | ||
| 76 | * If not supported, 6 is returned. | ||
| 57 | */ | 77 | */ |
| 58 | unsigned int ssb_mips_irq(struct ssb_device *dev) | 78 | unsigned int ssb_mips_irq(struct ssb_device *dev) |
| 59 | { | 79 | { |
| 60 | struct ssb_bus *bus = dev->bus; | 80 | struct ssb_bus *bus = dev->bus; |
| 81 | struct ssb_device *mdev = bus->mipscore.dev; | ||
| 61 | u32 irqflag; | 82 | u32 irqflag; |
| 62 | u32 ipsflag; | 83 | u32 ipsflag; |
| 63 | u32 tmp; | 84 | u32 tmp; |
| 64 | unsigned int irq; | 85 | unsigned int irq; |
| 65 | 86 | ||
| 66 | irqflag = ssb_irqflag(dev); | 87 | irqflag = ssb_irqflag(dev); |
| 88 | if (irqflag == 0x3f) | ||
| 89 | return 6; | ||
| 67 | ipsflag = ssb_read32(bus->mipscore.dev, SSB_IPSFLAG); | 90 | ipsflag = ssb_read32(bus->mipscore.dev, SSB_IPSFLAG); |
| 68 | for (irq = 1; irq <= 4; irq++) { | 91 | for (irq = 1; irq <= 4; irq++) { |
| 69 | tmp = ((ipsflag & ipsflag_irq_mask[irq]) >> ipsflag_irq_shift[irq]); | 92 | tmp = ((ipsflag & ipsflag_irq_mask[irq]) >> ipsflag_irq_shift[irq]); |
| 70 | if (tmp == irqflag) | 93 | if (tmp == irqflag) |
| 71 | break; | 94 | break; |
| 72 | } | 95 | } |
| 73 | if (irq == 5) | 96 | if (irq == 5) { |
| 74 | irq = 0; | 97 | if ((1 << irqflag) & ssb_read32(mdev, SSB_INTVEC)) |
| 98 | irq = 0; | ||
| 99 | } | ||
| 75 | 100 | ||
| 76 | return irq; | 101 | return irq; |
| 77 | } | 102 | } |
| @@ -97,25 +122,56 @@ static void set_irq(struct ssb_device *dev, unsigned int irq) | |||
| 97 | struct ssb_device *mdev = bus->mipscore.dev; | 122 | struct ssb_device *mdev = bus->mipscore.dev; |
| 98 | u32 irqflag = ssb_irqflag(dev); | 123 | u32 irqflag = ssb_irqflag(dev); |
| 99 | 124 | ||
| 125 | BUG_ON(oldirq == 6); | ||
| 126 | |||
| 100 | dev->irq = irq + 2; | 127 | dev->irq = irq + 2; |
| 101 | 128 | ||
| 102 | ssb_dprintk(KERN_INFO PFX | ||
| 103 | "set_irq: core 0x%04x, irq %d => %d\n", | ||
| 104 | dev->id.coreid, oldirq, irq); | ||
| 105 | /* clear the old irq */ | 129 | /* clear the old irq */ |
| 106 | if (oldirq == 0) | 130 | if (oldirq == 0) |
| 107 | ssb_write32(mdev, SSB_INTVEC, (~(1 << irqflag) & ssb_read32(mdev, SSB_INTVEC))); | 131 | ssb_write32(mdev, SSB_INTVEC, (~(1 << irqflag) & ssb_read32(mdev, SSB_INTVEC))); |
| 108 | else | 132 | else if (oldirq != 5) |
| 109 | clear_irq(bus, oldirq); | 133 | clear_irq(bus, oldirq); |
| 110 | 134 | ||
| 111 | /* assign the new one */ | 135 | /* assign the new one */ |
| 112 | if (irq == 0) { | 136 | if (irq == 0) { |
| 113 | ssb_write32(mdev, SSB_INTVEC, ((1 << irqflag) | ssb_read32(mdev, SSB_INTVEC))); | 137 | ssb_write32(mdev, SSB_INTVEC, ((1 << irqflag) | ssb_read32(mdev, SSB_INTVEC))); |
| 114 | } else { | 138 | } else { |
| 139 | u32 ipsflag = ssb_read32(mdev, SSB_IPSFLAG); | ||
| 140 | if ((ipsflag & ipsflag_irq_mask[irq]) != ipsflag_irq_mask[irq]) { | ||
| 141 | u32 oldipsflag = (ipsflag & ipsflag_irq_mask[irq]) >> ipsflag_irq_shift[irq]; | ||
| 142 | struct ssb_device *olddev = find_device(dev, oldipsflag); | ||
| 143 | if (olddev) | ||
| 144 | set_irq(olddev, 0); | ||
| 145 | } | ||
| 115 | irqflag <<= ipsflag_irq_shift[irq]; | 146 | irqflag <<= ipsflag_irq_shift[irq]; |
| 116 | irqflag |= (ssb_read32(mdev, SSB_IPSFLAG) & ~ipsflag_irq_mask[irq]); | 147 | irqflag |= (ipsflag & ~ipsflag_irq_mask[irq]); |
| 117 | ssb_write32(mdev, SSB_IPSFLAG, irqflag); | 148 | ssb_write32(mdev, SSB_IPSFLAG, irqflag); |
| 118 | } | 149 | } |
| 150 | ssb_dprintk(KERN_INFO PFX | ||
| 151 | "set_irq: core 0x%04x, irq %d => %d\n", | ||
| 152 | dev->id.coreid, oldirq+2, irq+2); | ||
| 153 | } | ||
| 154 | |||
| 155 | static void print_irq(struct ssb_device *dev, unsigned int irq) | ||
| 156 | { | ||
| 157 | int i; | ||
| 158 | static const char *irq_name[] = {"2(S)", "3", "4", "5", "6", "D", "I"}; | ||
| 159 | ssb_dprintk(KERN_INFO PFX | ||
| 160 | "core 0x%04x, irq :", dev->id.coreid); | ||
| 161 | for (i = 0; i <= 6; i++) { | ||
| 162 | ssb_dprintk(" %s%s", irq_name[i], i==irq?"*":" "); | ||
| 163 | } | ||
| 164 | ssb_dprintk("\n"); | ||
| 165 | } | ||
| 166 | |||
| 167 | static void dump_irq(struct ssb_bus *bus) | ||
| 168 | { | ||
| 169 | int i; | ||
| 170 | for (i = 0; i < bus->nr_devices; i++) { | ||
| 171 | struct ssb_device *dev; | ||
| 172 | dev = &(bus->devices[i]); | ||
| 173 | print_irq(dev, ssb_mips_irq(dev)); | ||
| 174 | } | ||
| 119 | } | 175 | } |
| 120 | 176 | ||
| 121 | static void ssb_mips_serial_init(struct ssb_mipscore *mcore) | 177 | static void ssb_mips_serial_init(struct ssb_mipscore *mcore) |
| @@ -197,16 +253,23 @@ void ssb_mipscore_init(struct ssb_mipscore *mcore) | |||
| 197 | 253 | ||
| 198 | /* Assign IRQs to all cores on the bus, start with irq line 2, because serial usually takes 1 */ | 254 | /* Assign IRQs to all cores on the bus, start with irq line 2, because serial usually takes 1 */ |
| 199 | for (irq = 2, i = 0; i < bus->nr_devices; i++) { | 255 | for (irq = 2, i = 0; i < bus->nr_devices; i++) { |
| 256 | int mips_irq; | ||
| 200 | dev = &(bus->devices[i]); | 257 | dev = &(bus->devices[i]); |
| 201 | dev->irq = ssb_mips_irq(dev) + 2; | 258 | mips_irq = ssb_mips_irq(dev); |
| 259 | if (mips_irq > 4) | ||
| 260 | dev->irq = 0; | ||
| 261 | else | ||
| 262 | dev->irq = mips_irq + 2; | ||
| 263 | if (dev->irq > 5) | ||
| 264 | continue; | ||
| 202 | switch (dev->id.coreid) { | 265 | switch (dev->id.coreid) { |
| 203 | case SSB_DEV_USB11_HOST: | 266 | case SSB_DEV_USB11_HOST: |
| 204 | /* shouldn't need a separate irq line for non-4710, most of them have a proper | 267 | /* shouldn't need a separate irq line for non-4710, most of them have a proper |
| 205 | * external usb controller on the pci */ | 268 | * external usb controller on the pci */ |
| 206 | if ((bus->chip_id == 0x4710) && (irq <= 4)) { | 269 | if ((bus->chip_id == 0x4710) && (irq <= 4)) { |
| 207 | set_irq(dev, irq++); | 270 | set_irq(dev, irq++); |
| 208 | break; | ||
| 209 | } | 271 | } |
| 272 | break; | ||
| 210 | /* fallthrough */ | 273 | /* fallthrough */ |
| 211 | case SSB_DEV_PCI: | 274 | case SSB_DEV_PCI: |
| 212 | case SSB_DEV_ETHERNET: | 275 | case SSB_DEV_ETHERNET: |
| @@ -220,6 +283,8 @@ void ssb_mipscore_init(struct ssb_mipscore *mcore) | |||
| 220 | } | 283 | } |
| 221 | } | 284 | } |
| 222 | } | 285 | } |
| 286 | ssb_dprintk(KERN_INFO PFX "after irq reconfiguration\n"); | ||
| 287 | dump_irq(bus); | ||
| 223 | 288 | ||
| 224 | ssb_mips_serial_init(mcore); | 289 | ssb_mips_serial_init(mcore); |
| 225 | ssb_mips_flash_detect(mcore); | 290 | ssb_mips_flash_detect(mcore); |
diff --git a/drivers/video/cobalt_lcdfb.c b/drivers/video/cobalt_lcdfb.c index 7bad24ed04ef..108b89e09a80 100644 --- a/drivers/video/cobalt_lcdfb.c +++ b/drivers/video/cobalt_lcdfb.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Cobalt server LCD frame buffer driver. | 2 | * Cobalt server LCD frame buffer driver. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2008 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2008 Yoichi Yuasa <yuasa@linux-mips.org> |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
