diff options
| author | Paul Mundt <lethal@linux-sh.org> | 2008-01-19 02:06:01 -0500 |
|---|---|---|
| committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-27 23:19:03 -0500 |
| commit | a5350a9686efa65cbd2ad4677bcb9372c7ad05c7 (patch) | |
| tree | 43a8cda02dcc5cd4ca6786374635566bf0e421ba /arch | |
| parent | 427c727fd0637555a4bb6828c07bf36b9506ddde (diff) | |
sh: Kill off dead HS771RVoIP board support.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/sh/Kconfig | 7 | ||||
| -rw-r--r-- | arch/sh/Makefile | 1 | ||||
| -rw-r--r-- | arch/sh/boards/renesas/hs7751rvoip/Kconfig | 12 | ||||
| -rw-r--r-- | arch/sh/boards/renesas/hs7751rvoip/Makefile | 8 | ||||
| -rw-r--r-- | arch/sh/boards/renesas/hs7751rvoip/io.c | 283 | ||||
| -rw-r--r-- | arch/sh/boards/renesas/hs7751rvoip/irq.c | 116 | ||||
| -rw-r--r-- | arch/sh/boards/renesas/hs7751rvoip/pci.c | 149 | ||||
| -rw-r--r-- | arch/sh/boards/renesas/hs7751rvoip/setup.c | 105 | ||||
| -rw-r--r-- | arch/sh/configs/hs7751rvoip_defconfig | 908 | ||||
| -rw-r--r-- | arch/sh/drivers/pci/pci-auto.c | 2 | ||||
| -rw-r--r-- | arch/sh/tools/mach-types | 1 |
11 files changed, 0 insertions, 1592 deletions
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index ddbd610d27e7..85bd9ac6f5e0 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig | |||
| @@ -440,13 +440,6 @@ config SH_SECUREEDGE5410 | |||
| 440 | This includes both the OEM SecureEdge products as well as the | 440 | This includes both the OEM SecureEdge products as well as the |
| 441 | SME product line. | 441 | SME product line. |
| 442 | 442 | ||
| 443 | config SH_HS7751RVOIP | ||
| 444 | bool "HS7751RVOIP" | ||
| 445 | depends on CPU_SUBTYPE_SH7751R | ||
| 446 | help | ||
| 447 | Select HS7751RVOIP if configuring for a Renesas Technology | ||
| 448 | Sales VoIP board. | ||
| 449 | |||
| 450 | config SH_7710VOIPGW | 443 | config SH_7710VOIPGW |
| 451 | bool "SH7710-VOIP-GW" | 444 | bool "SH7710-VOIP-GW" |
| 452 | depends on CPU_SUBTYPE_SH7710 | 445 | depends on CPU_SUBTYPE_SH7710 |
diff --git a/arch/sh/Makefile b/arch/sh/Makefile index e04b19293652..21cc649e1c12 100644 --- a/arch/sh/Makefile +++ b/arch/sh/Makefile | |||
| @@ -112,7 +112,6 @@ machdir-$(CONFIG_SH_DREAMCAST) += dreamcast | |||
| 112 | machdir-$(CONFIG_SH_MPC1211) += mpc1211 | 112 | machdir-$(CONFIG_SH_MPC1211) += mpc1211 |
| 113 | machdir-$(CONFIG_SH_SH03) += sh03 | 113 | machdir-$(CONFIG_SH_SH03) += sh03 |
| 114 | machdir-$(CONFIG_SH_SECUREEDGE5410) += snapgear | 114 | machdir-$(CONFIG_SH_SECUREEDGE5410) += snapgear |
| 115 | machdir-$(CONFIG_SH_HS7751RVOIP) += renesas/hs7751rvoip | ||
| 116 | machdir-$(CONFIG_SH_RTS7751R2D) += renesas/rts7751r2d | 115 | machdir-$(CONFIG_SH_RTS7751R2D) += renesas/rts7751r2d |
| 117 | machdir-$(CONFIG_SH_7751_SYSTEMH) += renesas/systemh | 116 | machdir-$(CONFIG_SH_7751_SYSTEMH) += renesas/systemh |
| 118 | machdir-$(CONFIG_SH_EDOSK7705) += renesas/edosk7705 | 117 | machdir-$(CONFIG_SH_EDOSK7705) += renesas/edosk7705 |
diff --git a/arch/sh/boards/renesas/hs7751rvoip/Kconfig b/arch/sh/boards/renesas/hs7751rvoip/Kconfig deleted file mode 100644 index 1743be477be5..000000000000 --- a/arch/sh/boards/renesas/hs7751rvoip/Kconfig +++ /dev/null | |||
| @@ -1,12 +0,0 @@ | |||
| 1 | if SH_HS7751RVOIP | ||
| 2 | |||
| 3 | menu "HS7751RVoIP options" | ||
| 4 | |||
| 5 | config HS7751RVOIP_CODEC | ||
| 6 | bool "Support VoIP Codec section" | ||
| 7 | help | ||
| 8 | Selecting this option will support CODEC section. | ||
| 9 | |||
| 10 | endmenu | ||
| 11 | |||
| 12 | endif | ||
diff --git a/arch/sh/boards/renesas/hs7751rvoip/Makefile b/arch/sh/boards/renesas/hs7751rvoip/Makefile deleted file mode 100644 index e626377c55ee..000000000000 --- a/arch/sh/boards/renesas/hs7751rvoip/Makefile +++ /dev/null | |||
| @@ -1,8 +0,0 @@ | |||
| 1 | # | ||
| 2 | # Makefile for the HS7751RVoIP specific parts of the kernel | ||
| 3 | # | ||
| 4 | |||
| 5 | obj-y := setup.o io.o irq.o | ||
| 6 | |||
| 7 | obj-$(CONFIG_PCI) += pci.o | ||
| 8 | |||
diff --git a/arch/sh/boards/renesas/hs7751rvoip/io.c b/arch/sh/boards/renesas/hs7751rvoip/io.c deleted file mode 100644 index bb9aa0d62852..000000000000 --- a/arch/sh/boards/renesas/hs7751rvoip/io.c +++ /dev/null | |||
| @@ -1,283 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * linux/arch/sh/boards/renesas/hs7751rvoip/io.c | ||
| 3 | * | ||
| 4 | * Copyright (C) 2001 Ian da Silva, Jeremy Siegel | ||
| 5 | * Based largely on io_se.c. | ||
| 6 | * | ||
| 7 | * I/O routine for Renesas Technology sales HS7751RVoIP | ||
| 8 | * | ||
| 9 | * Initial version only to support LAN access; some | ||
| 10 | * placeholder code from io_hs7751rvoip.c left in with the | ||
| 11 | * expectation of later SuperIO and PCMCIA access. | ||
| 12 | */ | ||
| 13 | #include <linux/kernel.h> | ||
| 14 | #include <linux/types.h> | ||
| 15 | #include <linux/module.h> | ||
| 16 | #include <linux/pci.h> | ||
| 17 | #include <asm/io.h> | ||
| 18 | #include <asm/hs7751rvoip.h> | ||
| 19 | #include <asm/addrspace.h> | ||
| 20 | |||
| 21 | extern void *area6_io8_base; /* Area 6 8bit I/O Base address */ | ||
| 22 | extern void *area5_io16_base; /* Area 5 16bit I/O Base address */ | ||
| 23 | |||
| 24 | /* | ||
| 25 | * The 7751R HS7751RVoIP uses the built-in PCI controller (PCIC) | ||
| 26 | * of the 7751R processor, and has a SuperIO accessible via the PCI. | ||
| 27 | * The board also includes a PCMCIA controller on its memory bus, | ||
| 28 | * like the other Solution Engine boards. | ||
| 29 | */ | ||
| 30 | |||
| 31 | #define CODEC_IO_BASE 0x1000 | ||
| 32 | #define CODEC_IOMAP(a) ((unsigned long)area6_io8_base + ((a) - CODEC_IO_BASE)) | ||
| 33 | |||
| 34 | static inline unsigned long port2adr(unsigned int port) | ||
| 35 | { | ||
| 36 | if ((0x1f0 <= port && port < 0x1f8) || port == 0x3f6) | ||
| 37 | if (port == 0x3f6) | ||
| 38 | return ((unsigned long)area5_io16_base + 0x0c); | ||
| 39 | else | ||
| 40 | return ((unsigned long)area5_io16_base + 0x800 + | ||
| 41 | ((port-0x1f0) << 1)); | ||
| 42 | else | ||
| 43 | maybebadio((unsigned long)port); | ||
| 44 | return port; | ||
| 45 | } | ||
| 46 | |||
| 47 | /* The 7751R HS7751RVoIP seems to have everything hooked */ | ||
| 48 | /* up pretty normally (nothing on high-bytes only...) so this */ | ||
| 49 | /* shouldn't be needed */ | ||
| 50 | static inline int shifted_port(unsigned long port) | ||
| 51 | { | ||
| 52 | /* For IDE registers, value is not shifted */ | ||
| 53 | if ((0x1f0 <= port && port < 0x1f8) || port == 0x3f6) | ||
| 54 | return 0; | ||
| 55 | else | ||
| 56 | return 1; | ||
| 57 | } | ||
| 58 | |||
| 59 | #if defined(CONFIG_HS7751RVOIP_CODEC) | ||
| 60 | #define codec_port(port) \ | ||
| 61 | ((CODEC_IO_BASE <= (port)) && ((port) < (CODEC_IO_BASE + 0x20))) | ||
| 62 | #else | ||
| 63 | #define codec_port(port) (0) | ||
| 64 | #endif | ||
| 65 | |||
| 66 | /* | ||
| 67 | * General outline: remap really low stuff [eventually] to SuperIO, | ||
| 68 | * stuff in PCI IO space (at or above window at pci.h:PCIBIOS_MIN_IO) | ||
| 69 | * is mapped through the PCI IO window. Stuff with high bits (PXSEG) | ||
| 70 | * should be way beyond the window, and is used w/o translation for | ||
| 71 | * compatibility. | ||
| 72 | */ | ||
| 73 | unsigned char hs7751rvoip_inb(unsigned long port) | ||
| 74 | { | ||
| 75 | if (PXSEG(port)) | ||
| 76 | return ctrl_inb(port); | ||
| 77 | else if (codec_port(port)) | ||
| 78 | return ctrl_inb(CODEC_IOMAP(port)); | ||
| 79 | else if (is_pci_ioaddr(port) || shifted_port(port)) | ||
| 80 | return ctrl_inb(pci_ioaddr(port)); | ||
| 81 | else | ||
| 82 | return ctrl_inw(port2adr(port)) & 0xff; | ||
| 83 | } | ||
| 84 | |||
| 85 | unsigned char hs7751rvoip_inb_p(unsigned long port) | ||
| 86 | { | ||
| 87 | unsigned char v; | ||
| 88 | |||
| 89 | if (PXSEG(port)) | ||
| 90 | v = ctrl_inb(port); | ||
| 91 | else if (codec_port(port)) | ||
| 92 | v = ctrl_inb(CODEC_IOMAP(port)); | ||
| 93 | else if (is_pci_ioaddr(port) || shifted_port(port)) | ||
| 94 | v = ctrl_inb(pci_ioaddr(port)); | ||
| 95 | else | ||
| 96 | v = ctrl_inw(port2adr(port)) & 0xff; | ||
| 97 | ctrl_delay(); | ||
| 98 | return v; | ||
| 99 | } | ||
| 100 | |||
| 101 | unsigned short hs7751rvoip_inw(unsigned long port) | ||
| 102 | { | ||
| 103 | if (PXSEG(port)) | ||
| 104 | return ctrl_inw(port); | ||
| 105 | else if (is_pci_ioaddr(port) || shifted_port(port)) | ||
| 106 | return ctrl_inw(pci_ioaddr(port)); | ||
| 107 | else | ||
| 108 | maybebadio(port); | ||
| 109 | return 0; | ||
| 110 | } | ||
| 111 | |||
| 112 | unsigned int hs7751rvoip_inl(unsigned long port) | ||
| 113 | { | ||
| 114 | if (PXSEG(port)) | ||
| 115 | return ctrl_inl(port); | ||
| 116 | else if (is_pci_ioaddr(port) || shifted_port(port)) | ||
| 117 | return ctrl_inl(pci_ioaddr(port)); | ||
| 118 | else | ||
| 119 | maybebadio(port); | ||
| 120 | return 0; | ||
| 121 | } | ||
| 122 | |||
| 123 | void hs7751rvoip_outb(unsigned char value, unsigned long port) | ||
| 124 | { | ||
| 125 | |||
| 126 | if (PXSEG(port)) | ||
| 127 | ctrl_outb(value, port); | ||
| 128 | else if (codec_port(port)) | ||
| 129 | ctrl_outb(value, CODEC_IOMAP(port)); | ||
| 130 | else if (is_pci_ioaddr(port) || shifted_port(port)) | ||
| 131 | ctrl_outb(value, pci_ioaddr(port)); | ||
| 132 | else | ||
| 133 | ctrl_outb(value, port2adr(port)); | ||
| 134 | } | ||
| 135 | |||
| 136 | void hs7751rvoip_outb_p(unsigned char value, unsigned long port) | ||
| 137 | { | ||
| 138 | if (PXSEG(port)) | ||
| 139 | ctrl_outb(value, port); | ||
| 140 | else if (codec_port(port)) | ||
| 141 | ctrl_outb(value, CODEC_IOMAP(port)); | ||
| 142 | else if (is_pci_ioaddr(port) || shifted_port(port)) | ||
| 143 | ctrl_outb(value, pci_ioaddr(port)); | ||
| 144 | else | ||
| 145 | ctrl_outw(value, port2adr(port)); | ||
| 146 | |||
| 147 | ctrl_delay(); | ||
| 148 | } | ||
| 149 | |||
| 150 | void hs7751rvoip_outw(unsigned short value, unsigned long port) | ||
| 151 | { | ||
| 152 | if (PXSEG(port)) | ||
| 153 | ctrl_outw(value, port); | ||
| 154 | else if (is_pci_ioaddr(port) || shifted_port(port)) | ||
| 155 | ctrl_outw(value, pci_ioaddr(port)); | ||
| 156 | else | ||
| 157 | maybebadio(port); | ||
| 158 | } | ||
| 159 | |||
| 160 | void hs7751rvoip_outl(unsigned int value, unsigned long port) | ||
| 161 | { | ||
| 162 | if (PXSEG(port)) | ||
| 163 | ctrl_outl(value, port); | ||
| 164 | else if (is_pci_ioaddr(port) || shifted_port(port)) | ||
| 165 | ctrl_outl(value, pci_ioaddr(port)); | ||
| 166 | else | ||
| 167 | maybebadio(port); | ||
| 168 | } | ||
| 169 | |||
| 170 | void hs7751rvoip_insb(unsigned long port, void *addr, unsigned long count) | ||
| 171 | { | ||
| 172 | u8 *buf = addr; | ||
| 173 | |||
| 174 | if (PXSEG(port)) | ||
| 175 | while (count--) | ||
| 176 | *buf++ = ctrl_inb(port); | ||
| 177 | else if (codec_port(port)) | ||
| 178 | while (count--) | ||
| 179 | *buf++ = ctrl_inb(CODEC_IOMAP(port)); | ||
| 180 | else if (is_pci_ioaddr(port) || shifted_port(port)) { | ||
| 181 | volatile u8 *bp = (volatile u8 *)pci_ioaddr(port); | ||
| 182 | |||
| 183 | while (count--) | ||
| 184 | *buf++ = *bp; | ||
| 185 | } else { | ||
| 186 | volatile u16 *p = (volatile u16 *)port2adr(port); | ||
| 187 | |||
| 188 | while (count--) | ||
| 189 | *buf++ = *p & 0xff; | ||
| 190 | } | ||
| 191 | } | ||
| 192 | |||
| 193 | void hs7751rvoip_insw(unsigned long port, void *addr, unsigned long count) | ||
| 194 | { | ||
| 195 | volatile u16 *p; | ||
| 196 | u16 *buf = addr; | ||
| 197 | |||
| 198 | if (PXSEG(port)) | ||
| 199 | p = (volatile u16 *)port; | ||
| 200 | else if (is_pci_ioaddr(port) || shifted_port(port)) | ||
| 201 | p = (volatile u16 *)pci_ioaddr(port); | ||
| 202 | else | ||
| 203 | p = (volatile u16 *)port2adr(port); | ||
| 204 | while (count--) | ||
| 205 | *buf++ = *p; | ||
| 206 | } | ||
| 207 | |||
| 208 | void hs7751rvoip_insl(unsigned long port, void *addr, unsigned long count) | ||
| 209 | { | ||
| 210 | |||
| 211 | if (is_pci_ioaddr(port) || shifted_port(port)) { | ||
| 212 | volatile u32 *p = (volatile u32 *)pci_ioaddr(port); | ||
| 213 | u32 *buf = addr; | ||
| 214 | |||
| 215 | while (count--) | ||
| 216 | *buf++ = *p; | ||
| 217 | } else | ||
| 218 | maybebadio(port); | ||
| 219 | } | ||
| 220 | |||
| 221 | void hs7751rvoip_outsb(unsigned long port, const void *addr, unsigned long count) | ||
| 222 | { | ||
| 223 | const u8 *buf = addr; | ||
| 224 | |||
| 225 | if (PXSEG(port)) | ||
| 226 | while (count--) | ||
| 227 | ctrl_outb(*buf++, port); | ||
| 228 | else if (codec_port(port)) | ||
| 229 | while (count--) | ||
| 230 | ctrl_outb(*buf++, CODEC_IOMAP(port)); | ||
| 231 | else if (is_pci_ioaddr(port) || shifted_port(port)) { | ||
| 232 | volatile u8 *bp = (volatile u8 *)pci_ioaddr(port); | ||
| 233 | |||
| 234 | while (count--) | ||
| 235 | *bp = *buf++; | ||
| 236 | } else { | ||
| 237 | volatile u16 *p = (volatile u16 *)port2adr(port); | ||
| 238 | |||
| 239 | while (count--) | ||
| 240 | *p = *buf++; | ||
| 241 | } | ||
| 242 | } | ||
| 243 | |||
| 244 | void hs7751rvoip_outsw(unsigned long port, const void *addr, unsigned long count) | ||
| 245 | { | ||
| 246 | volatile u16 *p; | ||
| 247 | const u16 *buf = addr; | ||
| 248 | |||
| 249 | if (PXSEG(port)) | ||
| 250 | p = (volatile u16 *)port; | ||
| 251 | else if (is_pci_ioaddr(port) || shifted_port(port)) | ||
| 252 | p = (volatile u16 *)pci_ioaddr(port); | ||
| 253 | else | ||
| 254 | p = (volatile u16 *)port2adr(port); | ||
| 255 | |||
| 256 | while (count--) | ||
| 257 | *p = *buf++; | ||
| 258 | } | ||
| 259 | |||
| 260 | void hs7751rvoip_outsl(unsigned long port, const void *addr, unsigned long count) | ||
| 261 | { | ||
| 262 | const u32 *buf = addr; | ||
| 263 | |||
| 264 | if (is_pci_ioaddr(port) || shifted_port(port)) { | ||
| 265 | volatile u32 *p = (volatile u32 *)pci_ioaddr(port); | ||
| 266 | |||
| 267 | while (count--) | ||
| 268 | *p = *buf++; | ||
| 269 | } else | ||
| 270 | maybebadio(port); | ||
| 271 | } | ||
| 272 | |||
| 273 | void __iomem *hs7751rvoip_ioport_map(unsigned long port, unsigned int size) | ||
| 274 | { | ||
| 275 | if (PXSEG(port)) | ||
| 276 | return (void __iomem *)port; | ||
| 277 | else if (unlikely(codec_port(port) && (size == 1))) | ||
| 278 | return (void __iomem *)CODEC_IOMAP(port); | ||
| 279 | else if (is_pci_ioaddr(port)) | ||
| 280 | return (void __iomem *)pci_ioaddr(port); | ||
| 281 | |||
| 282 | return (void __iomem *)port2adr(port); | ||
| 283 | } | ||
diff --git a/arch/sh/boards/renesas/hs7751rvoip/irq.c b/arch/sh/boards/renesas/hs7751rvoip/irq.c deleted file mode 100644 index e55c6686b21f..000000000000 --- a/arch/sh/boards/renesas/hs7751rvoip/irq.c +++ /dev/null | |||
| @@ -1,116 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * linux/arch/sh/boards/renesas/hs7751rvoip/irq.c | ||
| 3 | * | ||
| 4 | * Copyright (C) 2000 Kazumoto Kojima | ||
| 5 | * | ||
| 6 | * Renesas Technology Sales HS7751RVoIP Support. | ||
| 7 | * | ||
| 8 | * Modified for HS7751RVoIP by | ||
| 9 | * Atom Create Engineering Co., Ltd. 2002. | ||
| 10 | * Lineo uSolutions, Inc. 2003. | ||
| 11 | */ | ||
| 12 | |||
| 13 | #include <linux/init.h> | ||
| 14 | #include <linux/irq.h> | ||
| 15 | #include <linux/interrupt.h> | ||
| 16 | #include <asm/io.h> | ||
| 17 | #include <asm/irq.h> | ||
| 18 | #include <asm/hs7751rvoip.h> | ||
| 19 | |||
| 20 | static int mask_pos[] = {8, 9, 10, 11, 12, 13, 0, 1, 2, 3, 4, 5, 6, 7}; | ||
| 21 | |||
| 22 | static void enable_hs7751rvoip_irq(unsigned int irq); | ||
| 23 | static void disable_hs7751rvoip_irq(unsigned int irq); | ||
| 24 | |||
| 25 | /* shutdown is same as "disable" */ | ||
| 26 | #define shutdown_hs7751rvoip_irq disable_hs7751rvoip_irq | ||
| 27 | |||
| 28 | static void ack_hs7751rvoip_irq(unsigned int irq); | ||
| 29 | static void end_hs7751rvoip_irq(unsigned int irq); | ||
| 30 | |||
| 31 | static unsigned int startup_hs7751rvoip_irq(unsigned int irq) | ||
| 32 | { | ||
| 33 | enable_hs7751rvoip_irq(irq); | ||
| 34 | return 0; /* never anything pending */ | ||
| 35 | } | ||
| 36 | |||
| 37 | static void disable_hs7751rvoip_irq(unsigned int irq) | ||
| 38 | { | ||
| 39 | unsigned short val; | ||
| 40 | unsigned short mask = 0xffff ^ (0x0001 << mask_pos[irq]); | ||
| 41 | |||
| 42 | /* Set the priority in IPR to 0 */ | ||
| 43 | val = ctrl_inw(IRLCNTR3); | ||
| 44 | val &= mask; | ||
| 45 | ctrl_outw(val, IRLCNTR3); | ||
| 46 | } | ||
| 47 | |||
| 48 | static void enable_hs7751rvoip_irq(unsigned int irq) | ||
| 49 | { | ||
| 50 | unsigned short val; | ||
| 51 | unsigned short value = (0x0001 << mask_pos[irq]); | ||
| 52 | |||
| 53 | /* Set priority in IPR back to original value */ | ||
| 54 | val = ctrl_inw(IRLCNTR3); | ||
| 55 | val |= value; | ||
| 56 | ctrl_outw(val, IRLCNTR3); | ||
| 57 | } | ||
| 58 | |||
| 59 | static void ack_hs7751rvoip_irq(unsigned int irq) | ||
| 60 | { | ||
| 61 | disable_hs7751rvoip_irq(irq); | ||
| 62 | } | ||
| 63 | |||
| 64 | static void end_hs7751rvoip_irq(unsigned int irq) | ||
| 65 | { | ||
| 66 | if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS))) | ||
| 67 | enable_hs7751rvoip_irq(irq); | ||
| 68 | } | ||
| 69 | |||
| 70 | static struct hw_interrupt_type hs7751rvoip_irq_type = { | ||
| 71 | .typename = "HS7751RVoIP IRQ", | ||
| 72 | .startup = startup_hs7751rvoip_irq, | ||
| 73 | .shutdown = shutdown_hs7751rvoip_irq, | ||
| 74 | .enable = enable_hs7751rvoip_irq, | ||
| 75 | .disable = disable_hs7751rvoip_irq, | ||
| 76 | .ack = ack_hs7751rvoip_irq, | ||
| 77 | .end = end_hs7751rvoip_irq, | ||
| 78 | }; | ||
| 79 | |||
| 80 | static void make_hs7751rvoip_irq(unsigned int irq) | ||
| 81 | { | ||
| 82 | disable_irq_nosync(irq); | ||
| 83 | irq_desc[irq].chip = &hs7751rvoip_irq_type; | ||
| 84 | disable_hs7751rvoip_irq(irq); | ||
| 85 | } | ||
| 86 | |||
| 87 | /* | ||
| 88 | * Initialize IRQ setting | ||
| 89 | */ | ||
| 90 | void __init init_hs7751rvoip_IRQ(void) | ||
| 91 | { | ||
| 92 | int i; | ||
| 93 | |||
| 94 | /* IRL0=ON HOOK1 | ||
| 95 | * IRL1=OFF HOOK1 | ||
| 96 | * IRL2=ON HOOK2 | ||
| 97 | * IRL3=OFF HOOK2 | ||
| 98 | * IRL4=Ringing Detection | ||
| 99 | * IRL5=CODEC | ||
| 100 | * IRL6=Ethernet | ||
| 101 | * IRL7=Ethernet Hub | ||
| 102 | * IRL8=USB Communication | ||
| 103 | * IRL9=USB Connection | ||
| 104 | * IRL10=USB DMA | ||
| 105 | * IRL11=CF Card | ||
| 106 | * IRL12=PCMCIA | ||
| 107 | * IRL13=PCI Slot | ||
| 108 | */ | ||
| 109 | ctrl_outw(0x9876, IRLCNTR1); | ||
| 110 | ctrl_outw(0xdcba, IRLCNTR2); | ||
| 111 | ctrl_outw(0x0050, IRLCNTR4); | ||
| 112 | ctrl_outw(0x4321, IRLCNTR5); | ||
| 113 | |||
| 114 | for (i=0; i<14; i++) | ||
| 115 | make_hs7751rvoip_irq(i); | ||
| 116 | } | ||
diff --git a/arch/sh/boards/renesas/hs7751rvoip/pci.c b/arch/sh/boards/renesas/hs7751rvoip/pci.c deleted file mode 100644 index 1c0ddee30d21..000000000000 --- a/arch/sh/boards/renesas/hs7751rvoip/pci.c +++ /dev/null | |||
| @@ -1,149 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * linux/arch/sh/boards/renesas/hs7751rvoip/pci.c | ||
| 3 | * | ||
| 4 | * Author: Ian DaSilva (idasilva@mvista.com) | ||
| 5 | * | ||
| 6 | * Highly leveraged from pci-bigsur.c, written by Dustin McIntire. | ||
| 7 | * | ||
| 8 | * May be copied or modified under the terms of the GNU General Public | ||
| 9 | * License. See linux/COPYING for more information. | ||
| 10 | * | ||
| 11 | * PCI initialization for the Renesas SH7751R HS7751RVoIP board | ||
| 12 | */ | ||
| 13 | |||
| 14 | #include <linux/kernel.h> | ||
| 15 | #include <linux/types.h> | ||
| 16 | #include <linux/init.h> | ||
| 17 | #include <linux/delay.h> | ||
| 18 | #include <linux/pci.h> | ||
| 19 | #include <linux/module.h> | ||
| 20 | |||
| 21 | #include <asm/io.h> | ||
| 22 | #include "../../../drivers/pci/pci-sh7751.h" | ||
| 23 | #include <asm/hs7751rvoip/hs7751rvoip.h> | ||
| 24 | |||
| 25 | #define PCIMCR_MRSET_OFF 0xBFFFFFFF | ||
| 26 | #define PCIMCR_RFSH_OFF 0xFFFFFFFB | ||
| 27 | |||
| 28 | /* | ||
| 29 | * Only long word accesses of the PCIC's internal local registers and the | ||
| 30 | * configuration registers from the CPU is supported. | ||
| 31 | */ | ||
| 32 | #define PCIC_WRITE(x,v) writel((v), PCI_REG(x)) | ||
| 33 | #define PCIC_READ(x) readl(PCI_REG(x)) | ||
| 34 | |||
| 35 | /* | ||
| 36 | * Description: This function sets up and initializes the pcic, sets | ||
| 37 | * up the BARS, maps the DRAM into the address space etc, etc. | ||
| 38 | */ | ||
| 39 | int __init pcibios_init_platform(void) | ||
| 40 | { | ||
| 41 | unsigned long bcr1, wcr1, wcr2, wcr3, mcr; | ||
| 42 | unsigned short bcr2, bcr3; | ||
| 43 | |||
| 44 | /* | ||
| 45 | * Initialize the slave bus controller on the pcic. The values used | ||
| 46 | * here should not be hardcoded, but they should be taken from the bsc | ||
| 47 | * on the processor, to make this function as generic as possible. | ||
| 48 | * (i.e. Another sbc may usr different SDRAM timing settings -- in order | ||
| 49 | * for the pcic to work, its settings need to be exactly the same.) | ||
| 50 | */ | ||
| 51 | bcr1 = (*(volatile unsigned long *)(SH7751_BCR1)); | ||
| 52 | bcr2 = (*(volatile unsigned short *)(SH7751_BCR2)); | ||
| 53 | bcr3 = (*(volatile unsigned short *)(SH7751_BCR3)); | ||
| 54 | wcr1 = (*(volatile unsigned long *)(SH7751_WCR1)); | ||
| 55 | wcr2 = (*(volatile unsigned long *)(SH7751_WCR2)); | ||
| 56 | wcr3 = (*(volatile unsigned long *)(SH7751_WCR3)); | ||
| 57 | mcr = (*(volatile unsigned long *)(SH7751_MCR)); | ||
| 58 | |||
| 59 | bcr1 = bcr1 | 0x00080000; /* Enable Bit 19, BREQEN */ | ||
| 60 | (*(volatile unsigned long *)(SH7751_BCR1)) = bcr1; | ||
| 61 | |||
| 62 | bcr1 = bcr1 | 0x40080000; /* Enable Bit 19 BREQEN, set PCIC to slave */ | ||
| 63 | PCIC_WRITE(SH7751_PCIBCR1, bcr1); /* PCIC BCR1 */ | ||
| 64 | PCIC_WRITE(SH7751_PCIBCR2, bcr2); /* PCIC BCR2 */ | ||
| 65 | PCIC_WRITE(SH7751_PCIBCR3, bcr3); /* PCIC BCR3 */ | ||
| 66 | PCIC_WRITE(SH7751_PCIWCR1, wcr1); /* PCIC WCR1 */ | ||
| 67 | PCIC_WRITE(SH7751_PCIWCR2, wcr2); /* PCIC WCR2 */ | ||
| 68 | PCIC_WRITE(SH7751_PCIWCR3, wcr3); /* PCIC WCR3 */ | ||
| 69 | mcr = (mcr & PCIMCR_MRSET_OFF) & PCIMCR_RFSH_OFF; | ||
| 70 | PCIC_WRITE(SH7751_PCIMCR, mcr); /* PCIC MCR */ | ||
| 71 | |||
| 72 | /* Enable all interrupts, so we know what to fix */ | ||
| 73 | PCIC_WRITE(SH7751_PCIINTM, 0x0000c3ff); | ||
| 74 | PCIC_WRITE(SH7751_PCIAINTM, 0x0000380f); | ||
| 75 | |||
| 76 | /* Set up standard PCI config registers */ | ||
| 77 | PCIC_WRITE(SH7751_PCICONF1, 0xFB900047); /* Bus Master, Mem & I/O access */ | ||
| 78 | PCIC_WRITE(SH7751_PCICONF2, 0x00000000); /* PCI Class code & Revision ID */ | ||
| 79 | PCIC_WRITE(SH7751_PCICONF4, 0xab000001); /* PCI I/O address (local regs) */ | ||
| 80 | PCIC_WRITE(SH7751_PCICONF5, 0x0c000000); /* PCI MEM address (local RAM) */ | ||
| 81 | PCIC_WRITE(SH7751_PCICONF6, 0xd0000000); /* PCI MEM address (unused) */ | ||
| 82 | PCIC_WRITE(SH7751_PCICONF11, 0x35051054); /* PCI Subsystem ID & Vendor ID */ | ||
| 83 | PCIC_WRITE(SH7751_PCILSR0, 0x03f00000); /* MEM (full 64M exposed) */ | ||
| 84 | PCIC_WRITE(SH7751_PCILSR1, 0x00000000); /* MEM (unused) */ | ||
| 85 | PCIC_WRITE(SH7751_PCILAR0, 0x0c000000); /* MEM (direct map from PCI) */ | ||
| 86 | PCIC_WRITE(SH7751_PCILAR1, 0x00000000); /* MEM (unused) */ | ||
| 87 | |||
| 88 | /* Now turn it on... */ | ||
| 89 | PCIC_WRITE(SH7751_PCICR, 0xa5000001); | ||
| 90 | |||
| 91 | /* | ||
| 92 | * Set PCIMBR and PCIIOBR here, assuming a single window | ||
| 93 | * (16M MEM, 256K IO) is enough. If a larger space is | ||
| 94 | * needed, the readx/writex and inx/outx functions will | ||
| 95 | * have to do more (e.g. setting registers for each call). | ||
| 96 | */ | ||
| 97 | |||
| 98 | /* | ||
| 99 | * Set the MBR so PCI address is one-to-one with window, | ||
| 100 | * meaning all calls go straight through... use ifdef to | ||
| 101 | * catch erroneous assumption. | ||
| 102 | */ | ||
| 103 | BUG_ON(PCIBIOS_MIN_MEM != SH7751_PCI_MEMORY_BASE); | ||
| 104 | |||
| 105 | PCIC_WRITE(SH7751_PCIMBR, PCIBIOS_MIN_MEM); | ||
| 106 | |||
| 107 | /* Set IOBR for window containing area specified in pci.h */ | ||
| 108 | PCIC_WRITE(SH7751_PCIIOBR, (PCIBIOS_MIN_IO & SH7751_PCIIOBR_MASK)); | ||
| 109 | |||
| 110 | /* All done, may as well say so... */ | ||
| 111 | printk("SH7751R PCI: Finished initialization of the PCI controller\n"); | ||
| 112 | |||
| 113 | return 1; | ||
| 114 | } | ||
| 115 | |||
| 116 | int __init pcibios_map_platform_irq(u8 slot, u8 pin) | ||
| 117 | { | ||
| 118 | switch (slot) { | ||
| 119 | case 0: return IRQ_PCISLOT; /* PCI Extend slot */ | ||
| 120 | case 1: return IRQ_PCMCIA; /* PCI Cardbus Bridge */ | ||
| 121 | case 2: return IRQ_PCIETH; /* Realtek Ethernet controller */ | ||
| 122 | case 3: return IRQ_PCIHUB; /* Realtek Ethernet Hub controller */ | ||
| 123 | default: | ||
| 124 | printk("PCI: Bad IRQ mapping request for slot %d\n", slot); | ||
| 125 | return -1; | ||
| 126 | } | ||
| 127 | } | ||
| 128 | |||
| 129 | static struct resource sh7751_io_resource = { | ||
| 130 | .name = "SH7751_IO", | ||
| 131 | .start = 0x4000, | ||
| 132 | .end = 0x4000 + SH7751_PCI_IO_SIZE - 1, | ||
| 133 | .flags = IORESOURCE_IO | ||
| 134 | }; | ||
| 135 | |||
| 136 | static struct resource sh7751_mem_resource = { | ||
| 137 | .name = "SH7751_mem", | ||
| 138 | .start = SH7751_PCI_MEMORY_BASE, | ||
| 139 | .end = SH7751_PCI_MEMORY_BASE + SH7751_PCI_MEM_SIZE - 1, | ||
| 140 | .flags = IORESOURCE_MEM | ||
| 141 | }; | ||
| 142 | |||
| 143 | extern struct pci_ops sh7751_pci_ops; | ||
| 144 | |||
| 145 | struct pci_channel board_pci_channels[] = { | ||
| 146 | { &sh7751_pci_ops, &sh7751_io_resource, &sh7751_mem_resource, 0, 0xff }, | ||
| 147 | { NULL, NULL, NULL, 0, 0 }, | ||
| 148 | }; | ||
| 149 | EXPORT_SYMBOL(board_pci_channels); | ||
diff --git a/arch/sh/boards/renesas/hs7751rvoip/setup.c b/arch/sh/boards/renesas/hs7751rvoip/setup.c deleted file mode 100644 index c05625975f2c..000000000000 --- a/arch/sh/boards/renesas/hs7751rvoip/setup.c +++ /dev/null | |||
| @@ -1,105 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Renesas Technology Sales HS7751RVoIP Support. | ||
| 3 | * | ||
| 4 | * Copyright (C) 2000 Kazumoto Kojima | ||
| 5 | * | ||
| 6 | * Modified for HS7751RVoIP by | ||
| 7 | * Atom Create Engineering Co., Ltd. 2002. | ||
| 8 | * Lineo uSolutions, Inc. 2003. | ||
| 9 | */ | ||
| 10 | #include <linux/init.h> | ||
| 11 | #include <linux/irq.h> | ||
| 12 | #include <linux/mm.h> | ||
| 13 | #include <linux/pm.h> | ||
| 14 | #include <asm/hs7751rvoip.h> | ||
| 15 | #include <asm/io.h> | ||
| 16 | #include <asm/machvec.h> | ||
| 17 | |||
| 18 | static void hs7751rvoip_power_off(void) | ||
| 19 | { | ||
| 20 | ctrl_outw(ctrl_inw(PA_OUTPORTR) & 0xffdf, PA_OUTPORTR); | ||
| 21 | } | ||
| 22 | |||
| 23 | void *area5_io8_base; | ||
| 24 | void *area6_io8_base; | ||
| 25 | void *area5_io16_base; | ||
| 26 | void *area6_io16_base; | ||
| 27 | |||
| 28 | static int __init hs7751rvoip_cf_init(void) | ||
| 29 | { | ||
| 30 | pgprot_t prot; | ||
| 31 | unsigned long paddrbase; | ||
| 32 | |||
| 33 | /* open I/O area window */ | ||
| 34 | paddrbase = virt_to_phys((void *)(PA_AREA5_IO+0x00000800)); | ||
| 35 | prot = PAGE_KERNEL_PCC(1, _PAGE_PCC_COM16); | ||
| 36 | area5_io16_base = p3_ioremap(paddrbase, PAGE_SIZE, prot.pgprot); | ||
| 37 | if (!area5_io16_base) { | ||
| 38 | printk("allocate_cf_area : can't open CF I/O window!\n"); | ||
| 39 | return -ENOMEM; | ||
| 40 | } | ||
| 41 | |||
| 42 | /* XXX : do we need attribute and common-memory area also? */ | ||
| 43 | |||
| 44 | paddrbase = virt_to_phys((void *)PA_AREA6_IO); | ||
| 45 | #if defined(CONFIG_HS7751RVOIP_CODEC) | ||
| 46 | prot = PAGE_KERNEL_PCC(0, _PAGE_PCC_COM8); | ||
| 47 | #else | ||
| 48 | prot = PAGE_KERNEL_PCC(0, _PAGE_PCC_IO8); | ||
| 49 | #endif | ||
| 50 | area6_io8_base = p3_ioremap(paddrbase, PAGE_SIZE, prot.pgprot); | ||
| 51 | if (!area6_io8_base) { | ||
| 52 | printk("allocate_cf_area : can't open CODEC I/O 8bit window!\n"); | ||
| 53 | return -ENOMEM; | ||
| 54 | } | ||
| 55 | prot = PAGE_KERNEL_PCC(0, _PAGE_PCC_IO16); | ||
| 56 | area6_io16_base = p3_ioremap(paddrbase, PAGE_SIZE, prot.pgprot); | ||
| 57 | if (!area6_io16_base) { | ||
| 58 | printk("allocate_cf_area : can't open CODEC I/O 16bit window!\n"); | ||
| 59 | return -ENOMEM; | ||
| 60 | } | ||
| 61 | |||
| 62 | return 0; | ||
| 63 | } | ||
| 64 | device_initcall(hs7751rvoip_cf_init); | ||
| 65 | |||
| 66 | /* | ||
| 67 | * Initialize the board | ||
| 68 | */ | ||
| 69 | static void __init hs7751rvoip_setup(char **cmdline_p) | ||
| 70 | { | ||
| 71 | ctrl_outb(0xf0, PA_OUTPORTR); | ||
| 72 | pm_power_off = hs7751rvoip_power_off; | ||
| 73 | |||
| 74 | printk(KERN_INFO "Renesas Technology Sales HS7751RVoIP-2 support.\n"); | ||
| 75 | } | ||
| 76 | |||
| 77 | static struct sh_machine_vector mv_hs7751rvoip __initmv = { | ||
| 78 | .mv_name = "HS7751RVoIP", | ||
| 79 | .mv_setup = hs7751rvoip_setup, | ||
| 80 | .mv_nr_irqs = 72, | ||
| 81 | |||
| 82 | .mv_inb = hs7751rvoip_inb, | ||
| 83 | .mv_inw = hs7751rvoip_inw, | ||
| 84 | .mv_inl = hs7751rvoip_inl, | ||
| 85 | .mv_outb = hs7751rvoip_outb, | ||
| 86 | .mv_outw = hs7751rvoip_outw, | ||
| 87 | .mv_outl = hs7751rvoip_outl, | ||
| 88 | |||
| 89 | .mv_inb_p = hs7751rvoip_inb_p, | ||
| 90 | .mv_inw_p = hs7751rvoip_inw, | ||
| 91 | .mv_inl_p = hs7751rvoip_inl, | ||
| 92 | .mv_outb_p = hs7751rvoip_outb_p, | ||
| 93 | .mv_outw_p = hs7751rvoip_outw, | ||
| 94 | .mv_outl_p = hs7751rvoip_outl, | ||
| 95 | |||
| 96 | .mv_insb = hs7751rvoip_insb, | ||
| 97 | .mv_insw = hs7751rvoip_insw, | ||
| 98 | .mv_insl = hs7751rvoip_insl, | ||
| 99 | .mv_outsb = hs7751rvoip_outsb, | ||
| 100 | .mv_outsw = hs7751rvoip_outsw, | ||
| 101 | .mv_outsl = hs7751rvoip_outsl, | ||
| 102 | |||
| 103 | .mv_init_irq = init_hs7751rvoip_IRQ, | ||
| 104 | .mv_ioport_map = hs7751rvoip_ioport_map, | ||
| 105 | }; | ||
diff --git a/arch/sh/configs/hs7751rvoip_defconfig b/arch/sh/configs/hs7751rvoip_defconfig deleted file mode 100644 index 5d9da5a02759..000000000000 --- a/arch/sh/configs/hs7751rvoip_defconfig +++ /dev/null | |||
| @@ -1,908 +0,0 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.18 | ||
| 4 | # Tue Oct 3 13:04:52 2006 | ||
| 5 | # | ||
| 6 | CONFIG_SUPERH=y | ||
| 7 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 8 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
| 9 | CONFIG_GENERIC_HWEIGHT=y | ||
| 10 | CONFIG_GENERIC_HARDIRQS=y | ||
| 11 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 12 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 13 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 14 | |||
| 15 | # | ||
| 16 | # Code maturity level options | ||
| 17 | # | ||
| 18 | CONFIG_EXPERIMENTAL=y | ||
| 19 | CONFIG_BROKEN_ON_SMP=y | ||
| 20 | CONFIG_LOCK_KERNEL=y | ||
| 21 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 22 | |||
| 23 | # | ||
| 24 | # General setup | ||
| 25 | # | ||
| 26 | CONFIG_LOCALVERSION="" | ||
| 27 | CONFIG_LOCALVERSION_AUTO=y | ||
| 28 | CONFIG_SWAP=y | ||
| 29 | CONFIG_SYSVIPC=y | ||
| 30 | # CONFIG_IPC_NS is not set | ||
| 31 | CONFIG_POSIX_MQUEUE=y | ||
| 32 | CONFIG_BSD_PROCESS_ACCT=y | ||
| 33 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | ||
| 34 | # CONFIG_TASKSTATS is not set | ||
| 35 | # CONFIG_UTS_NS is not set | ||
| 36 | # CONFIG_AUDIT is not set | ||
| 37 | # CONFIG_IKCONFIG is not set | ||
| 38 | # CONFIG_RELAY is not set | ||
| 39 | CONFIG_INITRAMFS_SOURCE="" | ||
| 40 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
| 41 | CONFIG_SYSCTL=y | ||
| 42 | CONFIG_EMBEDDED=y | ||
| 43 | CONFIG_UID16=y | ||
| 44 | # CONFIG_SYSCTL_SYSCALL is not set | ||
| 45 | # CONFIG_KALLSYMS is not set | ||
| 46 | CONFIG_HOTPLUG=y | ||
| 47 | CONFIG_PRINTK=y | ||
| 48 | CONFIG_BUG=y | ||
| 49 | CONFIG_ELF_CORE=y | ||
| 50 | CONFIG_BASE_FULL=y | ||
| 51 | CONFIG_FUTEX=y | ||
| 52 | CONFIG_EPOLL=y | ||
| 53 | CONFIG_SHMEM=y | ||
| 54 | CONFIG_SLAB=y | ||
| 55 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 56 | CONFIG_RT_MUTEXES=y | ||
| 57 | # CONFIG_TINY_SHMEM is not set | ||
| 58 | CONFIG_BASE_SMALL=0 | ||
| 59 | # CONFIG_SLOB is not set | ||
| 60 | |||
| 61 | # | ||
| 62 | # Loadable module support | ||
| 63 | # | ||
| 64 | CONFIG_MODULES=y | ||
| 65 | CONFIG_MODULE_UNLOAD=y | ||
| 66 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 67 | # CONFIG_MODVERSIONS is not set | ||
| 68 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 69 | CONFIG_KMOD=y | ||
| 70 | |||
| 71 | # | ||
| 72 | # Block layer | ||
| 73 | # | ||
| 74 | CONFIG_BLOCK=y | ||
| 75 | # CONFIG_LBD is not set | ||
| 76 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 77 | # CONFIG_LSF is not set | ||
| 78 | |||
| 79 | # | ||
| 80 | # IO Schedulers | ||
| 81 | # | ||
| 82 | CONFIG_IOSCHED_NOOP=y | ||
| 83 | CONFIG_IOSCHED_AS=y | ||
| 84 | CONFIG_IOSCHED_DEADLINE=y | ||
| 85 | CONFIG_IOSCHED_CFQ=y | ||
| 86 | CONFIG_DEFAULT_AS=y | ||
| 87 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 88 | # CONFIG_DEFAULT_CFQ is not set | ||
| 89 | # CONFIG_DEFAULT_NOOP is not set | ||
| 90 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
| 91 | |||
| 92 | # | ||
| 93 | # System type | ||
| 94 | # | ||
| 95 | # CONFIG_SH_SOLUTION_ENGINE is not set | ||
| 96 | # CONFIG_SH_7751_SOLUTION_ENGINE is not set | ||
| 97 | # CONFIG_SH_7300_SOLUTION_ENGINE is not set | ||
| 98 | # CONFIG_SH_7343_SOLUTION_ENGINE is not set | ||
| 99 | # CONFIG_SH_73180_SOLUTION_ENGINE is not set | ||
| 100 | # CONFIG_SH_7751_SYSTEMH is not set | ||
| 101 | # CONFIG_SH_HP6XX is not set | ||
| 102 | # CONFIG_SH_EC3104 is not set | ||
| 103 | # CONFIG_SH_SATURN is not set | ||
| 104 | # CONFIG_SH_DREAMCAST is not set | ||
| 105 | # CONFIG_SH_BIGSUR is not set | ||
| 106 | # CONFIG_SH_MPC1211 is not set | ||
| 107 | # CONFIG_SH_SH03 is not set | ||
| 108 | # CONFIG_SH_SECUREEDGE5410 is not set | ||
| 109 | CONFIG_SH_HS7751RVOIP=y | ||
| 110 | # CONFIG_SH_7710VOIPGW is not set | ||
| 111 | # CONFIG_SH_RTS7751R2D is not set | ||
| 112 | # CONFIG_SH_R7780RP is not set | ||
| 113 | # CONFIG_SH_EDOSK7705 is not set | ||
| 114 | # CONFIG_SH_SH4202_MICRODEV is not set | ||
| 115 | # CONFIG_SH_LANDISK is not set | ||
| 116 | # CONFIG_SH_TITAN is not set | ||
| 117 | # CONFIG_SH_SHMIN is not set | ||
| 118 | # CONFIG_SH_UNKNOWN is not set | ||
| 119 | |||
| 120 | # | ||
| 121 | # Processor selection | ||
| 122 | # | ||
| 123 | CONFIG_CPU_SH4=y | ||
| 124 | |||
| 125 | # | ||
| 126 | # SH-2 Processor Support | ||
| 127 | # | ||
| 128 | # CONFIG_CPU_SUBTYPE_SH7604 is not set | ||
| 129 | |||
| 130 | # | ||
| 131 | # SH-3 Processor Support | ||
| 132 | # | ||
| 133 | # CONFIG_CPU_SUBTYPE_SH7300 is not set | ||
| 134 | # CONFIG_CPU_SUBTYPE_SH7705 is not set | ||
| 135 | # CONFIG_CPU_SUBTYPE_SH7706 is not set | ||
| 136 | # CONFIG_CPU_SUBTYPE_SH7707 is not set | ||
| 137 | # CONFIG_CPU_SUBTYPE_SH7708 is not set | ||
| 138 | # CONFIG_CPU_SUBTYPE_SH7709 is not set | ||
| 139 | # CONFIG_CPU_SUBTYPE_SH7710 is not set | ||
| 140 | |||
| 141 | # | ||
| 142 | # SH-4 Processor Support | ||
| 143 | # | ||
| 144 | # CONFIG_CPU_SUBTYPE_SH7750 is not set | ||
| 145 | # CONFIG_CPU_SUBTYPE_SH7091 is not set | ||
| 146 | # CONFIG_CPU_SUBTYPE_SH7750R is not set | ||
| 147 | # CONFIG_CPU_SUBTYPE_SH7750S is not set | ||
| 148 | # CONFIG_CPU_SUBTYPE_SH7751 is not set | ||
| 149 | CONFIG_CPU_SUBTYPE_SH7751R=y | ||
| 150 | # CONFIG_CPU_SUBTYPE_SH7760 is not set | ||
| 151 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set | ||
| 152 | |||
| 153 | # | ||
| 154 | # ST40 Processor Support | ||
| 155 | # | ||
| 156 | # CONFIG_CPU_SUBTYPE_ST40STB1 is not set | ||
| 157 | # CONFIG_CPU_SUBTYPE_ST40GX1 is not set | ||
| 158 | |||
| 159 | # | ||
| 160 | # SH-4A Processor Support | ||
| 161 | # | ||
| 162 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | ||
| 163 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | ||
| 164 | |||
| 165 | # | ||
| 166 | # SH4AL-DSP Processor Support | ||
| 167 | # | ||
| 168 | # CONFIG_CPU_SUBTYPE_SH73180 is not set | ||
| 169 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | ||
| 170 | |||
| 171 | # | ||
| 172 | # Memory management options | ||
| 173 | # | ||
| 174 | CONFIG_MMU=y | ||
| 175 | CONFIG_PAGE_OFFSET=0x80000000 | ||
| 176 | CONFIG_MEMORY_START=0x0c000000 | ||
| 177 | CONFIG_MEMORY_SIZE=0x04000000 | ||
| 178 | CONFIG_VSYSCALL=y | ||
| 179 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 180 | CONFIG_FLATMEM_MANUAL=y | ||
| 181 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 182 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 183 | CONFIG_FLATMEM=y | ||
| 184 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 185 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 186 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
| 187 | # CONFIG_RESOURCES_64BIT is not set | ||
| 188 | |||
| 189 | # | ||
| 190 | # Cache configuration | ||
| 191 | # | ||
| 192 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 193 | # CONFIG_SH_WRITETHROUGH is not set | ||
| 194 | # CONFIG_SH_OCRAM is not set | ||
| 195 | |||
| 196 | # | ||
| 197 | # Processor features | ||
| 198 | # | ||
| 199 | CONFIG_CPU_LITTLE_ENDIAN=y | ||
| 200 | CONFIG_SH_FPU=y | ||
| 201 | # CONFIG_SH_DSP is not set | ||
| 202 | # CONFIG_SH_STORE_QUEUES is not set | ||
| 203 | CONFIG_CPU_HAS_INTEVT=y | ||
| 204 | CONFIG_CPU_HAS_SR_RB=y | ||
| 205 | |||
| 206 | # | ||
| 207 | # Timer support | ||
| 208 | # | ||
| 209 | CONFIG_SH_TMU=y | ||
| 210 | |||
| 211 | # | ||
| 212 | # HS7751RVoIP options | ||
| 213 | # | ||
| 214 | CONFIG_HS7751RVOIP_CODEC=y | ||
| 215 | CONFIG_SH_PCLK_FREQ=60000000 | ||
| 216 | |||
| 217 | # | ||
| 218 | # CPU Frequency scaling | ||
| 219 | # | ||
| 220 | # CONFIG_CPU_FREQ is not set | ||
| 221 | |||
| 222 | # | ||
| 223 | # DMA support | ||
| 224 | # | ||
| 225 | # CONFIG_SH_DMA is not set | ||
| 226 | |||
| 227 | # | ||
| 228 | # Companion Chips | ||
| 229 | # | ||
| 230 | # CONFIG_HD6446X_SERIES is not set | ||
| 231 | |||
| 232 | # | ||
| 233 | # Kernel features | ||
| 234 | # | ||
| 235 | # CONFIG_HZ_100 is not set | ||
| 236 | CONFIG_HZ_250=y | ||
| 237 | # CONFIG_HZ_1000 is not set | ||
| 238 | CONFIG_HZ=250 | ||
| 239 | # CONFIG_KEXEC is not set | ||
| 240 | # CONFIG_SMP is not set | ||
| 241 | # CONFIG_PREEMPT_NONE is not set | ||
| 242 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
| 243 | CONFIG_PREEMPT=y | ||
| 244 | CONFIG_PREEMPT_BKL=y | ||
| 245 | |||
| 246 | # | ||
| 247 | # Boot options | ||
| 248 | # | ||
| 249 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | ||
| 250 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | ||
| 251 | # CONFIG_UBC_WAKEUP is not set | ||
| 252 | CONFIG_CMDLINE_BOOL=y | ||
| 253 | CONFIG_CMDLINE="mem=64M console=ttySC1,115200 root=/dev/hda1" | ||
| 254 | |||
| 255 | # | ||
| 256 | # Bus options | ||
| 257 | # | ||
| 258 | # CONFIG_PCI is not set | ||
| 259 | |||
| 260 | # | ||
| 261 | # PCCARD (PCMCIA/CardBus) support | ||
| 262 | # | ||
| 263 | # CONFIG_PCCARD is not set | ||
| 264 | |||
| 265 | # | ||
| 266 | # PCI Hotplug Support | ||
| 267 | # | ||
| 268 | |||
| 269 | # | ||
| 270 | # Executable file formats | ||
| 271 | # | ||
| 272 | CONFIG_BINFMT_ELF=y | ||
| 273 | # CONFIG_BINFMT_FLAT is not set | ||
| 274 | # CONFIG_BINFMT_MISC is not set | ||
| 275 | |||
| 276 | # | ||
| 277 | # Power management options (EXPERIMENTAL) | ||
| 278 | # | ||
| 279 | # CONFIG_PM is not set | ||
| 280 | |||
| 281 | # | ||
| 282 | # Networking | ||
| 283 | # | ||
| 284 | CONFIG_NET=y | ||
| 285 | |||
| 286 | # | ||
| 287 | # Networking options | ||
| 288 | # | ||
| 289 | # CONFIG_NETDEBUG is not set | ||
| 290 | CONFIG_PACKET=y | ||
| 291 | CONFIG_PACKET_MMAP=y | ||
| 292 | CONFIG_UNIX=y | ||
| 293 | CONFIG_XFRM=y | ||
| 294 | # CONFIG_XFRM_USER is not set | ||
| 295 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 296 | # CONFIG_NET_KEY is not set | ||
| 297 | CONFIG_INET=y | ||
| 298 | CONFIG_IP_MULTICAST=y | ||
| 299 | CONFIG_IP_ADVANCED_ROUTER=y | ||
| 300 | CONFIG_ASK_IP_FIB_HASH=y | ||
| 301 | # CONFIG_IP_FIB_TRIE is not set | ||
| 302 | CONFIG_IP_FIB_HASH=y | ||
| 303 | # CONFIG_IP_MULTIPLE_TABLES is not set | ||
| 304 | # CONFIG_IP_ROUTE_MULTIPATH is not set | ||
| 305 | # CONFIG_IP_ROUTE_VERBOSE is not set | ||
| 306 | # CONFIG_IP_PNP is not set | ||
| 307 | # CONFIG_NET_IPIP is not set | ||
| 308 | # CONFIG_NET_IPGRE is not set | ||
| 309 | # CONFIG_IP_MROUTE is not set | ||
| 310 | # CONFIG_ARPD is not set | ||
| 311 | # CONFIG_SYN_COOKIES is not set | ||
| 312 | # CONFIG_INET_AH is not set | ||
| 313 | # CONFIG_INET_ESP is not set | ||
| 314 | # CONFIG_INET_IPCOMP is not set | ||
| 315 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 316 | # CONFIG_INET_TUNNEL is not set | ||
| 317 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
| 318 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
| 319 | CONFIG_INET_DIAG=y | ||
| 320 | CONFIG_INET_TCP_DIAG=y | ||
| 321 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 322 | CONFIG_TCP_CONG_CUBIC=y | ||
| 323 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 324 | # CONFIG_IPV6 is not set | ||
| 325 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 326 | # CONFIG_INET6_TUNNEL is not set | ||
| 327 | # CONFIG_NETWORK_SECMARK is not set | ||
| 328 | # CONFIG_NETFILTER is not set | ||
| 329 | |||
| 330 | # | ||
| 331 | # DCCP Configuration (EXPERIMENTAL) | ||
| 332 | # | ||
| 333 | # CONFIG_IP_DCCP is not set | ||
| 334 | |||
| 335 | # | ||
| 336 | # SCTP Configuration (EXPERIMENTAL) | ||
| 337 | # | ||
| 338 | # CONFIG_IP_SCTP is not set | ||
| 339 | |||
| 340 | # | ||
| 341 | # TIPC Configuration (EXPERIMENTAL) | ||
| 342 | # | ||
| 343 | # CONFIG_TIPC is not set | ||
| 344 | # CONFIG_ATM is not set | ||
| 345 | # CONFIG_BRIDGE is not set | ||
| 346 | # CONFIG_VLAN_8021Q is not set | ||
| 347 | # CONFIG_DECNET is not set | ||
| 348 | # CONFIG_LLC2 is not set | ||
| 349 | # CONFIG_IPX is not set | ||
| 350 | # CONFIG_ATALK is not set | ||
| 351 | # CONFIG_X25 is not set | ||
| 352 | # CONFIG_LAPB is not set | ||
| 353 | # CONFIG_ECONET is not set | ||
| 354 | # CONFIG_WAN_ROUTER is not set | ||
| 355 | |||
| 356 | # | ||
| 357 | # QoS and/or fair queueing | ||
| 358 | # | ||
| 359 | # CONFIG_NET_SCHED is not set | ||
| 360 | |||
| 361 | # | ||
| 362 | # Network testing | ||
| 363 | # | ||
| 364 | # CONFIG_NET_PKTGEN is not set | ||
| 365 | # CONFIG_HAMRADIO is not set | ||
| 366 | # CONFIG_IRDA is not set | ||
| 367 | # CONFIG_BT is not set | ||
| 368 | # CONFIG_IEEE80211 is not set | ||
| 369 | |||
| 370 | # | ||
| 371 | # Device Drivers | ||
| 372 | # | ||
| 373 | |||
| 374 | # | ||
| 375 | # Generic Driver Options | ||
| 376 | # | ||
| 377 | CONFIG_STANDALONE=y | ||
| 378 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 379 | CONFIG_FW_LOADER=m | ||
| 380 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 381 | |||
| 382 | # | ||
| 383 | # Connector - unified userspace <-> kernelspace linker | ||
| 384 | # | ||
| 385 | # CONFIG_CONNECTOR is not set | ||
| 386 | |||
| 387 | # | ||
| 388 | # Memory Technology Devices (MTD) | ||
| 389 | # | ||
| 390 | # CONFIG_MTD is not set | ||
| 391 | |||
| 392 | # | ||
| 393 | # Parallel port support | ||
| 394 | # | ||
| 395 | # CONFIG_PARPORT is not set | ||
| 396 | |||
| 397 | # | ||
| 398 | # Plug and Play support | ||
| 399 | # | ||
| 400 | |||
| 401 | # | ||
| 402 | # Block devices | ||
| 403 | # | ||
| 404 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 405 | # CONFIG_BLK_DEV_LOOP is not set | ||
| 406 | # CONFIG_BLK_DEV_NBD is not set | ||
| 407 | # CONFIG_BLK_DEV_RAM is not set | ||
| 408 | # CONFIG_BLK_DEV_INITRD is not set | ||
| 409 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 410 | # CONFIG_ATA_OVER_ETH is not set | ||
| 411 | |||
| 412 | # | ||
| 413 | # ATA/ATAPI/MFM/RLL support | ||
| 414 | # | ||
| 415 | CONFIG_IDE=y | ||
| 416 | CONFIG_IDE_MAX_HWIFS=1 | ||
| 417 | CONFIG_BLK_DEV_IDE=y | ||
| 418 | |||
| 419 | # | ||
| 420 | # Please see Documentation/ide.txt for help/info on IDE drives | ||
| 421 | # | ||
| 422 | # CONFIG_BLK_DEV_IDE_SATA is not set | ||
| 423 | CONFIG_BLK_DEV_IDEDISK=y | ||
| 424 | # CONFIG_IDEDISK_MULTI_MODE is not set | ||
| 425 | # CONFIG_BLK_DEV_IDECD is not set | ||
| 426 | # CONFIG_BLK_DEV_IDETAPE is not set | ||
| 427 | # CONFIG_BLK_DEV_IDEFLOPPY is not set | ||
| 428 | # CONFIG_IDE_TASK_IOCTL is not set | ||
| 429 | |||
| 430 | # | ||
| 431 | # IDE chipset support/bugfixes | ||
| 432 | # | ||
| 433 | CONFIG_IDE_GENERIC=y | ||
| 434 | # CONFIG_IDE_ARM is not set | ||
| 435 | # CONFIG_BLK_DEV_IDEDMA is not set | ||
| 436 | # CONFIG_IDEDMA_AUTO is not set | ||
| 437 | # CONFIG_BLK_DEV_HD is not set | ||
| 438 | |||
| 439 | # | ||
| 440 | # SCSI device support | ||
| 441 | # | ||
| 442 | # CONFIG_RAID_ATTRS is not set | ||
| 443 | # CONFIG_SCSI is not set | ||
| 444 | # CONFIG_SCSI_NETLINK is not set | ||
| 445 | |||
| 446 | # | ||
| 447 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | ||
| 448 | # | ||
| 449 | # CONFIG_ATA is not set | ||
| 450 | |||
| 451 | # | ||
| 452 | # Multi-device support (RAID and LVM) | ||
| 453 | # | ||
| 454 | # CONFIG_MD is not set | ||
| 455 | |||
| 456 | # | ||
| 457 | # Fusion MPT device support | ||
| 458 | # | ||
| 459 | # CONFIG_FUSION is not set | ||
| 460 | |||
| 461 | # | ||
| 462 | # IEEE 1394 (FireWire) support | ||
| 463 | # | ||
| 464 | |||
| 465 | # | ||
| 466 | # I2O device support | ||
| 467 | # | ||
| 468 | |||
| 469 | # | ||
| 470 | # Network device support | ||
| 471 | # | ||
| 472 | CONFIG_NETDEVICES=y | ||
| 473 | # CONFIG_DUMMY is not set | ||
| 474 | # CONFIG_BONDING is not set | ||
| 475 | # CONFIG_EQUALIZER is not set | ||
| 476 | # CONFIG_TUN is not set | ||
| 477 | |||
| 478 | # | ||
| 479 | # PHY device support | ||
| 480 | # | ||
| 481 | # CONFIG_PHYLIB is not set | ||
| 482 | |||
| 483 | # | ||
| 484 | # Ethernet (10 or 100Mbit) | ||
| 485 | # | ||
| 486 | CONFIG_NET_ETHERNET=y | ||
| 487 | CONFIG_MII=y | ||
| 488 | # CONFIG_STNIC is not set | ||
| 489 | # CONFIG_SMC91X is not set | ||
| 490 | |||
| 491 | # | ||
| 492 | # Ethernet (1000 Mbit) | ||
| 493 | # | ||
| 494 | |||
| 495 | # | ||
| 496 | # Ethernet (10000 Mbit) | ||
| 497 | # | ||
| 498 | |||
| 499 | # | ||
| 500 | # Token Ring devices | ||
| 501 | # | ||
| 502 | |||
| 503 | # | ||
| 504 | # Wireless LAN (non-hamradio) | ||
| 505 | # | ||
| 506 | # CONFIG_NET_RADIO is not set | ||
| 507 | |||
| 508 | # | ||
| 509 | # Wan interfaces | ||
| 510 | # | ||
| 511 | # CONFIG_WAN is not set | ||
| 512 | # CONFIG_PPP is not set | ||
| 513 | # CONFIG_SLIP is not set | ||
| 514 | # CONFIG_SHAPER is not set | ||
| 515 | # CONFIG_NETCONSOLE is not set | ||
| 516 | # CONFIG_NETPOLL is not set | ||
| 517 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 518 | |||
| 519 | # | ||
| 520 | # ISDN subsystem | ||
| 521 | # | ||
| 522 | # CONFIG_ISDN is not set | ||
| 523 | |||
| 524 | # | ||
| 525 | # Telephony Support | ||
| 526 | # | ||
| 527 | # CONFIG_PHONE is not set | ||
| 528 | |||
| 529 | # | ||
| 530 | # Input device support | ||
| 531 | # | ||
| 532 | CONFIG_INPUT=y | ||
| 533 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 534 | |||
| 535 | # | ||
| 536 | # Userland interfaces | ||
| 537 | # | ||
| 538 | # CONFIG_INPUT_MOUSEDEV is not set | ||
| 539 | # CONFIG_INPUT_JOYDEV is not set | ||
| 540 | # CONFIG_INPUT_TSDEV is not set | ||
| 541 | # CONFIG_INPUT_EVDEV is not set | ||
| 542 | # CONFIG_INPUT_EVBUG is not set | ||
| 543 | |||
| 544 | # | ||
| 545 | # Input Device Drivers | ||
| 546 | # | ||
| 547 | # CONFIG_INPUT_KEYBOARD is not set | ||
| 548 | # CONFIG_INPUT_MOUSE is not set | ||
| 549 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 550 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 551 | # CONFIG_INPUT_MISC is not set | ||
| 552 | |||
| 553 | # | ||
| 554 | # Hardware I/O ports | ||
| 555 | # | ||
| 556 | CONFIG_SERIO=y | ||
| 557 | CONFIG_SERIO_I8042=y | ||
| 558 | CONFIG_SERIO_SERPORT=y | ||
| 559 | # CONFIG_SERIO_LIBPS2 is not set | ||
| 560 | # CONFIG_SERIO_RAW is not set | ||
| 561 | # CONFIG_GAMEPORT is not set | ||
| 562 | |||
| 563 | # | ||
| 564 | # Character devices | ||
| 565 | # | ||
| 566 | # CONFIG_VT is not set | ||
| 567 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 568 | |||
| 569 | # | ||
| 570 | # Serial drivers | ||
| 571 | # | ||
| 572 | # CONFIG_SERIAL_8250 is not set | ||
| 573 | |||
| 574 | # | ||
| 575 | # Non-8250 serial port support | ||
| 576 | # | ||
| 577 | CONFIG_SERIAL_SH_SCI=y | ||
| 578 | CONFIG_SERIAL_SH_SCI_NR_UARTS=2 | ||
| 579 | CONFIG_SERIAL_SH_SCI_CONSOLE=y | ||
| 580 | CONFIG_SERIAL_CORE=y | ||
| 581 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 582 | CONFIG_UNIX98_PTYS=y | ||
| 583 | # CONFIG_LEGACY_PTYS is not set | ||
| 584 | |||
| 585 | # | ||
| 586 | # IPMI | ||
| 587 | # | ||
| 588 | # CONFIG_IPMI_HANDLER is not set | ||
| 589 | |||
| 590 | # | ||
| 591 | # Watchdog Cards | ||
| 592 | # | ||
| 593 | # CONFIG_WATCHDOG is not set | ||
| 594 | CONFIG_HW_RANDOM=y | ||
| 595 | # CONFIG_GEN_RTC is not set | ||
| 596 | # CONFIG_DTLK is not set | ||
| 597 | # CONFIG_R3964 is not set | ||
| 598 | |||
| 599 | # | ||
| 600 | # Ftape, the floppy tape device driver | ||
| 601 | # | ||
| 602 | # CONFIG_RAW_DRIVER is not set | ||
| 603 | |||
| 604 | # | ||
| 605 | # TPM devices | ||
| 606 | # | ||
| 607 | # CONFIG_TCG_TPM is not set | ||
| 608 | # CONFIG_TELCLOCK is not set | ||
| 609 | |||
| 610 | # | ||
| 611 | # I2C support | ||
| 612 | # | ||
| 613 | # CONFIG_I2C is not set | ||
| 614 | |||
| 615 | # | ||
| 616 | # SPI support | ||
| 617 | # | ||
| 618 | # CONFIG_SPI is not set | ||
| 619 | # CONFIG_SPI_MASTER is not set | ||
| 620 | |||
| 621 | # | ||
| 622 | # Dallas's 1-wire bus | ||
| 623 | # | ||
| 624 | |||
| 625 | # | ||
| 626 | # Hardware Monitoring support | ||
| 627 | # | ||
| 628 | CONFIG_HWMON=y | ||
| 629 | # CONFIG_HWMON_VID is not set | ||
| 630 | # CONFIG_SENSORS_ABITUGURU is not set | ||
| 631 | # CONFIG_SENSORS_F71805F is not set | ||
| 632 | # CONFIG_SENSORS_VT1211 is not set | ||
| 633 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
| 634 | |||
| 635 | # | ||
| 636 | # Misc devices | ||
| 637 | # | ||
| 638 | |||
| 639 | # | ||
| 640 | # Multimedia devices | ||
| 641 | # | ||
| 642 | # CONFIG_VIDEO_DEV is not set | ||
| 643 | CONFIG_VIDEO_V4L2=y | ||
| 644 | |||
| 645 | # | ||
| 646 | # Digital Video Broadcasting Devices | ||
| 647 | # | ||
| 648 | # CONFIG_DVB is not set | ||
| 649 | |||
| 650 | # | ||
| 651 | # Graphics support | ||
| 652 | # | ||
| 653 | CONFIG_FIRMWARE_EDID=y | ||
| 654 | # CONFIG_FB is not set | ||
| 655 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 656 | |||
| 657 | # | ||
| 658 | # Sound | ||
| 659 | # | ||
| 660 | # CONFIG_SOUND is not set | ||
| 661 | |||
| 662 | # | ||
| 663 | # USB support | ||
| 664 | # | ||
| 665 | # CONFIG_USB_ARCH_HAS_HCD is not set | ||
| 666 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
| 667 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 668 | |||
| 669 | # | ||
| 670 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 671 | # | ||
| 672 | |||
| 673 | # | ||
| 674 | # USB Gadget Support | ||
| 675 | # | ||
| 676 | # CONFIG_USB_GADGET is not set | ||
| 677 | |||
| 678 | # | ||
| 679 | # MMC/SD Card support | ||
| 680 | # | ||
| 681 | # CONFIG_MMC is not set | ||
| 682 | |||
| 683 | # | ||
| 684 | # LED devices | ||
| 685 | # | ||
| 686 | # CONFIG_NEW_LEDS is not set | ||
| 687 | |||
| 688 | # | ||
| 689 | # LED drivers | ||
| 690 | # | ||
| 691 | |||
| 692 | # | ||
| 693 | # LED Triggers | ||
| 694 | # | ||
| 695 | |||
| 696 | # | ||
| 697 | # InfiniBand support | ||
| 698 | # | ||
| 699 | |||
| 700 | # | ||
| 701 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) | ||
| 702 | # | ||
| 703 | |||
| 704 | # | ||
| 705 | # Real Time Clock | ||
| 706 | # | ||
| 707 | # CONFIG_RTC_CLASS is not set | ||
| 708 | |||
| 709 | # | ||
| 710 | # DMA Engine support | ||
| 711 | # | ||
| 712 | # CONFIG_DMA_ENGINE is not set | ||
| 713 | |||
| 714 | # | ||
| 715 | # DMA Clients | ||
| 716 | # | ||
| 717 | |||
| 718 | # | ||
| 719 | # DMA Devices | ||
| 720 | # | ||
| 721 | |||
| 722 | # | ||
| 723 | # File systems | ||
| 724 | # | ||
| 725 | CONFIG_EXT2_FS=y | ||
| 726 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 727 | # CONFIG_EXT2_FS_XIP is not set | ||
| 728 | # CONFIG_EXT3_FS is not set | ||
| 729 | # CONFIG_REISERFS_FS is not set | ||
| 730 | # CONFIG_JFS_FS is not set | ||
| 731 | # CONFIG_FS_POSIX_ACL is not set | ||
| 732 | # CONFIG_XFS_FS is not set | ||
| 733 | # CONFIG_OCFS2_FS is not set | ||
| 734 | # CONFIG_MINIX_FS is not set | ||
| 735 | # CONFIG_ROMFS_FS is not set | ||
| 736 | CONFIG_INOTIFY=y | ||
| 737 | CONFIG_INOTIFY_USER=y | ||
| 738 | # CONFIG_QUOTA is not set | ||
| 739 | CONFIG_DNOTIFY=y | ||
| 740 | # CONFIG_AUTOFS_FS is not set | ||
| 741 | # CONFIG_AUTOFS4_FS is not set | ||
| 742 | # CONFIG_FUSE_FS is not set | ||
| 743 | |||
| 744 | # | ||
| 745 | # CD-ROM/DVD Filesystems | ||
| 746 | # | ||
| 747 | # CONFIG_ISO9660_FS is not set | ||
| 748 | # CONFIG_UDF_FS is not set | ||
| 749 | |||
| 750 | # | ||
| 751 | # DOS/FAT/NT Filesystems | ||
| 752 | # | ||
| 753 | # CONFIG_MSDOS_FS is not set | ||
| 754 | # CONFIG_VFAT_FS is not set | ||
| 755 | # CONFIG_NTFS_FS is not set | ||
| 756 | |||
| 757 | # | ||
| 758 | # Pseudo filesystems | ||
| 759 | # | ||
| 760 | CONFIG_PROC_FS=y | ||
| 761 | CONFIG_PROC_KCORE=y | ||
| 762 | CONFIG_PROC_SYSCTL=y | ||
| 763 | CONFIG_SYSFS=y | ||
| 764 | CONFIG_TMPFS=y | ||
| 765 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
| 766 | # CONFIG_HUGETLBFS is not set | ||
| 767 | # CONFIG_HUGETLB_PAGE is not set | ||
| 768 | CONFIG_RAMFS=y | ||
| 769 | # CONFIG_CONFIGFS_FS is not set | ||
| 770 | |||
| 771 | # | ||
| 772 | # Miscellaneous filesystems | ||
| 773 | # | ||
| 774 | # CONFIG_ADFS_FS is not set | ||
| 775 | # CONFIG_AFFS_FS is not set | ||
| 776 | # CONFIG_HFS_FS is not set | ||
| 777 | # CONFIG_HFSPLUS_FS is not set | ||
| 778 | # CONFIG_BEFS_FS is not set | ||
| 779 | # CONFIG_BFS_FS is not set | ||
| 780 | # CONFIG_EFS_FS is not set | ||
| 781 | # CONFIG_CRAMFS is not set | ||
| 782 | # CONFIG_VXFS_FS is not set | ||
| 783 | # CONFIG_HPFS_FS is not set | ||
| 784 | # CONFIG_QNX4FS_FS is not set | ||
| 785 | # CONFIG_SYSV_FS is not set | ||
| 786 | # CONFIG_UFS_FS is not set | ||
| 787 | |||
| 788 | # | ||
| 789 | # Network File Systems | ||
| 790 | # | ||
| 791 | CONFIG_NFS_FS=y | ||
| 792 | CONFIG_NFS_V3=y | ||
| 793 | # CONFIG_NFS_V3_ACL is not set | ||
| 794 | CONFIG_NFS_V4=y | ||
| 795 | CONFIG_NFS_DIRECTIO=y | ||
| 796 | # CONFIG_NFSD is not set | ||
| 797 | CONFIG_LOCKD=y | ||
| 798 | CONFIG_LOCKD_V4=y | ||
| 799 | CONFIG_NFS_COMMON=y | ||
| 800 | CONFIG_SUNRPC=y | ||
| 801 | CONFIG_SUNRPC_GSS=y | ||
| 802 | CONFIG_RPCSEC_GSS_KRB5=y | ||
| 803 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 804 | # CONFIG_SMB_FS is not set | ||
| 805 | # CONFIG_CIFS is not set | ||
| 806 | # CONFIG_NCP_FS is not set | ||
| 807 | # CONFIG_CODA_FS is not set | ||
| 808 | # CONFIG_AFS_FS is not set | ||
| 809 | # CONFIG_9P_FS is not set | ||
| 810 | |||
| 811 | # | ||
| 812 | # Partition Types | ||
| 813 | # | ||
| 814 | CONFIG_PARTITION_ADVANCED=y | ||
| 815 | # CONFIG_ACORN_PARTITION is not set | ||
| 816 | # CONFIG_OSF_PARTITION is not set | ||
| 817 | # CONFIG_AMIGA_PARTITION is not set | ||
| 818 | # CONFIG_ATARI_PARTITION is not set | ||
| 819 | # CONFIG_MAC_PARTITION is not set | ||
| 820 | CONFIG_MSDOS_PARTITION=y | ||
| 821 | # CONFIG_BSD_DISKLABEL is not set | ||
| 822 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 823 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 824 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 825 | # CONFIG_LDM_PARTITION is not set | ||
| 826 | # CONFIG_SGI_PARTITION is not set | ||
| 827 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 828 | # CONFIG_SUN_PARTITION is not set | ||
| 829 | # CONFIG_KARMA_PARTITION is not set | ||
| 830 | # CONFIG_EFI_PARTITION is not set | ||
| 831 | |||
| 832 | # | ||
| 833 | # Native Language Support | ||
| 834 | # | ||
| 835 | # CONFIG_NLS is not set | ||
| 836 | |||
| 837 | # | ||
| 838 | # Profiling support | ||
| 839 | # | ||
| 840 | # CONFIG_PROFILING is not set | ||
| 841 | |||
| 842 | # | ||
| 843 | # Kernel hacking | ||
| 844 | # | ||
| 845 | # CONFIG_PRINTK_TIME is not set | ||
| 846 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 847 | # CONFIG_MAGIC_SYSRQ is not set | ||
| 848 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 849 | # CONFIG_DEBUG_KERNEL is not set | ||
| 850 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 851 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
| 852 | # CONFIG_DEBUG_FS is not set | ||
| 853 | # CONFIG_SH_STANDARD_BIOS is not set | ||
| 854 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
| 855 | # CONFIG_KGDB is not set | ||
| 856 | |||
| 857 | # | ||
| 858 | # Security options | ||
| 859 | # | ||
| 860 | # CONFIG_KEYS is not set | ||
| 861 | # CONFIG_SECURITY is not set | ||
| 862 | |||
| 863 | # | ||
| 864 | # Cryptographic options | ||
| 865 | # | ||
| 866 | CONFIG_CRYPTO=y | ||
| 867 | CONFIG_CRYPTO_ALGAPI=y | ||
| 868 | CONFIG_CRYPTO_BLKCIPHER=m | ||
| 869 | CONFIG_CRYPTO_MANAGER=m | ||
| 870 | # CONFIG_CRYPTO_HMAC is not set | ||
| 871 | # CONFIG_CRYPTO_NULL is not set | ||
| 872 | # CONFIG_CRYPTO_MD4 is not set | ||
| 873 | CONFIG_CRYPTO_MD5=y | ||
| 874 | # CONFIG_CRYPTO_SHA1 is not set | ||
| 875 | # CONFIG_CRYPTO_SHA256 is not set | ||
| 876 | # CONFIG_CRYPTO_SHA512 is not set | ||
| 877 | # CONFIG_CRYPTO_WP512 is not set | ||
| 878 | # CONFIG_CRYPTO_TGR192 is not set | ||
| 879 | CONFIG_CRYPTO_ECB=m | ||
| 880 | CONFIG_CRYPTO_CBC=m | ||
| 881 | CONFIG_CRYPTO_DES=y | ||
| 882 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 883 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 884 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 885 | # CONFIG_CRYPTO_AES is not set | ||
| 886 | # CONFIG_CRYPTO_CAST5 is not set | ||
| 887 | # CONFIG_CRYPTO_CAST6 is not set | ||
| 888 | # CONFIG_CRYPTO_TEA is not set | ||
| 889 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 890 | # CONFIG_CRYPTO_KHAZAD is not set | ||
| 891 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 892 | # CONFIG_CRYPTO_DEFLATE is not set | ||
| 893 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 894 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 895 | # CONFIG_CRYPTO_TEST is not set | ||
| 896 | |||
| 897 | # | ||
| 898 | # Hardware crypto devices | ||
| 899 | # | ||
| 900 | |||
| 901 | # | ||
| 902 | # Library routines | ||
| 903 | # | ||
| 904 | # CONFIG_CRC_CCITT is not set | ||
| 905 | # CONFIG_CRC16 is not set | ||
| 906 | CONFIG_CRC32=y | ||
| 907 | # CONFIG_LIBCRC32C is not set | ||
| 908 | CONFIG_PLIST=y | ||
diff --git a/arch/sh/drivers/pci/pci-auto.c b/arch/sh/drivers/pci/pci-auto.c index 224e007736fb..ea404704ace8 100644 --- a/arch/sh/drivers/pci/pci-auto.c +++ b/arch/sh/drivers/pci/pci-auto.c | |||
| @@ -516,10 +516,8 @@ pciauto_bus_scan(struct pci_channel *hose, int top_bus, int current_bus) | |||
| 516 | PCI_COMMAND, cmdstat | PCI_COMMAND_IO | | 516 | PCI_COMMAND, cmdstat | PCI_COMMAND_IO | |
| 517 | PCI_COMMAND_MEMORY | | 517 | PCI_COMMAND_MEMORY | |
| 518 | PCI_COMMAND_MASTER); | 518 | PCI_COMMAND_MASTER); |
| 519 | #if !defined(CONFIG_SH_HS7751RVOIP) && !defined(CONFIG_SH_RTS7751R2D) | ||
| 520 | early_write_config_byte(hose, top_bus, current_bus, pci_devfn, | 519 | early_write_config_byte(hose, top_bus, current_bus, pci_devfn, |
| 521 | PCI_LATENCY_TIMER, 0x80); | 520 | PCI_LATENCY_TIMER, 0x80); |
| 522 | #endif | ||
| 523 | 521 | ||
| 524 | /* Allocate PCI I/O and/or memory space */ | 522 | /* Allocate PCI I/O and/or memory space */ |
| 525 | pciauto_setup_bars(hose, top_bus, current_bus, pci_devfn, PCI_BASE_ADDRESS_5); | 523 | pciauto_setup_bars(hose, top_bus, current_bus, pci_devfn, PCI_BASE_ADDRESS_5); |
diff --git a/arch/sh/tools/mach-types b/arch/sh/tools/mach-types index af4b7aa9a6b2..25810670a0fa 100644 --- a/arch/sh/tools/mach-types +++ b/arch/sh/tools/mach-types | |||
| @@ -29,7 +29,6 @@ HP6XX SH_HP6XX | |||
| 29 | DREAMCAST SH_DREAMCAST | 29 | DREAMCAST SH_DREAMCAST |
| 30 | MPC1211 SH_MPC1211 | 30 | MPC1211 SH_MPC1211 |
| 31 | SNAPGEAR SH_SECUREEDGE5410 | 31 | SNAPGEAR SH_SECUREEDGE5410 |
| 32 | HS7751RVOIP SH_HS7751RVOIP | ||
| 33 | EDOSK7705 SH_EDOSK7705 | 32 | EDOSK7705 SH_EDOSK7705 |
| 34 | SH4202_MICRODEV SH_SH4202_MICRODEV | 33 | SH4202_MICRODEV SH_SH4202_MICRODEV |
| 35 | SH03 SH_SH03 | 34 | SH03 SH_SH03 |
