diff options
Diffstat (limited to 'arch/ppc')
47 files changed, 3003 insertions, 746 deletions
diff --git a/arch/ppc/8xx_io/Kconfig b/arch/ppc/8xx_io/Kconfig index 9e2227ec3b34..57dacf978532 100644 --- a/arch/ppc/8xx_io/Kconfig +++ b/arch/ppc/8xx_io/Kconfig | |||
@@ -69,9 +69,9 @@ config FEC_QS6612 | |||
69 | 69 | ||
70 | config ENET_BIG_BUFFERS | 70 | config ENET_BIG_BUFFERS |
71 | bool "Use Big CPM Ethernet Buffers" | 71 | bool "Use Big CPM Ethernet Buffers" |
72 | depends on NET_ETHERNET | 72 | depends on SCC_ENET || FEC_ENET |
73 | help | 73 | help |
74 | Allocate large buffers for MPC8xx Etherenet. Increases throughput | 74 | Allocate large buffers for MPC8xx Ethernet. Increases throughput |
75 | and decreases the likelihood of dropped packets, but costs memory. | 75 | and decreases the likelihood of dropped packets, but costs memory. |
76 | 76 | ||
77 | config HTDMSOUND | 77 | config HTDMSOUND |
diff --git a/arch/ppc/8xx_io/commproc.c b/arch/ppc/8xx_io/commproc.c index 0cc2e7a9cb11..11726e2a4ec8 100644 --- a/arch/ppc/8xx_io/commproc.c +++ b/arch/ppc/8xx_io/commproc.c | |||
@@ -39,8 +39,6 @@ | |||
39 | #include <asm/tlbflush.h> | 39 | #include <asm/tlbflush.h> |
40 | #include <asm/rheap.h> | 40 | #include <asm/rheap.h> |
41 | 41 | ||
42 | extern int get_pteptr(struct mm_struct *mm, unsigned long addr, pte_t **ptep); | ||
43 | |||
44 | static void m8xx_cpm_dpinit(void); | 42 | static void m8xx_cpm_dpinit(void); |
45 | static uint host_buffer; /* One page of host buffer */ | 43 | static uint host_buffer; /* One page of host buffer */ |
46 | static uint host_end; /* end + 1 */ | 44 | static uint host_end; /* end + 1 */ |
@@ -108,14 +106,11 @@ struct hw_interrupt_type cpm_pic = { | |||
108 | .end = cpm_eoi, | 106 | .end = cpm_eoi, |
109 | }; | 107 | }; |
110 | 108 | ||
111 | extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr); | ||
112 | |||
113 | void | 109 | void |
114 | m8xx_cpm_reset(uint bootpage) | 110 | m8xx_cpm_reset(void) |
115 | { | 111 | { |
116 | volatile immap_t *imp; | 112 | volatile immap_t *imp; |
117 | volatile cpm8xx_t *commproc; | 113 | volatile cpm8xx_t *commproc; |
118 | pte_t *pte; | ||
119 | 114 | ||
120 | imp = (immap_t *)IMAP_ADDR; | 115 | imp = (immap_t *)IMAP_ADDR; |
121 | commproc = (cpm8xx_t *)&imp->im_cpm; | 116 | commproc = (cpm8xx_t *)&imp->im_cpm; |
@@ -143,17 +138,6 @@ m8xx_cpm_reset(uint bootpage) | |||
143 | /* Reclaim the DP memory for our use. */ | 138 | /* Reclaim the DP memory for our use. */ |
144 | m8xx_cpm_dpinit(); | 139 | m8xx_cpm_dpinit(); |
145 | 140 | ||
146 | /* get the PTE for the bootpage */ | ||
147 | if (!get_pteptr(&init_mm, bootpage, &pte)) | ||
148 | panic("get_pteptr failed\n"); | ||
149 | |||
150 | /* and make it uncachable */ | ||
151 | pte_val(*pte) |= _PAGE_NO_CACHE; | ||
152 | _tlbie(bootpage); | ||
153 | |||
154 | host_buffer = bootpage; | ||
155 | host_end = host_buffer + PAGE_SIZE; | ||
156 | |||
157 | /* Tell everyone where the comm processor resides. | 141 | /* Tell everyone where the comm processor resides. |
158 | */ | 142 | */ |
159 | cpmp = (cpm8xx_t *)commproc; | 143 | cpmp = (cpm8xx_t *)commproc; |
@@ -384,8 +368,6 @@ static rh_info_t cpm_dpmem_info; | |||
384 | 368 | ||
385 | void m8xx_cpm_dpinit(void) | 369 | void m8xx_cpm_dpinit(void) |
386 | { | 370 | { |
387 | cpm8xx_t *cp = &((immap_t *)IMAP_ADDR)->im_cpm; | ||
388 | |||
389 | spin_lock_init(&cpm_dpmem_lock); | 371 | spin_lock_init(&cpm_dpmem_lock); |
390 | 372 | ||
391 | /* Initialize the info header */ | 373 | /* Initialize the info header */ |
diff --git a/arch/ppc/8xx_io/fec.c b/arch/ppc/8xx_io/fec.c index 0730392dcc20..62f68d6181c6 100644 --- a/arch/ppc/8xx_io/fec.c +++ b/arch/ppc/8xx_io/fec.c | |||
@@ -173,7 +173,7 @@ struct fec_enet_private { | |||
173 | uint phy_status; | 173 | uint phy_status; |
174 | uint phy_speed; | 174 | uint phy_speed; |
175 | phy_info_t *phy; | 175 | phy_info_t *phy; |
176 | struct tq_struct phy_task; | 176 | struct work_struct phy_task; |
177 | 177 | ||
178 | uint sequence_done; | 178 | uint sequence_done; |
179 | 179 | ||
@@ -199,7 +199,8 @@ static int fec_enet_start_xmit(struct sk_buff *skb, struct net_device *dev); | |||
199 | #ifdef CONFIG_USE_MDIO | 199 | #ifdef CONFIG_USE_MDIO |
200 | static void fec_enet_mii(struct net_device *dev); | 200 | static void fec_enet_mii(struct net_device *dev); |
201 | #endif /* CONFIG_USE_MDIO */ | 201 | #endif /* CONFIG_USE_MDIO */ |
202 | static void fec_enet_interrupt(int irq, void * dev_id, struct pt_regs * regs); | 202 | static irqreturn_t fec_enet_interrupt(int irq, void * dev_id, |
203 | struct pt_regs * regs); | ||
203 | #ifdef CONFIG_FEC_PACKETHOOK | 204 | #ifdef CONFIG_FEC_PACKETHOOK |
204 | static void fec_enet_tx(struct net_device *dev, __u32 regval); | 205 | static void fec_enet_tx(struct net_device *dev, __u32 regval); |
205 | static void fec_enet_rx(struct net_device *dev, __u32 regval); | 206 | static void fec_enet_rx(struct net_device *dev, __u32 regval); |
@@ -471,7 +472,7 @@ fec_timeout(struct net_device *dev) | |||
471 | /* The interrupt handler. | 472 | /* The interrupt handler. |
472 | * This is called from the MPC core interrupt. | 473 | * This is called from the MPC core interrupt. |
473 | */ | 474 | */ |
474 | static void | 475 | static irqreturn_t |
475 | fec_enet_interrupt(int irq, void * dev_id, struct pt_regs * regs) | 476 | fec_enet_interrupt(int irq, void * dev_id, struct pt_regs * regs) |
476 | { | 477 | { |
477 | struct net_device *dev = dev_id; | 478 | struct net_device *dev = dev_id; |
@@ -525,6 +526,7 @@ printk("%s[%d] %s: unexpected FEC_ENET_MII event\n", __FILE__,__LINE__,__FUNCTIO | |||
525 | } | 526 | } |
526 | 527 | ||
527 | } | 528 | } |
529 | return IRQ_RETVAL(IRQ_HANDLED); | ||
528 | } | 530 | } |
529 | 531 | ||
530 | 532 | ||
@@ -1263,8 +1265,9 @@ static void mii_display_status(struct net_device *dev) | |||
1263 | printk(".\n"); | 1265 | printk(".\n"); |
1264 | } | 1266 | } |
1265 | 1267 | ||
1266 | static void mii_display_config(struct net_device *dev) | 1268 | static void mii_display_config(void *priv) |
1267 | { | 1269 | { |
1270 | struct net_device *dev = (struct net_device *)priv; | ||
1268 | struct fec_enet_private *fep = dev->priv; | 1271 | struct fec_enet_private *fep = dev->priv; |
1269 | volatile uint *s = &(fep->phy_status); | 1272 | volatile uint *s = &(fep->phy_status); |
1270 | 1273 | ||
@@ -1294,8 +1297,9 @@ static void mii_display_config(struct net_device *dev) | |||
1294 | fep->sequence_done = 1; | 1297 | fep->sequence_done = 1; |
1295 | } | 1298 | } |
1296 | 1299 | ||
1297 | static void mii_relink(struct net_device *dev) | 1300 | static void mii_relink(void *priv) |
1298 | { | 1301 | { |
1302 | struct net_device *dev = (struct net_device *)priv; | ||
1299 | struct fec_enet_private *fep = dev->priv; | 1303 | struct fec_enet_private *fep = dev->priv; |
1300 | int duplex; | 1304 | int duplex; |
1301 | 1305 | ||
@@ -1323,18 +1327,16 @@ static void mii_queue_relink(uint mii_reg, struct net_device *dev) | |||
1323 | { | 1327 | { |
1324 | struct fec_enet_private *fep = dev->priv; | 1328 | struct fec_enet_private *fep = dev->priv; |
1325 | 1329 | ||
1326 | fep->phy_task.routine = (void *)mii_relink; | 1330 | INIT_WORK(&fep->phy_task, mii_relink, (void *)dev); |
1327 | fep->phy_task.data = dev; | 1331 | schedule_work(&fep->phy_task); |
1328 | schedule_task(&fep->phy_task); | ||
1329 | } | 1332 | } |
1330 | 1333 | ||
1331 | static void mii_queue_config(uint mii_reg, struct net_device *dev) | 1334 | static void mii_queue_config(uint mii_reg, struct net_device *dev) |
1332 | { | 1335 | { |
1333 | struct fec_enet_private *fep = dev->priv; | 1336 | struct fec_enet_private *fep = dev->priv; |
1334 | 1337 | ||
1335 | fep->phy_task.routine = (void *)mii_display_config; | 1338 | INIT_WORK(&fep->phy_task, mii_display_config, (void *)dev); |
1336 | fep->phy_task.data = dev; | 1339 | schedule_work(&fep->phy_task); |
1337 | schedule_task(&fep->phy_task); | ||
1338 | } | 1340 | } |
1339 | 1341 | ||
1340 | 1342 | ||
@@ -1403,11 +1405,11 @@ mii_discover_phy(uint mii_reg, struct net_device *dev) | |||
1403 | 1405 | ||
1404 | /* This interrupt occurs when the PHY detects a link change. | 1406 | /* This interrupt occurs when the PHY detects a link change. |
1405 | */ | 1407 | */ |
1406 | static void | 1408 | static |
1407 | #ifdef CONFIG_RPXCLASSIC | 1409 | #ifdef CONFIG_RPXCLASSIC |
1408 | mii_link_interrupt(void *dev_id) | 1410 | void mii_link_interrupt(void *dev_id) |
1409 | #else | 1411 | #else |
1410 | mii_link_interrupt(int irq, void * dev_id, struct pt_regs * regs) | 1412 | irqreturn_t mii_link_interrupt(int irq, void * dev_id, struct pt_regs * regs) |
1411 | #endif | 1413 | #endif |
1412 | { | 1414 | { |
1413 | #ifdef CONFIG_USE_MDIO | 1415 | #ifdef CONFIG_USE_MDIO |
@@ -1440,6 +1442,9 @@ mii_link_interrupt(int irq, void * dev_id, struct pt_regs * regs) | |||
1440 | printk("%s[%d] %s: unexpected Link interrupt\n", __FILE__,__LINE__,__FUNCTION__); | 1442 | printk("%s[%d] %s: unexpected Link interrupt\n", __FILE__,__LINE__,__FUNCTION__); |
1441 | #endif /* CONFIG_USE_MDIO */ | 1443 | #endif /* CONFIG_USE_MDIO */ |
1442 | 1444 | ||
1445 | #ifndef CONFIG_RPXCLASSIC | ||
1446 | return IRQ_RETVAL(IRQ_HANDLED); | ||
1447 | #endif /* CONFIG_RPXCLASSIC */ | ||
1443 | } | 1448 | } |
1444 | 1449 | ||
1445 | static int | 1450 | static int |
@@ -1575,7 +1580,7 @@ static int __init fec_enet_init(void) | |||
1575 | struct fec_enet_private *fep; | 1580 | struct fec_enet_private *fep; |
1576 | int i, j, k, err; | 1581 | int i, j, k, err; |
1577 | unsigned char *eap, *iap, *ba; | 1582 | unsigned char *eap, *iap, *ba; |
1578 | unsigned long mem_addr; | 1583 | dma_addr_t mem_addr; |
1579 | volatile cbd_t *bdp; | 1584 | volatile cbd_t *bdp; |
1580 | cbd_t *cbd_base; | 1585 | cbd_t *cbd_base; |
1581 | volatile immap_t *immap; | 1586 | volatile immap_t *immap; |
@@ -1640,7 +1645,8 @@ static int __init fec_enet_init(void) | |||
1640 | printk("FEC initialization failed.\n"); | 1645 | printk("FEC initialization failed.\n"); |
1641 | return 1; | 1646 | return 1; |
1642 | } | 1647 | } |
1643 | cbd_base = (cbd_t *)consistent_alloc(GFP_KERNEL, PAGE_SIZE, &mem_addr); | 1648 | cbd_base = (cbd_t *)dma_alloc_coherent(dev->class_dev.dev, PAGE_SIZE, |
1649 | &mem_addr, GFP_KERNEL); | ||
1644 | 1650 | ||
1645 | /* Set receive and transmit descriptor base. | 1651 | /* Set receive and transmit descriptor base. |
1646 | */ | 1652 | */ |
@@ -1657,7 +1663,10 @@ static int __init fec_enet_init(void) | |||
1657 | 1663 | ||
1658 | /* Allocate a page. | 1664 | /* Allocate a page. |
1659 | */ | 1665 | */ |
1660 | ba = (unsigned char *)consistent_alloc(GFP_KERNEL, PAGE_SIZE, &mem_addr); | 1666 | ba = (unsigned char *)dma_alloc_coherent(dev->class_dev.dev, |
1667 | PAGE_SIZE, | ||
1668 | &mem_addr, | ||
1669 | GFP_KERNEL); | ||
1661 | /* BUG: no check for failure */ | 1670 | /* BUG: no check for failure */ |
1662 | 1671 | ||
1663 | /* Initialize the BD for every fragment in the page. | 1672 | /* Initialize the BD for every fragment in the page. |
diff --git a/arch/ppc/Kconfig b/arch/ppc/Kconfig index b833cbcd77f0..f6db3b385fea 100644 --- a/arch/ppc/Kconfig +++ b/arch/ppc/Kconfig | |||
@@ -85,7 +85,6 @@ config POWER4 | |||
85 | bool "POWER4 and 970 (G5)" | 85 | bool "POWER4 and 970 (G5)" |
86 | 86 | ||
87 | config 8xx | 87 | config 8xx |
88 | depends on BROKEN | ||
89 | bool "8xx" | 88 | bool "8xx" |
90 | 89 | ||
91 | config E200 | 90 | config E200 |
@@ -559,6 +558,7 @@ config PPC_MULTIPLATFORM | |||
559 | 558 | ||
560 | config APUS | 559 | config APUS |
561 | bool "Amiga-APUS" | 560 | bool "Amiga-APUS" |
561 | depends on BROKEN | ||
562 | help | 562 | help |
563 | Select APUS if configuring for a PowerUP Amiga. | 563 | Select APUS if configuring for a PowerUP Amiga. |
564 | More information is available at: | 564 | More information is available at: |
@@ -648,6 +648,7 @@ config PAL4 | |||
648 | 648 | ||
649 | config GEMINI | 649 | config GEMINI |
650 | bool "Synergy-Gemini" | 650 | bool "Synergy-Gemini" |
651 | depends on BROKEN | ||
651 | help | 652 | help |
652 | Select Gemini if configuring for a Synergy Microsystems' Gemini | 653 | Select Gemini if configuring for a Synergy Microsystems' Gemini |
653 | series Single Board Computer. More information is available at: | 654 | series Single Board Computer. More information is available at: |
@@ -878,6 +879,13 @@ config MPC10X_STORE_GATHERING | |||
878 | bool "Enable MPC10x store gathering" | 879 | bool "Enable MPC10x store gathering" |
879 | depends on MPC10X_BRIDGE | 880 | depends on MPC10X_BRIDGE |
880 | 881 | ||
882 | config SANDPOINT_ENABLE_UART1 | ||
883 | bool "Enable DUART mode on Sandpoint" | ||
884 | depends on SANDPOINT | ||
885 | help | ||
886 | If this option is enabled then the MPC824x processor will run | ||
887 | in DUART mode instead of UART mode. | ||
888 | |||
881 | config CPC710_DATA_GATHERING | 889 | config CPC710_DATA_GATHERING |
882 | bool "Enable CPC710 data gathering" | 890 | bool "Enable CPC710 data gathering" |
883 | depends on K2 | 891 | depends on K2 |
@@ -935,19 +943,11 @@ config NR_CPUS | |||
935 | depends on SMP | 943 | depends on SMP |
936 | default "4" | 944 | default "4" |
937 | 945 | ||
938 | config PREEMPT | ||
939 | bool "Preemptible Kernel" | ||
940 | help | ||
941 | This option reduces the latency of the kernel when reacting to | ||
942 | real-time or interactive events by allowing a low priority process to | ||
943 | be preempted even if it is in kernel mode executing a system call. | ||
944 | |||
945 | Say Y here if you are building a kernel for a desktop, embedded | ||
946 | or real-time system. Say N if you are unsure. | ||
947 | |||
948 | config HIGHMEM | 946 | config HIGHMEM |
949 | bool "High memory support" | 947 | bool "High memory support" |
950 | 948 | ||
949 | source kernel/Kconfig.hz | ||
950 | source kernel/Kconfig.preempt | ||
951 | source "mm/Kconfig" | 951 | source "mm/Kconfig" |
952 | 952 | ||
953 | source "fs/Kconfig.binfmt" | 953 | source "fs/Kconfig.binfmt" |
diff --git a/arch/ppc/boot/simple/Makefile b/arch/ppc/boot/simple/Makefile index 991b4cbb83c8..d4dc4fa79647 100644 --- a/arch/ppc/boot/simple/Makefile +++ b/arch/ppc/boot/simple/Makefile | |||
@@ -61,6 +61,12 @@ zimageinitrd-$(CONFIG_IBM_OPENBIOS) := zImage.initrd-TREE | |||
61 | end-$(CONFIG_EMBEDDEDBOOT) := embedded | 61 | end-$(CONFIG_EMBEDDEDBOOT) := embedded |
62 | misc-$(CONFIG_EMBEDDEDBOOT) := misc-embedded.o | 62 | misc-$(CONFIG_EMBEDDEDBOOT) := misc-embedded.o |
63 | 63 | ||
64 | zimage-$(CONFIG_BAMBOO) := zImage-TREE | ||
65 | zimageinitrd-$(CONFIG_BAMBOO) := zImage.initrd-TREE | ||
66 | end-$(CONFIG_BAMBOO) := bamboo | ||
67 | entrypoint-$(CONFIG_BAMBOO) := 0x01000000 | ||
68 | extra.o-$(CONFIG_BAMBOO) := pibs.o | ||
69 | |||
64 | zimage-$(CONFIG_EBONY) := zImage-TREE | 70 | zimage-$(CONFIG_EBONY) := zImage-TREE |
65 | zimageinitrd-$(CONFIG_EBONY) := zImage.initrd-TREE | 71 | zimageinitrd-$(CONFIG_EBONY) := zImage.initrd-TREE |
66 | end-$(CONFIG_EBONY) := ebony | 72 | end-$(CONFIG_EBONY) := ebony |
diff --git a/arch/ppc/boot/simple/pibs.c b/arch/ppc/boot/simple/pibs.c index 1348740e503f..67222d57c345 100644 --- a/arch/ppc/boot/simple/pibs.c +++ b/arch/ppc/boot/simple/pibs.c | |||
@@ -91,9 +91,11 @@ load_kernel(unsigned long load_addr, int num_words, unsigned long cksum, | |||
91 | 91 | ||
92 | mac64 = simple_strtoull((char *)PIBS_MAC_BASE, 0, 16); | 92 | mac64 = simple_strtoull((char *)PIBS_MAC_BASE, 0, 16); |
93 | memcpy(hold_residual->bi_enetaddr, (char *)&mac64+2, 6); | 93 | memcpy(hold_residual->bi_enetaddr, (char *)&mac64+2, 6); |
94 | #ifdef CONFIG_440GX | 94 | #if defined(CONFIG_440GX) || defined(CONFIG_440EP) |
95 | mac64 = simple_strtoull((char *)(PIBS_MAC_BASE+PIBS_MAC_OFFSET), 0, 16); | 95 | mac64 = simple_strtoull((char *)(PIBS_MAC_BASE+PIBS_MAC_OFFSET), 0, 16); |
96 | memcpy(hold_residual->bi_enet1addr, (char *)&mac64+2, 6); | 96 | memcpy(hold_residual->bi_enet1addr, (char *)&mac64+2, 6); |
97 | #endif | ||
98 | #ifdef CONFIG_440GX | ||
97 | mac64 = simple_strtoull((char *)(PIBS_MAC_BASE+PIBS_MAC_OFFSET*2), 0, 16); | 99 | mac64 = simple_strtoull((char *)(PIBS_MAC_BASE+PIBS_MAC_OFFSET*2), 0, 16); |
98 | memcpy(hold_residual->bi_enet2addr, (char *)&mac64+2, 6); | 100 | memcpy(hold_residual->bi_enet2addr, (char *)&mac64+2, 6); |
99 | mac64 = simple_strtoull((char *)(PIBS_MAC_BASE+PIBS_MAC_OFFSET*3), 0, 16); | 101 | mac64 = simple_strtoull((char *)(PIBS_MAC_BASE+PIBS_MAC_OFFSET*3), 0, 16); |
diff --git a/arch/ppc/configs/bamboo_defconfig b/arch/ppc/configs/bamboo_defconfig new file mode 100644 index 000000000000..0ba4e70d50b6 --- /dev/null +++ b/arch/ppc/configs/bamboo_defconfig | |||
@@ -0,0 +1,943 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.12 | ||
4 | # Tue Jun 28 15:24:25 2005 | ||
5 | # | ||
6 | CONFIG_MMU=y | ||
7 | CONFIG_GENERIC_HARDIRQS=y | ||
8 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | ||
9 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
10 | CONFIG_HAVE_DEC_LOCK=y | ||
11 | CONFIG_PPC=y | ||
12 | CONFIG_PPC32=y | ||
13 | CONFIG_GENERIC_NVRAM=y | ||
14 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
15 | |||
16 | # | ||
17 | # Code maturity level options | ||
18 | # | ||
19 | CONFIG_EXPERIMENTAL=y | ||
20 | CONFIG_CLEAN_COMPILE=y | ||
21 | CONFIG_BROKEN_ON_SMP=y | ||
22 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
23 | |||
24 | # | ||
25 | # General setup | ||
26 | # | ||
27 | CONFIG_LOCALVERSION="" | ||
28 | CONFIG_SWAP=y | ||
29 | CONFIG_SYSVIPC=y | ||
30 | # CONFIG_POSIX_MQUEUE is not set | ||
31 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
32 | CONFIG_SYSCTL=y | ||
33 | # CONFIG_AUDIT is not set | ||
34 | # CONFIG_HOTPLUG is not set | ||
35 | CONFIG_KOBJECT_UEVENT=y | ||
36 | # CONFIG_IKCONFIG is not set | ||
37 | CONFIG_EMBEDDED=y | ||
38 | CONFIG_KALLSYMS=y | ||
39 | # CONFIG_KALLSYMS_ALL is not set | ||
40 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
41 | CONFIG_PRINTK=y | ||
42 | CONFIG_BUG=y | ||
43 | CONFIG_BASE_FULL=y | ||
44 | CONFIG_FUTEX=y | ||
45 | CONFIG_EPOLL=y | ||
46 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
47 | CONFIG_SHMEM=y | ||
48 | CONFIG_CC_ALIGN_FUNCTIONS=0 | ||
49 | CONFIG_CC_ALIGN_LABELS=0 | ||
50 | CONFIG_CC_ALIGN_LOOPS=0 | ||
51 | CONFIG_CC_ALIGN_JUMPS=0 | ||
52 | # CONFIG_TINY_SHMEM is not set | ||
53 | CONFIG_BASE_SMALL=0 | ||
54 | |||
55 | # | ||
56 | # Loadable module support | ||
57 | # | ||
58 | CONFIG_MODULES=y | ||
59 | CONFIG_MODULE_UNLOAD=y | ||
60 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
61 | CONFIG_OBSOLETE_MODPARM=y | ||
62 | # CONFIG_MODVERSIONS is not set | ||
63 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
64 | CONFIG_KMOD=y | ||
65 | |||
66 | # | ||
67 | # Processor | ||
68 | # | ||
69 | # CONFIG_6xx is not set | ||
70 | # CONFIG_40x is not set | ||
71 | CONFIG_44x=y | ||
72 | # CONFIG_POWER3 is not set | ||
73 | # CONFIG_POWER4 is not set | ||
74 | # CONFIG_8xx is not set | ||
75 | # CONFIG_E200 is not set | ||
76 | # CONFIG_E500 is not set | ||
77 | CONFIG_PPC_FPU=y | ||
78 | CONFIG_BOOKE=y | ||
79 | CONFIG_PTE_64BIT=y | ||
80 | CONFIG_PHYS_64BIT=y | ||
81 | # CONFIG_MATH_EMULATION is not set | ||
82 | # CONFIG_KEXEC is not set | ||
83 | # CONFIG_CPU_FREQ is not set | ||
84 | CONFIG_4xx=y | ||
85 | |||
86 | # | ||
87 | # IBM 4xx options | ||
88 | # | ||
89 | CONFIG_BAMBOO=y | ||
90 | # CONFIG_EBONY is not set | ||
91 | # CONFIG_LUAN is not set | ||
92 | # CONFIG_OCOTEA is not set | ||
93 | CONFIG_440EP=y | ||
94 | CONFIG_440=y | ||
95 | CONFIG_IBM440EP_ERR42=y | ||
96 | CONFIG_IBM_OCP=y | ||
97 | # CONFIG_PPC4xx_DMA is not set | ||
98 | CONFIG_PPC_GEN550=y | ||
99 | # CONFIG_PM is not set | ||
100 | CONFIG_NOT_COHERENT_CACHE=y | ||
101 | |||
102 | # | ||
103 | # Platform options | ||
104 | # | ||
105 | # CONFIG_PC_KEYBOARD is not set | ||
106 | # CONFIG_SMP is not set | ||
107 | # CONFIG_PREEMPT is not set | ||
108 | # CONFIG_HIGHMEM is not set | ||
109 | CONFIG_SELECT_MEMORY_MODEL=y | ||
110 | CONFIG_FLATMEM_MANUAL=y | ||
111 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
112 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
113 | CONFIG_FLATMEM=y | ||
114 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
115 | CONFIG_BINFMT_ELF=y | ||
116 | # CONFIG_BINFMT_MISC is not set | ||
117 | CONFIG_CMDLINE_BOOL=y | ||
118 | CONFIG_CMDLINE="ip=on" | ||
119 | CONFIG_SECCOMP=y | ||
120 | CONFIG_ISA_DMA_API=y | ||
121 | |||
122 | # | ||
123 | # Bus options | ||
124 | # | ||
125 | CONFIG_PCI=y | ||
126 | CONFIG_PCI_DOMAINS=y | ||
127 | # CONFIG_PCI_LEGACY_PROC is not set | ||
128 | # CONFIG_PCI_NAMES is not set | ||
129 | # CONFIG_PCI_DEBUG is not set | ||
130 | |||
131 | # | ||
132 | # PCCARD (PCMCIA/CardBus) support | ||
133 | # | ||
134 | # CONFIG_PCCARD is not set | ||
135 | |||
136 | # | ||
137 | # Advanced setup | ||
138 | # | ||
139 | # CONFIG_ADVANCED_OPTIONS is not set | ||
140 | |||
141 | # | ||
142 | # Default settings for advanced configuration options are used | ||
143 | # | ||
144 | CONFIG_HIGHMEM_START=0xfe000000 | ||
145 | CONFIG_LOWMEM_SIZE=0x30000000 | ||
146 | CONFIG_KERNEL_START=0xc0000000 | ||
147 | CONFIG_TASK_SIZE=0x80000000 | ||
148 | CONFIG_CONSISTENT_START=0xff100000 | ||
149 | CONFIG_CONSISTENT_SIZE=0x00200000 | ||
150 | CONFIG_BOOT_LOAD=0x01000000 | ||
151 | |||
152 | # | ||
153 | # Device Drivers | ||
154 | # | ||
155 | |||
156 | # | ||
157 | # Generic Driver Options | ||
158 | # | ||
159 | # CONFIG_STANDALONE is not set | ||
160 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
161 | # CONFIG_FW_LOADER is not set | ||
162 | # CONFIG_DEBUG_DRIVER is not set | ||
163 | |||
164 | # | ||
165 | # Memory Technology Devices (MTD) | ||
166 | # | ||
167 | # CONFIG_MTD is not set | ||
168 | |||
169 | # | ||
170 | # Parallel port support | ||
171 | # | ||
172 | # CONFIG_PARPORT is not set | ||
173 | |||
174 | # | ||
175 | # Plug and Play support | ||
176 | # | ||
177 | |||
178 | # | ||
179 | # Block devices | ||
180 | # | ||
181 | # CONFIG_BLK_DEV_FD is not set | ||
182 | # CONFIG_BLK_CPQ_DA is not set | ||
183 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
184 | # CONFIG_BLK_DEV_DAC960 is not set | ||
185 | # CONFIG_BLK_DEV_UMEM is not set | ||
186 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
187 | # CONFIG_BLK_DEV_LOOP is not set | ||
188 | # CONFIG_BLK_DEV_NBD is not set | ||
189 | # CONFIG_BLK_DEV_SX8 is not set | ||
190 | # CONFIG_BLK_DEV_UB is not set | ||
191 | # CONFIG_BLK_DEV_RAM is not set | ||
192 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
193 | CONFIG_INITRAMFS_SOURCE="" | ||
194 | # CONFIG_LBD is not set | ||
195 | # CONFIG_CDROM_PKTCDVD is not set | ||
196 | |||
197 | # | ||
198 | # IO Schedulers | ||
199 | # | ||
200 | CONFIG_IOSCHED_NOOP=y | ||
201 | CONFIG_IOSCHED_AS=y | ||
202 | CONFIG_IOSCHED_DEADLINE=y | ||
203 | CONFIG_IOSCHED_CFQ=y | ||
204 | # CONFIG_ATA_OVER_ETH is not set | ||
205 | |||
206 | # | ||
207 | # ATA/ATAPI/MFM/RLL support | ||
208 | # | ||
209 | CONFIG_IDE=y | ||
210 | CONFIG_BLK_DEV_IDE=y | ||
211 | |||
212 | # | ||
213 | # Please see Documentation/ide.txt for help/info on IDE drives | ||
214 | # | ||
215 | # CONFIG_BLK_DEV_IDE_SATA is not set | ||
216 | CONFIG_BLK_DEV_IDEDISK=y | ||
217 | # CONFIG_IDEDISK_MULTI_MODE is not set | ||
218 | # CONFIG_BLK_DEV_IDECD is not set | ||
219 | # CONFIG_BLK_DEV_IDETAPE is not set | ||
220 | # CONFIG_BLK_DEV_IDEFLOPPY is not set | ||
221 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
222 | # CONFIG_IDE_TASK_IOCTL is not set | ||
223 | |||
224 | # | ||
225 | # IDE chipset support/bugfixes | ||
226 | # | ||
227 | CONFIG_IDE_GENERIC=y | ||
228 | CONFIG_BLK_DEV_IDEPCI=y | ||
229 | # CONFIG_IDEPCI_SHARE_IRQ is not set | ||
230 | # CONFIG_BLK_DEV_OFFBOARD is not set | ||
231 | # CONFIG_BLK_DEV_GENERIC is not set | ||
232 | # CONFIG_BLK_DEV_OPTI621 is not set | ||
233 | # CONFIG_BLK_DEV_SL82C105 is not set | ||
234 | CONFIG_BLK_DEV_IDEDMA_PCI=y | ||
235 | # CONFIG_BLK_DEV_IDEDMA_FORCED is not set | ||
236 | # CONFIG_IDEDMA_PCI_AUTO is not set | ||
237 | # CONFIG_BLK_DEV_AEC62XX is not set | ||
238 | # CONFIG_BLK_DEV_ALI15X3 is not set | ||
239 | # CONFIG_BLK_DEV_AMD74XX is not set | ||
240 | CONFIG_BLK_DEV_CMD64X=y | ||
241 | # CONFIG_BLK_DEV_TRIFLEX is not set | ||
242 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
243 | # CONFIG_BLK_DEV_CS5520 is not set | ||
244 | # CONFIG_BLK_DEV_CS5530 is not set | ||
245 | # CONFIG_BLK_DEV_HPT34X is not set | ||
246 | # CONFIG_BLK_DEV_HPT366 is not set | ||
247 | # CONFIG_BLK_DEV_SC1200 is not set | ||
248 | # CONFIG_BLK_DEV_PIIX is not set | ||
249 | # CONFIG_BLK_DEV_IT821X is not set | ||
250 | # CONFIG_BLK_DEV_NS87415 is not set | ||
251 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set | ||
252 | # CONFIG_BLK_DEV_PDC202XX_NEW is not set | ||
253 | # CONFIG_BLK_DEV_SVWKS is not set | ||
254 | # CONFIG_BLK_DEV_SIIMAGE is not set | ||
255 | # CONFIG_BLK_DEV_SLC90E66 is not set | ||
256 | # CONFIG_BLK_DEV_TRM290 is not set | ||
257 | # CONFIG_BLK_DEV_VIA82CXXX is not set | ||
258 | # CONFIG_IDE_ARM is not set | ||
259 | CONFIG_BLK_DEV_IDEDMA=y | ||
260 | # CONFIG_IDEDMA_IVB is not set | ||
261 | # CONFIG_IDEDMA_AUTO is not set | ||
262 | # CONFIG_BLK_DEV_HD is not set | ||
263 | |||
264 | # | ||
265 | # SCSI device support | ||
266 | # | ||
267 | CONFIG_SCSI=y | ||
268 | CONFIG_SCSI_PROC_FS=y | ||
269 | |||
270 | # | ||
271 | # SCSI support type (disk, tape, CD-ROM) | ||
272 | # | ||
273 | # CONFIG_BLK_DEV_SD is not set | ||
274 | CONFIG_CHR_DEV_ST=y | ||
275 | # CONFIG_CHR_DEV_OSST is not set | ||
276 | # CONFIG_BLK_DEV_SR is not set | ||
277 | # CONFIG_CHR_DEV_SG is not set | ||
278 | # CONFIG_CHR_DEV_SCH is not set | ||
279 | |||
280 | # | ||
281 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
282 | # | ||
283 | # CONFIG_SCSI_MULTI_LUN is not set | ||
284 | # CONFIG_SCSI_CONSTANTS is not set | ||
285 | # CONFIG_SCSI_LOGGING is not set | ||
286 | |||
287 | # | ||
288 | # SCSI Transport Attributes | ||
289 | # | ||
290 | CONFIG_SCSI_SPI_ATTRS=y | ||
291 | # CONFIG_SCSI_FC_ATTRS is not set | ||
292 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
293 | |||
294 | # | ||
295 | # SCSI low-level drivers | ||
296 | # | ||
297 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | ||
298 | # CONFIG_SCSI_3W_9XXX is not set | ||
299 | # CONFIG_SCSI_ACARD is not set | ||
300 | # CONFIG_SCSI_AACRAID is not set | ||
301 | # CONFIG_SCSI_AIC7XXX is not set | ||
302 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
303 | # CONFIG_SCSI_AIC79XX is not set | ||
304 | # CONFIG_SCSI_DPT_I2O is not set | ||
305 | # CONFIG_MEGARAID_NEWGEN is not set | ||
306 | # CONFIG_MEGARAID_LEGACY is not set | ||
307 | # CONFIG_SCSI_SATA is not set | ||
308 | # CONFIG_SCSI_BUSLOGIC is not set | ||
309 | # CONFIG_SCSI_DMX3191D is not set | ||
310 | # CONFIG_SCSI_EATA is not set | ||
311 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
312 | # CONFIG_SCSI_GDTH is not set | ||
313 | # CONFIG_SCSI_IPS is not set | ||
314 | # CONFIG_SCSI_INITIO is not set | ||
315 | # CONFIG_SCSI_INIA100 is not set | ||
316 | CONFIG_SCSI_SYM53C8XX_2=y | ||
317 | CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 | ||
318 | CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 | ||
319 | CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 | ||
320 | # CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set | ||
321 | # CONFIG_SCSI_IPR is not set | ||
322 | # CONFIG_SCSI_QLOGIC_FC is not set | ||
323 | # CONFIG_SCSI_QLOGIC_1280 is not set | ||
324 | CONFIG_SCSI_QLA2XXX=y | ||
325 | # CONFIG_SCSI_QLA21XX is not set | ||
326 | # CONFIG_SCSI_QLA22XX is not set | ||
327 | # CONFIG_SCSI_QLA2300 is not set | ||
328 | # CONFIG_SCSI_QLA2322 is not set | ||
329 | # CONFIG_SCSI_QLA6312 is not set | ||
330 | # CONFIG_SCSI_LPFC is not set | ||
331 | # CONFIG_SCSI_DC395x is not set | ||
332 | # CONFIG_SCSI_DC390T is not set | ||
333 | # CONFIG_SCSI_NSP32 is not set | ||
334 | # CONFIG_SCSI_DEBUG is not set | ||
335 | |||
336 | # | ||
337 | # Multi-device support (RAID and LVM) | ||
338 | # | ||
339 | # CONFIG_MD is not set | ||
340 | |||
341 | # | ||
342 | # Fusion MPT device support | ||
343 | # | ||
344 | # CONFIG_FUSION is not set | ||
345 | # CONFIG_FUSION_SPI is not set | ||
346 | # CONFIG_FUSION_FC is not set | ||
347 | |||
348 | # | ||
349 | # IEEE 1394 (FireWire) support | ||
350 | # | ||
351 | # CONFIG_IEEE1394 is not set | ||
352 | |||
353 | # | ||
354 | # I2O device support | ||
355 | # | ||
356 | # CONFIG_I2O is not set | ||
357 | |||
358 | # | ||
359 | # Macintosh device drivers | ||
360 | # | ||
361 | |||
362 | # | ||
363 | # Networking support | ||
364 | # | ||
365 | CONFIG_NET=y | ||
366 | |||
367 | # | ||
368 | # Networking options | ||
369 | # | ||
370 | CONFIG_PACKET=y | ||
371 | # CONFIG_PACKET_MMAP is not set | ||
372 | CONFIG_UNIX=y | ||
373 | # CONFIG_NET_KEY is not set | ||
374 | CONFIG_INET=y | ||
375 | # CONFIG_IP_MULTICAST is not set | ||
376 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
377 | CONFIG_IP_FIB_HASH=y | ||
378 | CONFIG_IP_PNP=y | ||
379 | # CONFIG_IP_PNP_DHCP is not set | ||
380 | CONFIG_IP_PNP_BOOTP=y | ||
381 | # CONFIG_IP_PNP_RARP is not set | ||
382 | # CONFIG_NET_IPIP is not set | ||
383 | # CONFIG_NET_IPGRE is not set | ||
384 | # CONFIG_ARPD is not set | ||
385 | # CONFIG_SYN_COOKIES is not set | ||
386 | # CONFIG_INET_AH is not set | ||
387 | # CONFIG_INET_ESP is not set | ||
388 | # CONFIG_INET_IPCOMP is not set | ||
389 | # CONFIG_INET_TUNNEL is not set | ||
390 | CONFIG_IP_TCPDIAG=y | ||
391 | # CONFIG_IP_TCPDIAG_IPV6 is not set | ||
392 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
393 | CONFIG_TCP_CONG_BIC=y | ||
394 | |||
395 | # | ||
396 | # IP: Virtual Server Configuration | ||
397 | # | ||
398 | # CONFIG_IP_VS is not set | ||
399 | # CONFIG_IPV6 is not set | ||
400 | CONFIG_NETFILTER=y | ||
401 | # CONFIG_NETFILTER_DEBUG is not set | ||
402 | |||
403 | # | ||
404 | # IP: Netfilter Configuration | ||
405 | # | ||
406 | # CONFIG_IP_NF_CONNTRACK is not set | ||
407 | # CONFIG_IP_NF_CONNTRACK_MARK is not set | ||
408 | # CONFIG_IP_NF_QUEUE is not set | ||
409 | # CONFIG_IP_NF_IPTABLES is not set | ||
410 | # CONFIG_IP_NF_ARPTABLES is not set | ||
411 | |||
412 | # | ||
413 | # SCTP Configuration (EXPERIMENTAL) | ||
414 | # | ||
415 | # CONFIG_IP_SCTP is not set | ||
416 | # CONFIG_ATM is not set | ||
417 | # CONFIG_BRIDGE is not set | ||
418 | # CONFIG_VLAN_8021Q is not set | ||
419 | # CONFIG_DECNET is not set | ||
420 | # CONFIG_LLC2 is not set | ||
421 | # CONFIG_IPX is not set | ||
422 | # CONFIG_ATALK is not set | ||
423 | # CONFIG_X25 is not set | ||
424 | # CONFIG_LAPB is not set | ||
425 | # CONFIG_NET_DIVERT is not set | ||
426 | # CONFIG_ECONET is not set | ||
427 | # CONFIG_WAN_ROUTER is not set | ||
428 | |||
429 | # | ||
430 | # QoS and/or fair queueing | ||
431 | # | ||
432 | # CONFIG_NET_SCHED is not set | ||
433 | # CONFIG_NET_CLS_ROUTE is not set | ||
434 | |||
435 | # | ||
436 | # Network testing | ||
437 | # | ||
438 | # CONFIG_NET_PKTGEN is not set | ||
439 | # CONFIG_NETPOLL is not set | ||
440 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
441 | # CONFIG_HAMRADIO is not set | ||
442 | # CONFIG_IRDA is not set | ||
443 | # CONFIG_BT is not set | ||
444 | CONFIG_NETDEVICES=y | ||
445 | # CONFIG_DUMMY is not set | ||
446 | # CONFIG_BONDING is not set | ||
447 | # CONFIG_EQUALIZER is not set | ||
448 | # CONFIG_TUN is not set | ||
449 | |||
450 | # | ||
451 | # ARCnet devices | ||
452 | # | ||
453 | # CONFIG_ARCNET is not set | ||
454 | |||
455 | # | ||
456 | # Ethernet (10 or 100Mbit) | ||
457 | # | ||
458 | CONFIG_NET_ETHERNET=y | ||
459 | CONFIG_MII=y | ||
460 | # CONFIG_HAPPYMEAL is not set | ||
461 | # CONFIG_SUNGEM is not set | ||
462 | # CONFIG_NET_VENDOR_3COM is not set | ||
463 | |||
464 | # | ||
465 | # Tulip family network device support | ||
466 | # | ||
467 | # CONFIG_NET_TULIP is not set | ||
468 | # CONFIG_HP100 is not set | ||
469 | CONFIG_IBM_EMAC=y | ||
470 | # CONFIG_IBM_EMAC_ERRMSG is not set | ||
471 | CONFIG_IBM_EMAC_RXB=64 | ||
472 | CONFIG_IBM_EMAC_TXB=8 | ||
473 | CONFIG_IBM_EMAC_FGAP=8 | ||
474 | CONFIG_IBM_EMAC_SKBRES=0 | ||
475 | CONFIG_NET_PCI=y | ||
476 | # CONFIG_PCNET32 is not set | ||
477 | # CONFIG_AMD8111_ETH is not set | ||
478 | # CONFIG_ADAPTEC_STARFIRE is not set | ||
479 | # CONFIG_B44 is not set | ||
480 | # CONFIG_FORCEDETH is not set | ||
481 | # CONFIG_DGRS is not set | ||
482 | CONFIG_EEPRO100=y | ||
483 | # CONFIG_E100 is not set | ||
484 | # CONFIG_FEALNX is not set | ||
485 | CONFIG_NATSEMI=y | ||
486 | # CONFIG_NE2K_PCI is not set | ||
487 | # CONFIG_8139CP is not set | ||
488 | # CONFIG_8139TOO is not set | ||
489 | # CONFIG_SIS900 is not set | ||
490 | # CONFIG_EPIC100 is not set | ||
491 | # CONFIG_SUNDANCE is not set | ||
492 | # CONFIG_TLAN is not set | ||
493 | # CONFIG_VIA_RHINE is not set | ||
494 | |||
495 | # | ||
496 | # Ethernet (1000 Mbit) | ||
497 | # | ||
498 | # CONFIG_ACENIC is not set | ||
499 | # CONFIG_DL2K is not set | ||
500 | CONFIG_E1000=y | ||
501 | # CONFIG_E1000_NAPI is not set | ||
502 | # CONFIG_NS83820 is not set | ||
503 | # CONFIG_HAMACHI is not set | ||
504 | # CONFIG_YELLOWFIN is not set | ||
505 | # CONFIG_R8169 is not set | ||
506 | # CONFIG_SKGE is not set | ||
507 | # CONFIG_SK98LIN is not set | ||
508 | # CONFIG_VIA_VELOCITY is not set | ||
509 | # CONFIG_TIGON3 is not set | ||
510 | # CONFIG_BNX2 is not set | ||
511 | |||
512 | # | ||
513 | # Ethernet (10000 Mbit) | ||
514 | # | ||
515 | # CONFIG_IXGB is not set | ||
516 | # CONFIG_S2IO is not set | ||
517 | |||
518 | # | ||
519 | # Token Ring devices | ||
520 | # | ||
521 | # CONFIG_TR is not set | ||
522 | |||
523 | # | ||
524 | # Wireless LAN (non-hamradio) | ||
525 | # | ||
526 | # CONFIG_NET_RADIO is not set | ||
527 | |||
528 | # | ||
529 | # Wan interfaces | ||
530 | # | ||
531 | # CONFIG_WAN is not set | ||
532 | # CONFIG_FDDI is not set | ||
533 | # CONFIG_HIPPI is not set | ||
534 | # CONFIG_PPP is not set | ||
535 | # CONFIG_SLIP is not set | ||
536 | # CONFIG_NET_FC is not set | ||
537 | # CONFIG_SHAPER is not set | ||
538 | # CONFIG_NETCONSOLE is not set | ||
539 | |||
540 | # | ||
541 | # ISDN subsystem | ||
542 | # | ||
543 | # CONFIG_ISDN is not set | ||
544 | |||
545 | # | ||
546 | # Telephony Support | ||
547 | # | ||
548 | # CONFIG_PHONE is not set | ||
549 | |||
550 | # | ||
551 | # Input device support | ||
552 | # | ||
553 | CONFIG_INPUT=y | ||
554 | |||
555 | # | ||
556 | # Userland interfaces | ||
557 | # | ||
558 | CONFIG_INPUT_MOUSEDEV=y | ||
559 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
560 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
561 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
562 | # CONFIG_INPUT_JOYDEV is not set | ||
563 | # CONFIG_INPUT_TSDEV is not set | ||
564 | # CONFIG_INPUT_EVDEV is not set | ||
565 | # CONFIG_INPUT_EVBUG is not set | ||
566 | |||
567 | # | ||
568 | # Input Device Drivers | ||
569 | # | ||
570 | # CONFIG_INPUT_KEYBOARD is not set | ||
571 | # CONFIG_INPUT_MOUSE is not set | ||
572 | # CONFIG_INPUT_JOYSTICK is not set | ||
573 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
574 | # CONFIG_INPUT_MISC is not set | ||
575 | |||
576 | # | ||
577 | # Hardware I/O ports | ||
578 | # | ||
579 | CONFIG_SERIO=y | ||
580 | # CONFIG_SERIO_I8042 is not set | ||
581 | # CONFIG_SERIO_SERPORT is not set | ||
582 | # CONFIG_SERIO_PCIPS2 is not set | ||
583 | # CONFIG_SERIO_LIBPS2 is not set | ||
584 | # CONFIG_SERIO_RAW is not set | ||
585 | # CONFIG_GAMEPORT is not set | ||
586 | |||
587 | # | ||
588 | # Character devices | ||
589 | # | ||
590 | # CONFIG_VT is not set | ||
591 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
592 | |||
593 | # | ||
594 | # Serial drivers | ||
595 | # | ||
596 | CONFIG_SERIAL_8250=y | ||
597 | CONFIG_SERIAL_8250_CONSOLE=y | ||
598 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
599 | CONFIG_SERIAL_8250_EXTENDED=y | ||
600 | # CONFIG_SERIAL_8250_MANY_PORTS is not set | ||
601 | CONFIG_SERIAL_8250_SHARE_IRQ=y | ||
602 | # CONFIG_SERIAL_8250_DETECT_IRQ is not set | ||
603 | # CONFIG_SERIAL_8250_RSA is not set | ||
604 | |||
605 | # | ||
606 | # Non-8250 serial port support | ||
607 | # | ||
608 | CONFIG_SERIAL_CORE=y | ||
609 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
610 | # CONFIG_SERIAL_JSM is not set | ||
611 | CONFIG_UNIX98_PTYS=y | ||
612 | CONFIG_LEGACY_PTYS=y | ||
613 | CONFIG_LEGACY_PTY_COUNT=256 | ||
614 | |||
615 | # | ||
616 | # IPMI | ||
617 | # | ||
618 | # CONFIG_IPMI_HANDLER is not set | ||
619 | |||
620 | # | ||
621 | # Watchdog Cards | ||
622 | # | ||
623 | # CONFIG_WATCHDOG is not set | ||
624 | # CONFIG_NVRAM is not set | ||
625 | # CONFIG_GEN_RTC is not set | ||
626 | # CONFIG_DTLK is not set | ||
627 | # CONFIG_R3964 is not set | ||
628 | # CONFIG_APPLICOM is not set | ||
629 | |||
630 | # | ||
631 | # Ftape, the floppy tape device driver | ||
632 | # | ||
633 | # CONFIG_AGP is not set | ||
634 | # CONFIG_DRM is not set | ||
635 | # CONFIG_RAW_DRIVER is not set | ||
636 | |||
637 | # | ||
638 | # TPM devices | ||
639 | # | ||
640 | # CONFIG_TCG_TPM is not set | ||
641 | |||
642 | # | ||
643 | # I2C support | ||
644 | # | ||
645 | # CONFIG_I2C is not set | ||
646 | |||
647 | # | ||
648 | # Dallas's 1-wire bus | ||
649 | # | ||
650 | # CONFIG_W1 is not set | ||
651 | |||
652 | # | ||
653 | # Misc devices | ||
654 | # | ||
655 | |||
656 | # | ||
657 | # Multimedia devices | ||
658 | # | ||
659 | # CONFIG_VIDEO_DEV is not set | ||
660 | |||
661 | # | ||
662 | # Digital Video Broadcasting Devices | ||
663 | # | ||
664 | # CONFIG_DVB is not set | ||
665 | |||
666 | # | ||
667 | # Graphics support | ||
668 | # | ||
669 | # CONFIG_FB is not set | ||
670 | |||
671 | # | ||
672 | # Sound | ||
673 | # | ||
674 | # CONFIG_SOUND is not set | ||
675 | |||
676 | # | ||
677 | # USB support | ||
678 | # | ||
679 | CONFIG_USB_ARCH_HAS_HCD=y | ||
680 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
681 | CONFIG_USB=y | ||
682 | CONFIG_USB_DEBUG=y | ||
683 | |||
684 | # | ||
685 | # Miscellaneous USB options | ||
686 | # | ||
687 | # CONFIG_USB_DEVICEFS is not set | ||
688 | # CONFIG_USB_BANDWIDTH is not set | ||
689 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
690 | # CONFIG_USB_OTG is not set | ||
691 | |||
692 | # | ||
693 | # USB Host Controller Drivers | ||
694 | # | ||
695 | # CONFIG_USB_EHCI_HCD is not set | ||
696 | # CONFIG_USB_ISP116X_HCD is not set | ||
697 | # CONFIG_USB_OHCI_HCD is not set | ||
698 | # CONFIG_USB_UHCI_HCD is not set | ||
699 | # CONFIG_USB_SL811_HCD is not set | ||
700 | |||
701 | # | ||
702 | # USB Device Class drivers | ||
703 | # | ||
704 | # CONFIG_USB_BLUETOOTH_TTY is not set | ||
705 | # CONFIG_USB_ACM is not set | ||
706 | # CONFIG_USB_PRINTER is not set | ||
707 | |||
708 | # | ||
709 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information | ||
710 | # | ||
711 | # CONFIG_USB_STORAGE is not set | ||
712 | |||
713 | # | ||
714 | # USB Input Devices | ||
715 | # | ||
716 | # CONFIG_USB_HID is not set | ||
717 | |||
718 | # | ||
719 | # USB HID Boot Protocol drivers | ||
720 | # | ||
721 | # CONFIG_USB_KBD is not set | ||
722 | # CONFIG_USB_MOUSE is not set | ||
723 | # CONFIG_USB_AIPTEK is not set | ||
724 | # CONFIG_USB_WACOM is not set | ||
725 | # CONFIG_USB_ACECAD is not set | ||
726 | # CONFIG_USB_KBTAB is not set | ||
727 | # CONFIG_USB_POWERMATE is not set | ||
728 | # CONFIG_USB_MTOUCH is not set | ||
729 | # CONFIG_USB_ITMTOUCH is not set | ||
730 | # CONFIG_USB_EGALAX is not set | ||
731 | # CONFIG_USB_XPAD is not set | ||
732 | # CONFIG_USB_ATI_REMOTE is not set | ||
733 | |||
734 | # | ||
735 | # USB Imaging devices | ||
736 | # | ||
737 | # CONFIG_USB_MDC800 is not set | ||
738 | # CONFIG_USB_MICROTEK is not set | ||
739 | |||
740 | # | ||
741 | # USB Multimedia devices | ||
742 | # | ||
743 | # CONFIG_USB_DABUSB is not set | ||
744 | |||
745 | # | ||
746 | # Video4Linux support is needed for USB Multimedia device support | ||
747 | # | ||
748 | |||
749 | # | ||
750 | # USB Network Adapters | ||
751 | # | ||
752 | # CONFIG_USB_CATC is not set | ||
753 | # CONFIG_USB_KAWETH is not set | ||
754 | CONFIG_USB_PEGASUS=y | ||
755 | # CONFIG_USB_RTL8150 is not set | ||
756 | # CONFIG_USB_USBNET is not set | ||
757 | CONFIG_USB_MON=y | ||
758 | |||
759 | # | ||
760 | # USB port drivers | ||
761 | # | ||
762 | |||
763 | # | ||
764 | # USB Serial Converter support | ||
765 | # | ||
766 | # CONFIG_USB_SERIAL is not set | ||
767 | |||
768 | # | ||
769 | # USB Miscellaneous drivers | ||
770 | # | ||
771 | # CONFIG_USB_EMI62 is not set | ||
772 | # CONFIG_USB_EMI26 is not set | ||
773 | # CONFIG_USB_AUERSWALD is not set | ||
774 | # CONFIG_USB_RIO500 is not set | ||
775 | # CONFIG_USB_LEGOTOWER is not set | ||
776 | # CONFIG_USB_LCD is not set | ||
777 | # CONFIG_USB_LED is not set | ||
778 | # CONFIG_USB_CYTHERM is not set | ||
779 | # CONFIG_USB_PHIDGETKIT is not set | ||
780 | # CONFIG_USB_PHIDGETSERVO is not set | ||
781 | # CONFIG_USB_IDMOUSE is not set | ||
782 | |||
783 | # | ||
784 | # USB DSL modem support | ||
785 | # | ||
786 | |||
787 | # | ||
788 | # USB Gadget Support | ||
789 | # | ||
790 | # CONFIG_USB_GADGET is not set | ||
791 | |||
792 | # | ||
793 | # MMC/SD Card support | ||
794 | # | ||
795 | # CONFIG_MMC is not set | ||
796 | |||
797 | # | ||
798 | # InfiniBand support | ||
799 | # | ||
800 | # CONFIG_INFINIBAND is not set | ||
801 | |||
802 | # | ||
803 | # SN Devices | ||
804 | # | ||
805 | |||
806 | # | ||
807 | # File systems | ||
808 | # | ||
809 | # CONFIG_EXT2_FS is not set | ||
810 | # CONFIG_EXT3_FS is not set | ||
811 | # CONFIG_JBD is not set | ||
812 | # CONFIG_REISERFS_FS is not set | ||
813 | # CONFIG_JFS_FS is not set | ||
814 | |||
815 | # | ||
816 | # XFS support | ||
817 | # | ||
818 | # CONFIG_XFS_FS is not set | ||
819 | # CONFIG_MINIX_FS is not set | ||
820 | # CONFIG_ROMFS_FS is not set | ||
821 | # CONFIG_QUOTA is not set | ||
822 | CONFIG_DNOTIFY=y | ||
823 | # CONFIG_AUTOFS_FS is not set | ||
824 | # CONFIG_AUTOFS4_FS is not set | ||
825 | |||
826 | # | ||
827 | # CD-ROM/DVD Filesystems | ||
828 | # | ||
829 | # CONFIG_ISO9660_FS is not set | ||
830 | # CONFIG_UDF_FS is not set | ||
831 | |||
832 | # | ||
833 | # DOS/FAT/NT Filesystems | ||
834 | # | ||
835 | # CONFIG_MSDOS_FS is not set | ||
836 | # CONFIG_VFAT_FS is not set | ||
837 | # CONFIG_NTFS_FS is not set | ||
838 | |||
839 | # | ||
840 | # Pseudo filesystems | ||
841 | # | ||
842 | CONFIG_PROC_FS=y | ||
843 | CONFIG_PROC_KCORE=y | ||
844 | CONFIG_SYSFS=y | ||
845 | # CONFIG_DEVPTS_FS_XATTR is not set | ||
846 | # CONFIG_TMPFS is not set | ||
847 | # CONFIG_HUGETLB_PAGE is not set | ||
848 | CONFIG_RAMFS=y | ||
849 | |||
850 | # | ||
851 | # Miscellaneous filesystems | ||
852 | # | ||
853 | # CONFIG_ADFS_FS is not set | ||
854 | # CONFIG_AFFS_FS is not set | ||
855 | # CONFIG_HFS_FS is not set | ||
856 | # CONFIG_HFSPLUS_FS is not set | ||
857 | # CONFIG_BEFS_FS is not set | ||
858 | # CONFIG_BFS_FS is not set | ||
859 | # CONFIG_EFS_FS is not set | ||
860 | # CONFIG_CRAMFS is not set | ||
861 | # CONFIG_VXFS_FS is not set | ||
862 | # CONFIG_HPFS_FS is not set | ||
863 | # CONFIG_QNX4FS_FS is not set | ||
864 | # CONFIG_SYSV_FS is not set | ||
865 | # CONFIG_UFS_FS is not set | ||
866 | |||
867 | # | ||
868 | # Network File Systems | ||
869 | # | ||
870 | CONFIG_NFS_FS=y | ||
871 | # CONFIG_NFS_V3 is not set | ||
872 | # CONFIG_NFS_V4 is not set | ||
873 | # CONFIG_NFS_DIRECTIO is not set | ||
874 | # CONFIG_NFSD is not set | ||
875 | CONFIG_ROOT_NFS=y | ||
876 | CONFIG_LOCKD=y | ||
877 | CONFIG_NFS_COMMON=y | ||
878 | CONFIG_SUNRPC=y | ||
879 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
880 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
881 | # CONFIG_SMB_FS is not set | ||
882 | # CONFIG_CIFS is not set | ||
883 | # CONFIG_NCP_FS is not set | ||
884 | # CONFIG_CODA_FS is not set | ||
885 | # CONFIG_AFS_FS is not set | ||
886 | |||
887 | # | ||
888 | # Partition Types | ||
889 | # | ||
890 | # CONFIG_PARTITION_ADVANCED is not set | ||
891 | CONFIG_MSDOS_PARTITION=y | ||
892 | |||
893 | # | ||
894 | # Native Language Support | ||
895 | # | ||
896 | # CONFIG_NLS is not set | ||
897 | |||
898 | # | ||
899 | # Library routines | ||
900 | # | ||
901 | # CONFIG_CRC_CCITT is not set | ||
902 | CONFIG_CRC32=y | ||
903 | # CONFIG_LIBCRC32C is not set | ||
904 | |||
905 | # | ||
906 | # Profiling support | ||
907 | # | ||
908 | # CONFIG_PROFILING is not set | ||
909 | |||
910 | # | ||
911 | # Kernel hacking | ||
912 | # | ||
913 | # CONFIG_PRINTK_TIME is not set | ||
914 | CONFIG_DEBUG_KERNEL=y | ||
915 | CONFIG_MAGIC_SYSRQ=y | ||
916 | CONFIG_LOG_BUF_SHIFT=14 | ||
917 | # CONFIG_SCHEDSTATS is not set | ||
918 | # CONFIG_DEBUG_SLAB is not set | ||
919 | # CONFIG_DEBUG_SPINLOCK is not set | ||
920 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
921 | # CONFIG_DEBUG_KOBJECT is not set | ||
922 | CONFIG_DEBUG_INFO=y | ||
923 | # CONFIG_DEBUG_FS is not set | ||
924 | # CONFIG_KGDB is not set | ||
925 | # CONFIG_XMON is not set | ||
926 | CONFIG_BDI_SWITCH=y | ||
927 | # CONFIG_SERIAL_TEXT_DEBUG is not set | ||
928 | CONFIG_PPC_OCP=y | ||
929 | |||
930 | # | ||
931 | # Security options | ||
932 | # | ||
933 | # CONFIG_KEYS is not set | ||
934 | # CONFIG_SECURITY is not set | ||
935 | |||
936 | # | ||
937 | # Cryptographic options | ||
938 | # | ||
939 | # CONFIG_CRYPTO is not set | ||
940 | |||
941 | # | ||
942 | # Hardware crypto devices | ||
943 | # | ||
diff --git a/arch/ppc/configs/common_defconfig b/arch/ppc/configs/common_defconfig index 95ead3f1b1cf..4d33bee23a89 100644 --- a/arch/ppc/configs/common_defconfig +++ b/arch/ppc/configs/common_defconfig | |||
@@ -1,15 +1,17 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.10-rc2 | 3 | # Linux kernel version: 2.6.13-rc3 |
4 | # Thu Nov 18 08:22:35 2004 | 4 | # Wed Jul 13 13:34:24 2005 |
5 | # | 5 | # |
6 | CONFIG_MMU=y | 6 | CONFIG_MMU=y |
7 | CONFIG_GENERIC_HARDIRQS=y | 7 | CONFIG_GENERIC_HARDIRQS=y |
8 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 8 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
9 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
9 | CONFIG_HAVE_DEC_LOCK=y | 10 | CONFIG_HAVE_DEC_LOCK=y |
10 | CONFIG_PPC=y | 11 | CONFIG_PPC=y |
11 | CONFIG_PPC32=y | 12 | CONFIG_PPC32=y |
12 | CONFIG_GENERIC_NVRAM=y | 13 | CONFIG_GENERIC_NVRAM=y |
14 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
13 | 15 | ||
14 | # | 16 | # |
15 | # Code maturity level options | 17 | # Code maturity level options |
@@ -17,6 +19,7 @@ CONFIG_GENERIC_NVRAM=y | |||
17 | CONFIG_EXPERIMENTAL=y | 19 | CONFIG_EXPERIMENTAL=y |
18 | CONFIG_CLEAN_COMPILE=y | 20 | CONFIG_CLEAN_COMPILE=y |
19 | CONFIG_BROKEN_ON_SMP=y | 21 | CONFIG_BROKEN_ON_SMP=y |
22 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
20 | 23 | ||
21 | # | 24 | # |
22 | # General setup | 25 | # General setup |
@@ -28,30 +31,33 @@ CONFIG_POSIX_MQUEUE=y | |||
28 | # CONFIG_BSD_PROCESS_ACCT is not set | 31 | # CONFIG_BSD_PROCESS_ACCT is not set |
29 | CONFIG_SYSCTL=y | 32 | CONFIG_SYSCTL=y |
30 | # CONFIG_AUDIT is not set | 33 | # CONFIG_AUDIT is not set |
31 | CONFIG_LOG_BUF_SHIFT=14 | ||
32 | CONFIG_HOTPLUG=y | 34 | CONFIG_HOTPLUG=y |
33 | CONFIG_KOBJECT_UEVENT=y | 35 | CONFIG_KOBJECT_UEVENT=y |
34 | CONFIG_IKCONFIG=y | 36 | CONFIG_IKCONFIG=y |
35 | CONFIG_IKCONFIG_PROC=y | 37 | CONFIG_IKCONFIG_PROC=y |
36 | # CONFIG_EMBEDDED is not set | 38 | # CONFIG_EMBEDDED is not set |
37 | CONFIG_KALLSYMS=y | 39 | CONFIG_KALLSYMS=y |
40 | # CONFIG_KALLSYMS_ALL is not set | ||
38 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 41 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
42 | CONFIG_PRINTK=y | ||
43 | CONFIG_BUG=y | ||
44 | CONFIG_BASE_FULL=y | ||
39 | CONFIG_FUTEX=y | 45 | CONFIG_FUTEX=y |
40 | CONFIG_EPOLL=y | 46 | CONFIG_EPOLL=y |
41 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
42 | CONFIG_SHMEM=y | 47 | CONFIG_SHMEM=y |
43 | CONFIG_CC_ALIGN_FUNCTIONS=0 | 48 | CONFIG_CC_ALIGN_FUNCTIONS=0 |
44 | CONFIG_CC_ALIGN_LABELS=0 | 49 | CONFIG_CC_ALIGN_LABELS=0 |
45 | CONFIG_CC_ALIGN_LOOPS=0 | 50 | CONFIG_CC_ALIGN_LOOPS=0 |
46 | CONFIG_CC_ALIGN_JUMPS=0 | 51 | CONFIG_CC_ALIGN_JUMPS=0 |
47 | # CONFIG_TINY_SHMEM is not set | 52 | # CONFIG_TINY_SHMEM is not set |
53 | CONFIG_BASE_SMALL=0 | ||
48 | 54 | ||
49 | # | 55 | # |
50 | # Loadable module support | 56 | # Loadable module support |
51 | # | 57 | # |
52 | CONFIG_MODULES=y | 58 | CONFIG_MODULES=y |
53 | CONFIG_MODULE_UNLOAD=y | 59 | CONFIG_MODULE_UNLOAD=y |
54 | CONFIG_MODULE_FORCE_UNLOAD=y | 60 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
55 | CONFIG_OBSOLETE_MODPARM=y | 61 | CONFIG_OBSOLETE_MODPARM=y |
56 | CONFIG_MODVERSIONS=y | 62 | CONFIG_MODVERSIONS=y |
57 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 63 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
@@ -66,22 +72,27 @@ CONFIG_6xx=y | |||
66 | # CONFIG_POWER3 is not set | 72 | # CONFIG_POWER3 is not set |
67 | # CONFIG_POWER4 is not set | 73 | # CONFIG_POWER4 is not set |
68 | # CONFIG_8xx is not set | 74 | # CONFIG_8xx is not set |
75 | # CONFIG_E200 is not set | ||
69 | # CONFIG_E500 is not set | 76 | # CONFIG_E500 is not set |
77 | CONFIG_PPC_FPU=y | ||
70 | CONFIG_ALTIVEC=y | 78 | CONFIG_ALTIVEC=y |
71 | CONFIG_TAU=y | 79 | CONFIG_TAU=y |
72 | # CONFIG_TAU_INT is not set | 80 | # CONFIG_TAU_INT is not set |
73 | # CONFIG_TAU_AVERAGE is not set | 81 | # CONFIG_TAU_AVERAGE is not set |
82 | # CONFIG_KEXEC is not set | ||
74 | CONFIG_CPU_FREQ=y | 83 | CONFIG_CPU_FREQ=y |
84 | CONFIG_CPU_FREQ_TABLE=y | ||
75 | # CONFIG_CPU_FREQ_DEBUG is not set | 85 | # CONFIG_CPU_FREQ_DEBUG is not set |
76 | CONFIG_CPU_FREQ_PROC_INTF=y | 86 | CONFIG_CPU_FREQ_STAT=m |
87 | CONFIG_CPU_FREQ_STAT_DETAILS=y | ||
77 | CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y | 88 | CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y |
78 | # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set | 89 | # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set |
79 | CONFIG_CPU_FREQ_GOV_PERFORMANCE=y | 90 | CONFIG_CPU_FREQ_GOV_PERFORMANCE=y |
80 | # CONFIG_CPU_FREQ_GOV_POWERSAVE is not set | 91 | CONFIG_CPU_FREQ_GOV_POWERSAVE=m |
81 | # CONFIG_CPU_FREQ_GOV_USERSPACE is not set | 92 | CONFIG_CPU_FREQ_GOV_USERSPACE=m |
82 | # CONFIG_CPU_FREQ_GOV_ONDEMAND is not set | 93 | CONFIG_CPU_FREQ_GOV_ONDEMAND=m |
94 | CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m | ||
83 | CONFIG_CPU_FREQ_PMAC=y | 95 | CONFIG_CPU_FREQ_PMAC=y |
84 | CONFIG_CPU_FREQ_TABLE=y | ||
85 | CONFIG_PPC601_SYNC_FIX=y | 96 | CONFIG_PPC601_SYNC_FIX=y |
86 | CONFIG_PM=y | 97 | CONFIG_PM=y |
87 | CONFIG_PPC_STD_MMU=y | 98 | CONFIG_PPC_STD_MMU=y |
@@ -91,11 +102,15 @@ CONFIG_PPC_STD_MMU=y | |||
91 | # | 102 | # |
92 | CONFIG_PPC_MULTIPLATFORM=y | 103 | CONFIG_PPC_MULTIPLATFORM=y |
93 | # CONFIG_APUS is not set | 104 | # CONFIG_APUS is not set |
105 | # CONFIG_KATANA is not set | ||
94 | # CONFIG_WILLOW is not set | 106 | # CONFIG_WILLOW is not set |
107 | # CONFIG_CPCI690 is not set | ||
95 | # CONFIG_PCORE is not set | 108 | # CONFIG_PCORE is not set |
96 | # CONFIG_POWERPMC250 is not set | 109 | # CONFIG_POWERPMC250 is not set |
97 | # CONFIG_EV64260 is not set | 110 | # CONFIG_CHESTNUT is not set |
98 | # CONFIG_SPRUCE is not set | 111 | # CONFIG_SPRUCE is not set |
112 | # CONFIG_HDPU is not set | ||
113 | # CONFIG_EV64260 is not set | ||
99 | # CONFIG_LOPEC is not set | 114 | # CONFIG_LOPEC is not set |
100 | # CONFIG_MCPN765 is not set | 115 | # CONFIG_MCPN765 is not set |
101 | # CONFIG_MVME5100 is not set | 116 | # CONFIG_MVME5100 is not set |
@@ -103,6 +118,7 @@ CONFIG_PPC_MULTIPLATFORM=y | |||
103 | # CONFIG_PRPMC750 is not set | 118 | # CONFIG_PRPMC750 is not set |
104 | # CONFIG_PRPMC800 is not set | 119 | # CONFIG_PRPMC800 is not set |
105 | # CONFIG_SANDPOINT is not set | 120 | # CONFIG_SANDPOINT is not set |
121 | # CONFIG_RADSTONE_PPC7D is not set | ||
106 | # CONFIG_ADIR is not set | 122 | # CONFIG_ADIR is not set |
107 | # CONFIG_K2 is not set | 123 | # CONFIG_K2 is not set |
108 | # CONFIG_PAL4 is not set | 124 | # CONFIG_PAL4 is not set |
@@ -113,22 +129,40 @@ CONFIG_PPC_MULTIPLATFORM=y | |||
113 | # CONFIG_RPX8260 is not set | 129 | # CONFIG_RPX8260 is not set |
114 | # CONFIG_TQM8260 is not set | 130 | # CONFIG_TQM8260 is not set |
115 | # CONFIG_ADS8272 is not set | 131 | # CONFIG_ADS8272 is not set |
132 | # CONFIG_PQ2FADS is not set | ||
116 | # CONFIG_LITE5200 is not set | 133 | # CONFIG_LITE5200 is not set |
134 | # CONFIG_MPC834x_SYS is not set | ||
117 | CONFIG_PPC_CHRP=y | 135 | CONFIG_PPC_CHRP=y |
118 | CONFIG_PPC_PMAC=y | 136 | CONFIG_PPC_PMAC=y |
119 | CONFIG_PPC_PREP=y | 137 | CONFIG_PPC_PREP=y |
120 | CONFIG_PPC_OF=y | 138 | CONFIG_PPC_OF=y |
121 | CONFIG_PPCBUG_NVRAM=y | 139 | CONFIG_PPCBUG_NVRAM=y |
122 | # CONFIG_SMP is not set | 140 | # CONFIG_SMP is not set |
123 | # CONFIG_PREEMPT is not set | ||
124 | # CONFIG_HIGHMEM is not set | 141 | # CONFIG_HIGHMEM is not set |
142 | # CONFIG_HZ_100 is not set | ||
143 | CONFIG_HZ_250=y | ||
144 | # CONFIG_HZ_1000 is not set | ||
145 | CONFIG_HZ=250 | ||
146 | CONFIG_PREEMPT_NONE=y | ||
147 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
148 | # CONFIG_PREEMPT is not set | ||
149 | CONFIG_SELECT_MEMORY_MODEL=y | ||
150 | CONFIG_FLATMEM_MANUAL=y | ||
151 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
152 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
153 | CONFIG_FLATMEM=y | ||
154 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
125 | CONFIG_BINFMT_ELF=y | 155 | CONFIG_BINFMT_ELF=y |
126 | CONFIG_BINFMT_MISC=m | 156 | CONFIG_BINFMT_MISC=m |
127 | CONFIG_PROC_DEVICETREE=y | 157 | CONFIG_PROC_DEVICETREE=y |
128 | CONFIG_PREP_RESIDUAL=y | 158 | CONFIG_PREP_RESIDUAL=y |
129 | CONFIG_PROC_PREPRESIDUAL=y | 159 | CONFIG_PROC_PREPRESIDUAL=y |
130 | CONFIG_CMDLINE_BOOL=y | 160 | # CONFIG_CMDLINE_BOOL is not set |
131 | CONFIG_CMDLINE="console=ttyS0,9600 console=tty0 root=/dev/sda2" | 161 | # CONFIG_PM_DEBUG is not set |
162 | CONFIG_SOFTWARE_SUSPEND=y | ||
163 | CONFIG_PM_STD_PARTITION="" | ||
164 | # CONFIG_SECCOMP is not set | ||
165 | CONFIG_ISA_DMA_API=y | ||
132 | 166 | ||
133 | # | 167 | # |
134 | # Bus options | 168 | # Bus options |
@@ -137,18 +171,24 @@ CONFIG_ISA=y | |||
137 | CONFIG_GENERIC_ISA_DMA=y | 171 | CONFIG_GENERIC_ISA_DMA=y |
138 | CONFIG_PCI=y | 172 | CONFIG_PCI=y |
139 | CONFIG_PCI_DOMAINS=y | 173 | CONFIG_PCI_DOMAINS=y |
140 | CONFIG_PCI_LEGACY_PROC=y | 174 | # CONFIG_PCI_LEGACY_PROC is not set |
141 | CONFIG_PCI_NAMES=y | 175 | # CONFIG_PCI_NAMES is not set |
176 | # CONFIG_PCI_DEBUG is not set | ||
142 | 177 | ||
143 | # | 178 | # |
144 | # PCCARD (PCMCIA/CardBus) support | 179 | # PCCARD (PCMCIA/CardBus) support |
145 | # | 180 | # |
146 | # CONFIG_PCCARD is not set | 181 | CONFIG_PCCARD=m |
182 | # CONFIG_PCMCIA_DEBUG is not set | ||
183 | # CONFIG_PCMCIA is not set | ||
184 | CONFIG_CARDBUS=y | ||
147 | 185 | ||
148 | # | 186 | # |
149 | # PC-card bridges | 187 | # PC-card bridges |
150 | # | 188 | # |
189 | CONFIG_YENTA=m | ||
151 | CONFIG_PCMCIA_PROBE=y | 190 | CONFIG_PCMCIA_PROBE=y |
191 | CONFIG_PCCARD_NONSTATIC=m | ||
152 | 192 | ||
153 | # | 193 | # |
154 | # Advanced setup | 194 | # Advanced setup |
@@ -165,6 +205,143 @@ CONFIG_TASK_SIZE=0x80000000 | |||
165 | CONFIG_BOOT_LOAD=0x00800000 | 205 | CONFIG_BOOT_LOAD=0x00800000 |
166 | 206 | ||
167 | # | 207 | # |
208 | # Networking | ||
209 | # | ||
210 | CONFIG_NET=y | ||
211 | |||
212 | # | ||
213 | # Networking options | ||
214 | # | ||
215 | CONFIG_PACKET=y | ||
216 | # CONFIG_PACKET_MMAP is not set | ||
217 | CONFIG_UNIX=y | ||
218 | # CONFIG_NET_KEY is not set | ||
219 | CONFIG_INET=y | ||
220 | CONFIG_IP_MULTICAST=y | ||
221 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
222 | CONFIG_IP_FIB_HASH=y | ||
223 | # CONFIG_IP_PNP is not set | ||
224 | # CONFIG_NET_IPIP is not set | ||
225 | # CONFIG_NET_IPGRE is not set | ||
226 | # CONFIG_IP_MROUTE is not set | ||
227 | # CONFIG_ARPD is not set | ||
228 | CONFIG_SYN_COOKIES=y | ||
229 | # CONFIG_INET_AH is not set | ||
230 | # CONFIG_INET_ESP is not set | ||
231 | # CONFIG_INET_IPCOMP is not set | ||
232 | # CONFIG_INET_TUNNEL is not set | ||
233 | CONFIG_IP_TCPDIAG=y | ||
234 | # CONFIG_IP_TCPDIAG_IPV6 is not set | ||
235 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
236 | CONFIG_TCP_CONG_BIC=y | ||
237 | |||
238 | # | ||
239 | # IP: Virtual Server Configuration | ||
240 | # | ||
241 | # CONFIG_IP_VS is not set | ||
242 | # CONFIG_IPV6 is not set | ||
243 | CONFIG_NETFILTER=y | ||
244 | # CONFIG_NETFILTER_DEBUG is not set | ||
245 | |||
246 | # | ||
247 | # IP: Netfilter Configuration | ||
248 | # | ||
249 | CONFIG_IP_NF_CONNTRACK=m | ||
250 | # CONFIG_IP_NF_CT_ACCT is not set | ||
251 | CONFIG_IP_NF_CONNTRACK_MARK=y | ||
252 | # CONFIG_IP_NF_CT_PROTO_SCTP is not set | ||
253 | CONFIG_IP_NF_FTP=m | ||
254 | CONFIG_IP_NF_IRC=m | ||
255 | CONFIG_IP_NF_TFTP=m | ||
256 | CONFIG_IP_NF_AMANDA=m | ||
257 | CONFIG_IP_NF_QUEUE=m | ||
258 | CONFIG_IP_NF_IPTABLES=m | ||
259 | CONFIG_IP_NF_MATCH_LIMIT=m | ||
260 | CONFIG_IP_NF_MATCH_IPRANGE=m | ||
261 | CONFIG_IP_NF_MATCH_MAC=m | ||
262 | CONFIG_IP_NF_MATCH_PKTTYPE=m | ||
263 | CONFIG_IP_NF_MATCH_MARK=m | ||
264 | CONFIG_IP_NF_MATCH_MULTIPORT=m | ||
265 | CONFIG_IP_NF_MATCH_TOS=m | ||
266 | CONFIG_IP_NF_MATCH_RECENT=m | ||
267 | CONFIG_IP_NF_MATCH_ECN=m | ||
268 | CONFIG_IP_NF_MATCH_DSCP=m | ||
269 | CONFIG_IP_NF_MATCH_AH_ESP=m | ||
270 | CONFIG_IP_NF_MATCH_LENGTH=m | ||
271 | CONFIG_IP_NF_MATCH_TTL=m | ||
272 | CONFIG_IP_NF_MATCH_TCPMSS=m | ||
273 | CONFIG_IP_NF_MATCH_HELPER=m | ||
274 | CONFIG_IP_NF_MATCH_STATE=m | ||
275 | CONFIG_IP_NF_MATCH_CONNTRACK=m | ||
276 | CONFIG_IP_NF_MATCH_OWNER=m | ||
277 | CONFIG_IP_NF_MATCH_ADDRTYPE=m | ||
278 | CONFIG_IP_NF_MATCH_REALM=m | ||
279 | CONFIG_IP_NF_MATCH_SCTP=m | ||
280 | CONFIG_IP_NF_MATCH_COMMENT=m | ||
281 | CONFIG_IP_NF_MATCH_CONNMARK=m | ||
282 | CONFIG_IP_NF_MATCH_HASHLIMIT=m | ||
283 | CONFIG_IP_NF_FILTER=m | ||
284 | CONFIG_IP_NF_TARGET_REJECT=m | ||
285 | CONFIG_IP_NF_TARGET_LOG=m | ||
286 | CONFIG_IP_NF_TARGET_ULOG=m | ||
287 | CONFIG_IP_NF_TARGET_TCPMSS=m | ||
288 | CONFIG_IP_NF_NAT=m | ||
289 | CONFIG_IP_NF_NAT_NEEDED=y | ||
290 | CONFIG_IP_NF_TARGET_MASQUERADE=m | ||
291 | CONFIG_IP_NF_TARGET_REDIRECT=m | ||
292 | CONFIG_IP_NF_TARGET_NETMAP=m | ||
293 | CONFIG_IP_NF_TARGET_SAME=m | ||
294 | CONFIG_IP_NF_NAT_SNMP_BASIC=m | ||
295 | CONFIG_IP_NF_NAT_IRC=m | ||
296 | CONFIG_IP_NF_NAT_FTP=m | ||
297 | CONFIG_IP_NF_NAT_TFTP=m | ||
298 | CONFIG_IP_NF_NAT_AMANDA=m | ||
299 | CONFIG_IP_NF_MANGLE=m | ||
300 | CONFIG_IP_NF_TARGET_TOS=m | ||
301 | CONFIG_IP_NF_TARGET_ECN=m | ||
302 | CONFIG_IP_NF_TARGET_DSCP=m | ||
303 | CONFIG_IP_NF_TARGET_MARK=m | ||
304 | CONFIG_IP_NF_TARGET_CLASSIFY=m | ||
305 | CONFIG_IP_NF_TARGET_CONNMARK=m | ||
306 | CONFIG_IP_NF_TARGET_CLUSTERIP=m | ||
307 | CONFIG_IP_NF_RAW=m | ||
308 | CONFIG_IP_NF_TARGET_NOTRACK=m | ||
309 | CONFIG_IP_NF_ARPTABLES=m | ||
310 | # CONFIG_IP_NF_ARPFILTER is not set | ||
311 | # CONFIG_IP_NF_ARP_MANGLE is not set | ||
312 | |||
313 | # | ||
314 | # SCTP Configuration (EXPERIMENTAL) | ||
315 | # | ||
316 | # CONFIG_IP_SCTP is not set | ||
317 | # CONFIG_ATM is not set | ||
318 | # CONFIG_BRIDGE is not set | ||
319 | # CONFIG_VLAN_8021Q is not set | ||
320 | # CONFIG_DECNET is not set | ||
321 | # CONFIG_LLC2 is not set | ||
322 | # CONFIG_IPX is not set | ||
323 | # CONFIG_ATALK is not set | ||
324 | # CONFIG_X25 is not set | ||
325 | # CONFIG_LAPB is not set | ||
326 | # CONFIG_NET_DIVERT is not set | ||
327 | # CONFIG_ECONET is not set | ||
328 | # CONFIG_WAN_ROUTER is not set | ||
329 | # CONFIG_NET_SCHED is not set | ||
330 | CONFIG_NET_CLS_ROUTE=y | ||
331 | |||
332 | # | ||
333 | # Network testing | ||
334 | # | ||
335 | # CONFIG_NET_PKTGEN is not set | ||
336 | CONFIG_NETPOLL=y | ||
337 | # CONFIG_NETPOLL_RX is not set | ||
338 | # CONFIG_NETPOLL_TRAP is not set | ||
339 | CONFIG_NET_POLL_CONTROLLER=y | ||
340 | # CONFIG_HAMRADIO is not set | ||
341 | # CONFIG_IRDA is not set | ||
342 | # CONFIG_BT is not set | ||
343 | |||
344 | # | ||
168 | # Device Drivers | 345 | # Device Drivers |
169 | # | 346 | # |
170 | 347 | ||
@@ -173,7 +350,8 @@ CONFIG_BOOT_LOAD=0x00800000 | |||
173 | # | 350 | # |
174 | # CONFIG_STANDALONE is not set | 351 | # CONFIG_STANDALONE is not set |
175 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 352 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
176 | # CONFIG_FW_LOADER is not set | 353 | CONFIG_FW_LOADER=m |
354 | # CONFIG_DEBUG_DRIVER is not set | ||
177 | 355 | ||
178 | # | 356 | # |
179 | # Memory Technology Devices (MTD) | 357 | # Memory Technology Devices (MTD) |
@@ -183,7 +361,13 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
183 | # | 361 | # |
184 | # Parallel port support | 362 | # Parallel port support |
185 | # | 363 | # |
186 | # CONFIG_PARPORT is not set | 364 | CONFIG_PARPORT=m |
365 | CONFIG_PARPORT_PC=m | ||
366 | CONFIG_PARPORT_SERIAL=m | ||
367 | CONFIG_PARPORT_PC_FIFO=y | ||
368 | CONFIG_PARPORT_PC_SUPERIO=y | ||
369 | # CONFIG_PARPORT_GSC is not set | ||
370 | CONFIG_PARPORT_1284=y | ||
187 | 371 | ||
188 | # | 372 | # |
189 | # Plug and Play support | 373 | # Plug and Play support |
@@ -194,18 +378,21 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
194 | # Block devices | 378 | # Block devices |
195 | # | 379 | # |
196 | CONFIG_BLK_DEV_FD=m | 380 | CONFIG_BLK_DEV_FD=m |
197 | # CONFIG_MAC_FLOPPY is not set | 381 | CONFIG_MAC_FLOPPY=m |
198 | # CONFIG_BLK_DEV_XD is not set | 382 | # CONFIG_BLK_DEV_XD is not set |
383 | # CONFIG_PARIDE is not set | ||
199 | # CONFIG_BLK_CPQ_DA is not set | 384 | # CONFIG_BLK_CPQ_DA is not set |
200 | # CONFIG_BLK_CPQ_CISS_DA is not set | 385 | # CONFIG_BLK_CPQ_CISS_DA is not set |
201 | # CONFIG_BLK_DEV_DAC960 is not set | 386 | # CONFIG_BLK_DEV_DAC960 is not set |
202 | # CONFIG_BLK_DEV_UMEM is not set | 387 | # CONFIG_BLK_DEV_UMEM is not set |
388 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
203 | CONFIG_BLK_DEV_LOOP=y | 389 | CONFIG_BLK_DEV_LOOP=y |
204 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 390 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
205 | # CONFIG_BLK_DEV_NBD is not set | 391 | # CONFIG_BLK_DEV_NBD is not set |
206 | # CONFIG_BLK_DEV_SX8 is not set | 392 | # CONFIG_BLK_DEV_SX8 is not set |
207 | # CONFIG_BLK_DEV_UB is not set | 393 | # CONFIG_BLK_DEV_UB is not set |
208 | CONFIG_BLK_DEV_RAM=y | 394 | CONFIG_BLK_DEV_RAM=y |
395 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
209 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 396 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
210 | CONFIG_BLK_DEV_INITRD=y | 397 | CONFIG_BLK_DEV_INITRD=y |
211 | CONFIG_INITRAMFS_SOURCE="" | 398 | CONFIG_INITRAMFS_SOURCE="" |
@@ -219,6 +406,7 @@ CONFIG_IOSCHED_NOOP=y | |||
219 | CONFIG_IOSCHED_AS=y | 406 | CONFIG_IOSCHED_AS=y |
220 | CONFIG_IOSCHED_DEADLINE=y | 407 | CONFIG_IOSCHED_DEADLINE=y |
221 | CONFIG_IOSCHED_CFQ=y | 408 | CONFIG_IOSCHED_CFQ=y |
409 | # CONFIG_ATA_OVER_ETH is not set | ||
222 | 410 | ||
223 | # | 411 | # |
224 | # ATA/ATAPI/MFM/RLL support | 412 | # ATA/ATAPI/MFM/RLL support |
@@ -247,7 +435,7 @@ CONFIG_IDEPCI_SHARE_IRQ=y | |||
247 | # CONFIG_BLK_DEV_OFFBOARD is not set | 435 | # CONFIG_BLK_DEV_OFFBOARD is not set |
248 | CONFIG_BLK_DEV_GENERIC=y | 436 | CONFIG_BLK_DEV_GENERIC=y |
249 | # CONFIG_BLK_DEV_OPTI621 is not set | 437 | # CONFIG_BLK_DEV_OPTI621 is not set |
250 | CONFIG_BLK_DEV_SL82C105=y | 438 | # CONFIG_BLK_DEV_SL82C105 is not set |
251 | CONFIG_BLK_DEV_IDEDMA_PCI=y | 439 | CONFIG_BLK_DEV_IDEDMA_PCI=y |
252 | # CONFIG_BLK_DEV_IDEDMA_FORCED is not set | 440 | # CONFIG_BLK_DEV_IDEDMA_FORCED is not set |
253 | CONFIG_IDEDMA_PCI_AUTO=y | 441 | CONFIG_IDEDMA_PCI_AUTO=y |
@@ -264,6 +452,7 @@ CONFIG_BLK_DEV_CMD64X=y | |||
264 | # CONFIG_BLK_DEV_HPT366 is not set | 452 | # CONFIG_BLK_DEV_HPT366 is not set |
265 | # CONFIG_BLK_DEV_SC1200 is not set | 453 | # CONFIG_BLK_DEV_SC1200 is not set |
266 | # CONFIG_BLK_DEV_PIIX is not set | 454 | # CONFIG_BLK_DEV_PIIX is not set |
455 | # CONFIG_BLK_DEV_IT821X is not set | ||
267 | # CONFIG_BLK_DEV_NS87415 is not set | 456 | # CONFIG_BLK_DEV_NS87415 is not set |
268 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set | 457 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set |
269 | CONFIG_BLK_DEV_PDC202XX_NEW=y | 458 | CONFIG_BLK_DEV_PDC202XX_NEW=y |
@@ -299,19 +488,21 @@ CONFIG_CHR_DEV_ST=y | |||
299 | CONFIG_BLK_DEV_SR=y | 488 | CONFIG_BLK_DEV_SR=y |
300 | CONFIG_BLK_DEV_SR_VENDOR=y | 489 | CONFIG_BLK_DEV_SR_VENDOR=y |
301 | CONFIG_CHR_DEV_SG=y | 490 | CONFIG_CHR_DEV_SG=y |
491 | # CONFIG_CHR_DEV_SCH is not set | ||
302 | 492 | ||
303 | # | 493 | # |
304 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | 494 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs |
305 | # | 495 | # |
306 | # CONFIG_SCSI_MULTI_LUN is not set | 496 | # CONFIG_SCSI_MULTI_LUN is not set |
307 | CONFIG_SCSI_CONSTANTS=y | 497 | CONFIG_SCSI_CONSTANTS=y |
308 | # CONFIG_SCSI_LOGGING is not set | 498 | CONFIG_SCSI_LOGGING=y |
309 | 499 | ||
310 | # | 500 | # |
311 | # SCSI Transport Attributes | 501 | # SCSI Transport Attributes |
312 | # | 502 | # |
313 | CONFIG_SCSI_SPI_ATTRS=y | 503 | CONFIG_SCSI_SPI_ATTRS=y |
314 | # CONFIG_SCSI_FC_ATTRS is not set | 504 | # CONFIG_SCSI_FC_ATTRS is not set |
505 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
315 | 506 | ||
316 | # | 507 | # |
317 | # SCSI low-level drivers | 508 | # SCSI low-level drivers |
@@ -340,7 +531,6 @@ CONFIG_SCSI_AIC7XXX_OLD=m | |||
340 | # CONFIG_SCSI_DMX3191D is not set | 531 | # CONFIG_SCSI_DMX3191D is not set |
341 | # CONFIG_SCSI_DTC3280 is not set | 532 | # CONFIG_SCSI_DTC3280 is not set |
342 | # CONFIG_SCSI_EATA is not set | 533 | # CONFIG_SCSI_EATA is not set |
343 | # CONFIG_SCSI_EATA_PIO is not set | ||
344 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 534 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
345 | # CONFIG_SCSI_GDTH is not set | 535 | # CONFIG_SCSI_GDTH is not set |
346 | # CONFIG_SCSI_GENERIC_NCR5380 is not set | 536 | # CONFIG_SCSI_GENERIC_NCR5380 is not set |
@@ -348,6 +538,8 @@ CONFIG_SCSI_AIC7XXX_OLD=m | |||
348 | # CONFIG_SCSI_IPS is not set | 538 | # CONFIG_SCSI_IPS is not set |
349 | # CONFIG_SCSI_INITIO is not set | 539 | # CONFIG_SCSI_INITIO is not set |
350 | # CONFIG_SCSI_INIA100 is not set | 540 | # CONFIG_SCSI_INIA100 is not set |
541 | # CONFIG_SCSI_PPA is not set | ||
542 | # CONFIG_SCSI_IMM is not set | ||
351 | # CONFIG_SCSI_NCR53C406A is not set | 543 | # CONFIG_SCSI_NCR53C406A is not set |
352 | CONFIG_SCSI_SYM53C8XX_2=y | 544 | CONFIG_SCSI_SYM53C8XX_2=y |
353 | CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=0 | 545 | CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=0 |
@@ -358,17 +550,15 @@ CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 | |||
358 | # CONFIG_SCSI_PAS16 is not set | 550 | # CONFIG_SCSI_PAS16 is not set |
359 | # CONFIG_SCSI_PSI240I is not set | 551 | # CONFIG_SCSI_PSI240I is not set |
360 | # CONFIG_SCSI_QLOGIC_FAS is not set | 552 | # CONFIG_SCSI_QLOGIC_FAS is not set |
361 | # CONFIG_SCSI_QLOGIC_ISP is not set | ||
362 | # CONFIG_SCSI_QLOGIC_FC is not set | 553 | # CONFIG_SCSI_QLOGIC_FC is not set |
363 | # CONFIG_SCSI_QLOGIC_1280 is not set | 554 | # CONFIG_SCSI_QLOGIC_1280 is not set |
364 | # CONFIG_SCSI_QLOGIC_1280_1040 is not set | ||
365 | CONFIG_SCSI_QLA2XXX=y | 555 | CONFIG_SCSI_QLA2XXX=y |
366 | # CONFIG_SCSI_QLA21XX is not set | 556 | # CONFIG_SCSI_QLA21XX is not set |
367 | # CONFIG_SCSI_QLA22XX is not set | 557 | # CONFIG_SCSI_QLA22XX is not set |
368 | # CONFIG_SCSI_QLA2300 is not set | 558 | # CONFIG_SCSI_QLA2300 is not set |
369 | # CONFIG_SCSI_QLA2322 is not set | 559 | # CONFIG_SCSI_QLA2322 is not set |
370 | # CONFIG_SCSI_QLA6312 is not set | 560 | # CONFIG_SCSI_QLA6312 is not set |
371 | # CONFIG_SCSI_QLA6322 is not set | 561 | # CONFIG_SCSI_LPFC is not set |
372 | # CONFIG_SCSI_SYM53C416 is not set | 562 | # CONFIG_SCSI_SYM53C416 is not set |
373 | # CONFIG_SCSI_DC395x is not set | 563 | # CONFIG_SCSI_DC395x is not set |
374 | # CONFIG_SCSI_DC390T is not set | 564 | # CONFIG_SCSI_DC390T is not set |
@@ -395,11 +585,40 @@ CONFIG_SCSI_MAC53C94=y | |||
395 | # Fusion MPT device support | 585 | # Fusion MPT device support |
396 | # | 586 | # |
397 | # CONFIG_FUSION is not set | 587 | # CONFIG_FUSION is not set |
588 | # CONFIG_FUSION_SPI is not set | ||
589 | # CONFIG_FUSION_FC is not set | ||
398 | 590 | ||
399 | # | 591 | # |
400 | # IEEE 1394 (FireWire) support | 592 | # IEEE 1394 (FireWire) support |
401 | # | 593 | # |
402 | # CONFIG_IEEE1394 is not set | 594 | CONFIG_IEEE1394=m |
595 | |||
596 | # | ||
597 | # Subsystem Options | ||
598 | # | ||
599 | # CONFIG_IEEE1394_VERBOSEDEBUG is not set | ||
600 | CONFIG_IEEE1394_OUI_DB=y | ||
601 | CONFIG_IEEE1394_EXTRA_CONFIG_ROMS=y | ||
602 | CONFIG_IEEE1394_CONFIG_ROM_IP1394=y | ||
603 | # CONFIG_IEEE1394_EXPORT_FULL_API is not set | ||
604 | |||
605 | # | ||
606 | # Device Drivers | ||
607 | # | ||
608 | # CONFIG_IEEE1394_PCILYNX is not set | ||
609 | CONFIG_IEEE1394_OHCI1394=m | ||
610 | |||
611 | # | ||
612 | # Protocol Drivers | ||
613 | # | ||
614 | CONFIG_IEEE1394_VIDEO1394=m | ||
615 | CONFIG_IEEE1394_SBP2=m | ||
616 | # CONFIG_IEEE1394_SBP2_PHYS_DMA is not set | ||
617 | CONFIG_IEEE1394_ETH1394=m | ||
618 | CONFIG_IEEE1394_DV1394=m | ||
619 | CONFIG_IEEE1394_RAWIO=m | ||
620 | CONFIG_IEEE1394_CMP=m | ||
621 | CONFIG_IEEE1394_AMDTP=m | ||
403 | 622 | ||
404 | # | 623 | # |
405 | # I2O device support | 624 | # I2O device support |
@@ -412,8 +631,8 @@ CONFIG_SCSI_MAC53C94=y | |||
412 | CONFIG_ADB=y | 631 | CONFIG_ADB=y |
413 | CONFIG_ADB_CUDA=y | 632 | CONFIG_ADB_CUDA=y |
414 | CONFIG_ADB_PMU=y | 633 | CONFIG_ADB_PMU=y |
415 | CONFIG_PMAC_PBOOK=y | ||
416 | CONFIG_PMAC_APM_EMU=y | 634 | CONFIG_PMAC_APM_EMU=y |
635 | CONFIG_PMAC_MEDIABAY=y | ||
417 | CONFIG_PMAC_BACKLIGHT=y | 636 | CONFIG_PMAC_BACKLIGHT=y |
418 | CONFIG_ADB_MACIO=y | 637 | CONFIG_ADB_MACIO=y |
419 | CONFIG_INPUT_ADBHID=y | 638 | CONFIG_INPUT_ADBHID=y |
@@ -423,138 +642,13 @@ CONFIG_THERM_ADT746X=m | |||
423 | # CONFIG_ANSLCD is not set | 642 | # CONFIG_ANSLCD is not set |
424 | 643 | ||
425 | # | 644 | # |
426 | # Networking support | 645 | # Network device support |
427 | # | ||
428 | CONFIG_NET=y | ||
429 | |||
430 | # | ||
431 | # Networking options | ||
432 | # | ||
433 | CONFIG_PACKET=y | ||
434 | # CONFIG_PACKET_MMAP is not set | ||
435 | # CONFIG_NETLINK_DEV is not set | ||
436 | CONFIG_UNIX=y | ||
437 | # CONFIG_NET_KEY is not set | ||
438 | CONFIG_INET=y | ||
439 | CONFIG_IP_MULTICAST=y | ||
440 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
441 | # CONFIG_IP_PNP is not set | ||
442 | # CONFIG_NET_IPIP is not set | ||
443 | # CONFIG_NET_IPGRE is not set | ||
444 | # CONFIG_IP_MROUTE is not set | ||
445 | # CONFIG_ARPD is not set | ||
446 | CONFIG_SYN_COOKIES=y | ||
447 | # CONFIG_INET_AH is not set | ||
448 | # CONFIG_INET_ESP is not set | ||
449 | # CONFIG_INET_IPCOMP is not set | ||
450 | # CONFIG_INET_TUNNEL is not set | ||
451 | CONFIG_IP_TCPDIAG=y | ||
452 | # CONFIG_IP_TCPDIAG_IPV6 is not set | ||
453 | |||
454 | # | ||
455 | # IP: Virtual Server Configuration | ||
456 | # | ||
457 | # CONFIG_IP_VS is not set | ||
458 | # CONFIG_IPV6 is not set | ||
459 | CONFIG_NETFILTER=y | ||
460 | # CONFIG_NETFILTER_DEBUG is not set | ||
461 | |||
462 | # | ||
463 | # IP: Netfilter Configuration | ||
464 | # | 646 | # |
465 | CONFIG_IP_NF_CONNTRACK=m | ||
466 | # CONFIG_IP_NF_CT_ACCT is not set | ||
467 | # CONFIG_IP_NF_CONNTRACK_MARK is not set | ||
468 | # CONFIG_IP_NF_CT_PROTO_SCTP is not set | ||
469 | CONFIG_IP_NF_FTP=m | ||
470 | CONFIG_IP_NF_IRC=m | ||
471 | CONFIG_IP_NF_TFTP=m | ||
472 | CONFIG_IP_NF_AMANDA=m | ||
473 | # CONFIG_IP_NF_QUEUE is not set | ||
474 | CONFIG_IP_NF_IPTABLES=m | ||
475 | CONFIG_IP_NF_MATCH_LIMIT=m | ||
476 | CONFIG_IP_NF_MATCH_IPRANGE=m | ||
477 | CONFIG_IP_NF_MATCH_MAC=m | ||
478 | CONFIG_IP_NF_MATCH_PKTTYPE=m | ||
479 | CONFIG_IP_NF_MATCH_MARK=m | ||
480 | CONFIG_IP_NF_MATCH_MULTIPORT=m | ||
481 | CONFIG_IP_NF_MATCH_TOS=m | ||
482 | CONFIG_IP_NF_MATCH_RECENT=m | ||
483 | CONFIG_IP_NF_MATCH_ECN=m | ||
484 | CONFIG_IP_NF_MATCH_DSCP=m | ||
485 | CONFIG_IP_NF_MATCH_AH_ESP=m | ||
486 | CONFIG_IP_NF_MATCH_LENGTH=m | ||
487 | CONFIG_IP_NF_MATCH_TTL=m | ||
488 | CONFIG_IP_NF_MATCH_TCPMSS=m | ||
489 | CONFIG_IP_NF_MATCH_HELPER=m | ||
490 | CONFIG_IP_NF_MATCH_STATE=m | ||
491 | CONFIG_IP_NF_MATCH_CONNTRACK=m | ||
492 | CONFIG_IP_NF_MATCH_OWNER=m | ||
493 | # CONFIG_IP_NF_MATCH_ADDRTYPE is not set | ||
494 | # CONFIG_IP_NF_MATCH_REALM is not set | ||
495 | # CONFIG_IP_NF_MATCH_SCTP is not set | ||
496 | # CONFIG_IP_NF_MATCH_COMMENT is not set | ||
497 | # CONFIG_IP_NF_MATCH_HASHLIMIT is not set | ||
498 | CONFIG_IP_NF_FILTER=m | ||
499 | CONFIG_IP_NF_TARGET_REJECT=m | ||
500 | # CONFIG_IP_NF_TARGET_LOG is not set | ||
501 | CONFIG_IP_NF_TARGET_ULOG=m | ||
502 | CONFIG_IP_NF_TARGET_TCPMSS=m | ||
503 | CONFIG_IP_NF_NAT=m | ||
504 | CONFIG_IP_NF_NAT_NEEDED=y | ||
505 | CONFIG_IP_NF_TARGET_MASQUERADE=m | ||
506 | CONFIG_IP_NF_TARGET_REDIRECT=m | ||
507 | CONFIG_IP_NF_TARGET_NETMAP=m | ||
508 | CONFIG_IP_NF_TARGET_SAME=m | ||
509 | CONFIG_IP_NF_NAT_SNMP_BASIC=m | ||
510 | CONFIG_IP_NF_NAT_IRC=m | ||
511 | CONFIG_IP_NF_NAT_FTP=m | ||
512 | CONFIG_IP_NF_NAT_TFTP=m | ||
513 | CONFIG_IP_NF_NAT_AMANDA=m | ||
514 | # CONFIG_IP_NF_MANGLE is not set | ||
515 | CONFIG_IP_NF_RAW=m | ||
516 | CONFIG_IP_NF_TARGET_NOTRACK=m | ||
517 | # CONFIG_IP_NF_ARPTABLES is not set | ||
518 | CONFIG_IP_NF_COMPAT_IPCHAINS=m | ||
519 | # CONFIG_IP_NF_COMPAT_IPFWADM is not set | ||
520 | |||
521 | # | ||
522 | # SCTP Configuration (EXPERIMENTAL) | ||
523 | # | ||
524 | # CONFIG_IP_SCTP is not set | ||
525 | # CONFIG_ATM is not set | ||
526 | # CONFIG_BRIDGE is not set | ||
527 | # CONFIG_VLAN_8021Q is not set | ||
528 | # CONFIG_DECNET is not set | ||
529 | # CONFIG_LLC2 is not set | ||
530 | # CONFIG_IPX is not set | ||
531 | # CONFIG_ATALK is not set | ||
532 | # CONFIG_X25 is not set | ||
533 | # CONFIG_LAPB is not set | ||
534 | # CONFIG_NET_DIVERT is not set | ||
535 | # CONFIG_ECONET is not set | ||
536 | # CONFIG_WAN_ROUTER is not set | ||
537 | |||
538 | # | ||
539 | # QoS and/or fair queueing | ||
540 | # | ||
541 | # CONFIG_NET_SCHED is not set | ||
542 | # CONFIG_NET_CLS_ROUTE is not set | ||
543 | |||
544 | # | ||
545 | # Network testing | ||
546 | # | ||
547 | # CONFIG_NET_PKTGEN is not set | ||
548 | # CONFIG_NETPOLL is not set | ||
549 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
550 | # CONFIG_HAMRADIO is not set | ||
551 | # CONFIG_IRDA is not set | ||
552 | # CONFIG_BT is not set | ||
553 | CONFIG_NETDEVICES=y | 647 | CONFIG_NETDEVICES=y |
554 | # CONFIG_DUMMY is not set | 648 | # CONFIG_DUMMY is not set |
555 | # CONFIG_BONDING is not set | 649 | # CONFIG_BONDING is not set |
556 | # CONFIG_EQUALIZER is not set | 650 | # CONFIG_EQUALIZER is not set |
557 | # CONFIG_TUN is not set | 651 | CONFIG_TUN=m |
558 | 652 | ||
559 | # | 653 | # |
560 | # ARCnet devices | 654 | # ARCnet devices |
@@ -588,6 +682,8 @@ CONFIG_TULIP_MMIO=y | |||
588 | CONFIG_DE4X5=m | 682 | CONFIG_DE4X5=m |
589 | # CONFIG_WINBOND_840 is not set | 683 | # CONFIG_WINBOND_840 is not set |
590 | # CONFIG_DM9102 is not set | 684 | # CONFIG_DM9102 is not set |
685 | # CONFIG_PCMCIA_XIRCOM is not set | ||
686 | # CONFIG_PCMCIA_XIRTULIP is not set | ||
591 | # CONFIG_AT1700 is not set | 687 | # CONFIG_AT1700 is not set |
592 | # CONFIG_DEPCA is not set | 688 | # CONFIG_DEPCA is not set |
593 | # CONFIG_HP100 is not set | 689 | # CONFIG_HP100 is not set |
@@ -626,9 +722,12 @@ CONFIG_PCNET32=y | |||
626 | # CONFIG_HAMACHI is not set | 722 | # CONFIG_HAMACHI is not set |
627 | # CONFIG_YELLOWFIN is not set | 723 | # CONFIG_YELLOWFIN is not set |
628 | # CONFIG_R8169 is not set | 724 | # CONFIG_R8169 is not set |
725 | # CONFIG_SKGE is not set | ||
629 | # CONFIG_SK98LIN is not set | 726 | # CONFIG_SK98LIN is not set |
630 | # CONFIG_VIA_VELOCITY is not set | 727 | # CONFIG_VIA_VELOCITY is not set |
631 | # CONFIG_TIGON3 is not set | 728 | # CONFIG_TIGON3 is not set |
729 | # CONFIG_BNX2 is not set | ||
730 | # CONFIG_MV643XX_ETH is not set | ||
632 | 731 | ||
633 | # | 732 | # |
634 | # Ethernet (10000 Mbit) | 733 | # Ethernet (10000 Mbit) |
@@ -676,18 +775,19 @@ CONFIG_NET_WIRELESS=y | |||
676 | # CONFIG_WAN is not set | 775 | # CONFIG_WAN is not set |
677 | # CONFIG_FDDI is not set | 776 | # CONFIG_FDDI is not set |
678 | # CONFIG_HIPPI is not set | 777 | # CONFIG_HIPPI is not set |
778 | # CONFIG_PLIP is not set | ||
679 | CONFIG_PPP=y | 779 | CONFIG_PPP=y |
680 | CONFIG_PPP_MULTILINK=y | 780 | CONFIG_PPP_MULTILINK=y |
681 | CONFIG_PPP_FILTER=y | 781 | CONFIG_PPP_FILTER=y |
682 | CONFIG_PPP_ASYNC=y | 782 | CONFIG_PPP_ASYNC=y |
683 | # CONFIG_PPP_SYNC_TTY is not set | 783 | # CONFIG_PPP_SYNC_TTY is not set |
684 | CONFIG_PPP_DEFLATE=y | 784 | CONFIG_PPP_DEFLATE=y |
685 | # CONFIG_PPP_BSDCOMP is not set | 785 | CONFIG_PPP_BSDCOMP=m |
686 | # CONFIG_PPPOE is not set | 786 | CONFIG_PPPOE=m |
687 | # CONFIG_SLIP is not set | 787 | # CONFIG_SLIP is not set |
688 | # CONFIG_NET_FC is not set | 788 | # CONFIG_NET_FC is not set |
689 | # CONFIG_SHAPER is not set | 789 | # CONFIG_SHAPER is not set |
690 | # CONFIG_NETCONSOLE is not set | 790 | CONFIG_NETCONSOLE=m |
691 | 791 | ||
692 | # | 792 | # |
693 | # ISDN subsystem | 793 | # ISDN subsystem |
@@ -708,7 +808,7 @@ CONFIG_INPUT=y | |||
708 | # Userland interfaces | 808 | # Userland interfaces |
709 | # | 809 | # |
710 | CONFIG_INPUT_MOUSEDEV=y | 810 | CONFIG_INPUT_MOUSEDEV=y |
711 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | 811 | # CONFIG_INPUT_MOUSEDEV_PSAUX is not set |
712 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | 812 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 |
713 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | 813 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 |
714 | # CONFIG_INPUT_JOYDEV is not set | 814 | # CONFIG_INPUT_JOYDEV is not set |
@@ -717,18 +817,6 @@ CONFIG_INPUT_EVDEV=y | |||
717 | CONFIG_INPUT_EVBUG=m | 817 | CONFIG_INPUT_EVBUG=m |
718 | 818 | ||
719 | # | 819 | # |
720 | # Input I/O drivers | ||
721 | # | ||
722 | # CONFIG_GAMEPORT is not set | ||
723 | CONFIG_SOUND_GAMEPORT=y | ||
724 | CONFIG_SERIO=y | ||
725 | CONFIG_SERIO_I8042=y | ||
726 | # CONFIG_SERIO_SERPORT is not set | ||
727 | # CONFIG_SERIO_CT82C710 is not set | ||
728 | # CONFIG_SERIO_PCIPS2 is not set | ||
729 | # CONFIG_SERIO_RAW is not set | ||
730 | |||
731 | # | ||
732 | # Input Device Drivers | 820 | # Input Device Drivers |
733 | # | 821 | # |
734 | CONFIG_INPUT_KEYBOARD=y | 822 | CONFIG_INPUT_KEYBOARD=y |
@@ -751,6 +839,18 @@ CONFIG_INPUT_MISC=y | |||
751 | CONFIG_INPUT_UINPUT=m | 839 | CONFIG_INPUT_UINPUT=m |
752 | 840 | ||
753 | # | 841 | # |
842 | # Hardware I/O ports | ||
843 | # | ||
844 | CONFIG_SERIO=y | ||
845 | CONFIG_SERIO_I8042=y | ||
846 | # CONFIG_SERIO_SERPORT is not set | ||
847 | # CONFIG_SERIO_PARKBD is not set | ||
848 | # CONFIG_SERIO_PCIPS2 is not set | ||
849 | CONFIG_SERIO_LIBPS2=y | ||
850 | # CONFIG_SERIO_RAW is not set | ||
851 | # CONFIG_GAMEPORT is not set | ||
852 | |||
853 | # | ||
754 | # Character devices | 854 | # Character devices |
755 | # | 855 | # |
756 | CONFIG_VT=y | 856 | CONFIG_VT=y |
@@ -761,7 +861,8 @@ CONFIG_HW_CONSOLE=y | |||
761 | # | 861 | # |
762 | # Serial drivers | 862 | # Serial drivers |
763 | # | 863 | # |
764 | CONFIG_SERIAL_8250=m | 864 | CONFIG_SERIAL_8250=y |
865 | CONFIG_SERIAL_8250_CONSOLE=y | ||
765 | CONFIG_SERIAL_8250_NR_UARTS=4 | 866 | CONFIG_SERIAL_8250_NR_UARTS=4 |
766 | # CONFIG_SERIAL_8250_EXTENDED is not set | 867 | # CONFIG_SERIAL_8250_EXTENDED is not set |
767 | 868 | ||
@@ -769,11 +870,16 @@ CONFIG_SERIAL_8250_NR_UARTS=4 | |||
769 | # Non-8250 serial port support | 870 | # Non-8250 serial port support |
770 | # | 871 | # |
771 | CONFIG_SERIAL_CORE=y | 872 | CONFIG_SERIAL_CORE=y |
873 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
772 | CONFIG_SERIAL_PMACZILOG=y | 874 | CONFIG_SERIAL_PMACZILOG=y |
773 | # CONFIG_SERIAL_PMACZILOG_CONSOLE is not set | 875 | CONFIG_SERIAL_PMACZILOG_CONSOLE=y |
876 | # CONFIG_SERIAL_JSM is not set | ||
774 | CONFIG_UNIX98_PTYS=y | 877 | CONFIG_UNIX98_PTYS=y |
775 | CONFIG_LEGACY_PTYS=y | 878 | CONFIG_LEGACY_PTYS=y |
776 | CONFIG_LEGACY_PTY_COUNT=256 | 879 | CONFIG_LEGACY_PTY_COUNT=256 |
880 | # CONFIG_PRINTER is not set | ||
881 | # CONFIG_PPDEV is not set | ||
882 | # CONFIG_TIPAR is not set | ||
777 | 883 | ||
778 | # | 884 | # |
779 | # IPMI | 885 | # IPMI |
@@ -794,11 +900,23 @@ CONFIG_GEN_RTC=y | |||
794 | # | 900 | # |
795 | # Ftape, the floppy tape device driver | 901 | # Ftape, the floppy tape device driver |
796 | # | 902 | # |
797 | # CONFIG_AGP is not set | 903 | CONFIG_AGP=m |
798 | # CONFIG_DRM is not set | 904 | CONFIG_AGP_UNINORTH=m |
905 | CONFIG_DRM=m | ||
906 | # CONFIG_DRM_TDFX is not set | ||
907 | CONFIG_DRM_R128=m | ||
908 | CONFIG_DRM_RADEON=m | ||
909 | # CONFIG_DRM_MGA is not set | ||
910 | # CONFIG_DRM_SIS is not set | ||
911 | # CONFIG_DRM_VIA is not set | ||
799 | # CONFIG_RAW_DRIVER is not set | 912 | # CONFIG_RAW_DRIVER is not set |
800 | 913 | ||
801 | # | 914 | # |
915 | # TPM devices | ||
916 | # | ||
917 | # CONFIG_TCG_TPM is not set | ||
918 | |||
919 | # | ||
802 | # I2C support | 920 | # I2C support |
803 | # | 921 | # |
804 | CONFIG_I2C=y | 922 | CONFIG_I2C=y |
@@ -823,11 +941,13 @@ CONFIG_I2C_ALGOBIT=y | |||
823 | CONFIG_I2C_HYDRA=y | 941 | CONFIG_I2C_HYDRA=y |
824 | # CONFIG_I2C_I801 is not set | 942 | # CONFIG_I2C_I801 is not set |
825 | # CONFIG_I2C_I810 is not set | 943 | # CONFIG_I2C_I810 is not set |
944 | # CONFIG_I2C_PIIX4 is not set | ||
826 | # CONFIG_I2C_ISA is not set | 945 | # CONFIG_I2C_ISA is not set |
827 | CONFIG_I2C_KEYWEST=m | 946 | CONFIG_I2C_KEYWEST=m |
947 | # CONFIG_I2C_MPC is not set | ||
828 | # CONFIG_I2C_NFORCE2 is not set | 948 | # CONFIG_I2C_NFORCE2 is not set |
949 | # CONFIG_I2C_PARPORT is not set | ||
829 | # CONFIG_I2C_PARPORT_LIGHT is not set | 950 | # CONFIG_I2C_PARPORT_LIGHT is not set |
830 | # CONFIG_I2C_PIIX4 is not set | ||
831 | # CONFIG_I2C_PROSAVAGE is not set | 951 | # CONFIG_I2C_PROSAVAGE is not set |
832 | # CONFIG_I2C_SAVAGE4 is not set | 952 | # CONFIG_I2C_SAVAGE4 is not set |
833 | # CONFIG_SCx200_ACB is not set | 953 | # CONFIG_SCx200_ACB is not set |
@@ -839,43 +959,20 @@ CONFIG_I2C_KEYWEST=m | |||
839 | # CONFIG_I2C_VIAPRO is not set | 959 | # CONFIG_I2C_VIAPRO is not set |
840 | # CONFIG_I2C_VOODOO3 is not set | 960 | # CONFIG_I2C_VOODOO3 is not set |
841 | # CONFIG_I2C_PCA_ISA is not set | 961 | # CONFIG_I2C_PCA_ISA is not set |
962 | # CONFIG_I2C_SENSOR is not set | ||
842 | 963 | ||
843 | # | 964 | # |
844 | # Hardware Sensors Chip support | 965 | # Miscellaneous I2C Chip support |
845 | # | ||
846 | # CONFIG_I2C_SENSOR is not set | ||
847 | # CONFIG_SENSORS_ADM1021 is not set | ||
848 | # CONFIG_SENSORS_ADM1025 is not set | ||
849 | # CONFIG_SENSORS_ADM1031 is not set | ||
850 | # CONFIG_SENSORS_ASB100 is not set | ||
851 | # CONFIG_SENSORS_DS1621 is not set | ||
852 | # CONFIG_SENSORS_FSCHER is not set | ||
853 | # CONFIG_SENSORS_GL518SM is not set | ||
854 | # CONFIG_SENSORS_IT87 is not set | ||
855 | # CONFIG_SENSORS_LM63 is not set | ||
856 | # CONFIG_SENSORS_LM75 is not set | ||
857 | # CONFIG_SENSORS_LM77 is not set | ||
858 | # CONFIG_SENSORS_LM78 is not set | ||
859 | # CONFIG_SENSORS_LM80 is not set | ||
860 | # CONFIG_SENSORS_LM83 is not set | ||
861 | # CONFIG_SENSORS_LM85 is not set | ||
862 | # CONFIG_SENSORS_LM87 is not set | ||
863 | # CONFIG_SENSORS_LM90 is not set | ||
864 | # CONFIG_SENSORS_MAX1619 is not set | ||
865 | # CONFIG_SENSORS_PC87360 is not set | ||
866 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
867 | # CONFIG_SENSORS_VIA686A is not set | ||
868 | # CONFIG_SENSORS_W83781D is not set | ||
869 | # CONFIG_SENSORS_W83L785TS is not set | ||
870 | # CONFIG_SENSORS_W83627HF is not set | ||
871 | |||
872 | # | ||
873 | # Other I2C Chip support | ||
874 | # | 966 | # |
967 | # CONFIG_SENSORS_DS1337 is not set | ||
968 | # CONFIG_SENSORS_DS1374 is not set | ||
875 | # CONFIG_SENSORS_EEPROM is not set | 969 | # CONFIG_SENSORS_EEPROM is not set |
876 | # CONFIG_SENSORS_PCF8574 is not set | 970 | # CONFIG_SENSORS_PCF8574 is not set |
971 | # CONFIG_SENSORS_PCA9539 is not set | ||
877 | # CONFIG_SENSORS_PCF8591 is not set | 972 | # CONFIG_SENSORS_PCF8591 is not set |
878 | # CONFIG_SENSORS_RTC8564 is not set | 973 | # CONFIG_SENSORS_RTC8564 is not set |
974 | # CONFIG_SENSORS_M41T00 is not set | ||
975 | # CONFIG_SENSORS_MAX6875 is not set | ||
879 | # CONFIG_I2C_DEBUG_CORE is not set | 976 | # CONFIG_I2C_DEBUG_CORE is not set |
880 | # CONFIG_I2C_DEBUG_ALGO is not set | 977 | # CONFIG_I2C_DEBUG_ALGO is not set |
881 | # CONFIG_I2C_DEBUG_BUS is not set | 978 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -887,6 +984,11 @@ CONFIG_I2C_KEYWEST=m | |||
887 | # CONFIG_W1 is not set | 984 | # CONFIG_W1 is not set |
888 | 985 | ||
889 | # | 986 | # |
987 | # Hardware Monitoring support | ||
988 | # | ||
989 | # CONFIG_HWMON is not set | ||
990 | |||
991 | # | ||
890 | # Misc devices | 992 | # Misc devices |
891 | # | 993 | # |
892 | 994 | ||
@@ -904,8 +1006,13 @@ CONFIG_I2C_KEYWEST=m | |||
904 | # Graphics support | 1006 | # Graphics support |
905 | # | 1007 | # |
906 | CONFIG_FB=y | 1008 | CONFIG_FB=y |
1009 | CONFIG_FB_CFB_FILLRECT=y | ||
1010 | CONFIG_FB_CFB_COPYAREA=y | ||
1011 | CONFIG_FB_CFB_IMAGEBLIT=y | ||
1012 | CONFIG_FB_SOFT_CURSOR=y | ||
1013 | CONFIG_FB_MACMODES=y | ||
907 | CONFIG_FB_MODE_HELPERS=y | 1014 | CONFIG_FB_MODE_HELPERS=y |
908 | # CONFIG_FB_TILEBLITTING is not set | 1015 | CONFIG_FB_TILEBLITTING=y |
909 | # CONFIG_FB_CIRRUS is not set | 1016 | # CONFIG_FB_CIRRUS is not set |
910 | # CONFIG_FB_PM2 is not set | 1017 | # CONFIG_FB_PM2 is not set |
911 | # CONFIG_FB_CYBER2000 is not set | 1018 | # CONFIG_FB_CYBER2000 is not set |
@@ -917,13 +1024,16 @@ CONFIG_FB_CT65550=y | |||
917 | # CONFIG_FB_ASILIANT is not set | 1024 | # CONFIG_FB_ASILIANT is not set |
918 | CONFIG_FB_IMSTT=y | 1025 | CONFIG_FB_IMSTT=y |
919 | # CONFIG_FB_VGA16 is not set | 1026 | # CONFIG_FB_VGA16 is not set |
920 | # CONFIG_FB_RIVA is not set | 1027 | # CONFIG_FB_NVIDIA is not set |
1028 | CONFIG_FB_RIVA=y | ||
1029 | CONFIG_FB_RIVA_I2C=y | ||
1030 | # CONFIG_FB_RIVA_DEBUG is not set | ||
921 | CONFIG_FB_MATROX=y | 1031 | CONFIG_FB_MATROX=y |
922 | CONFIG_FB_MATROX_MILLENIUM=y | 1032 | CONFIG_FB_MATROX_MILLENIUM=y |
923 | CONFIG_FB_MATROX_MYSTIQUE=y | 1033 | CONFIG_FB_MATROX_MYSTIQUE=y |
924 | # CONFIG_FB_MATROX_G450 is not set | 1034 | CONFIG_FB_MATROX_G=y |
925 | # CONFIG_FB_MATROX_G100A is not set | ||
926 | CONFIG_FB_MATROX_I2C=y | 1035 | CONFIG_FB_MATROX_I2C=y |
1036 | CONFIG_FB_MATROX_MAVEN=m | ||
927 | # CONFIG_FB_MATROX_MULTIHEAD is not set | 1037 | # CONFIG_FB_MATROX_MULTIHEAD is not set |
928 | # CONFIG_FB_RADEON_OLD is not set | 1038 | # CONFIG_FB_RADEON_OLD is not set |
929 | CONFIG_FB_RADEON=y | 1039 | CONFIG_FB_RADEON=y |
@@ -932,8 +1042,8 @@ CONFIG_FB_RADEON_I2C=y | |||
932 | CONFIG_FB_ATY128=y | 1042 | CONFIG_FB_ATY128=y |
933 | CONFIG_FB_ATY=y | 1043 | CONFIG_FB_ATY=y |
934 | CONFIG_FB_ATY_CT=y | 1044 | CONFIG_FB_ATY_CT=y |
935 | # CONFIG_FB_ATY_GENERIC_LCD is not set | 1045 | CONFIG_FB_ATY_GENERIC_LCD=y |
936 | # CONFIG_FB_ATY_XL_INIT is not set | 1046 | CONFIG_FB_ATY_XL_INIT=y |
937 | CONFIG_FB_ATY_GX=y | 1047 | CONFIG_FB_ATY_GX=y |
938 | # CONFIG_FB_SAVAGE is not set | 1048 | # CONFIG_FB_SAVAGE is not set |
939 | # CONFIG_FB_SIS is not set | 1049 | # CONFIG_FB_SIS is not set |
@@ -943,6 +1053,7 @@ CONFIG_FB_3DFX=y | |||
943 | # CONFIG_FB_3DFX_ACCEL is not set | 1053 | # CONFIG_FB_3DFX_ACCEL is not set |
944 | # CONFIG_FB_VOODOO1 is not set | 1054 | # CONFIG_FB_VOODOO1 is not set |
945 | # CONFIG_FB_TRIDENT is not set | 1055 | # CONFIG_FB_TRIDENT is not set |
1056 | # CONFIG_FB_S1D13XXX is not set | ||
946 | # CONFIG_FB_VIRTUAL is not set | 1057 | # CONFIG_FB_VIRTUAL is not set |
947 | 1058 | ||
948 | # | 1059 | # |
@@ -960,9 +1071,10 @@ CONFIG_FONT_8x16=y | |||
960 | # Logo configuration | 1071 | # Logo configuration |
961 | # | 1072 | # |
962 | CONFIG_LOGO=y | 1073 | CONFIG_LOGO=y |
963 | CONFIG_LOGO_LINUX_MONO=y | 1074 | # CONFIG_LOGO_LINUX_MONO is not set |
964 | CONFIG_LOGO_LINUX_VGA16=y | 1075 | # CONFIG_LOGO_LINUX_VGA16 is not set |
965 | CONFIG_LOGO_LINUX_CLUT224=y | 1076 | CONFIG_LOGO_LINUX_CLUT224=y |
1077 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
966 | 1078 | ||
967 | # | 1079 | # |
968 | # Sound | 1080 | # Sound |
@@ -987,6 +1099,7 @@ CONFIG_SND_PCM_OSS=m | |||
987 | CONFIG_SND_SEQUENCER_OSS=y | 1099 | CONFIG_SND_SEQUENCER_OSS=y |
988 | # CONFIG_SND_VERBOSE_PRINTK is not set | 1100 | # CONFIG_SND_VERBOSE_PRINTK is not set |
989 | # CONFIG_SND_DEBUG is not set | 1101 | # CONFIG_SND_DEBUG is not set |
1102 | CONFIG_SND_GENERIC_PM=y | ||
990 | 1103 | ||
991 | # | 1104 | # |
992 | # Generic devices | 1105 | # Generic devices |
@@ -1002,6 +1115,7 @@ CONFIG_SND_OPL3_LIB=m | |||
1002 | # | 1115 | # |
1003 | # ISA devices | 1116 | # ISA devices |
1004 | # | 1117 | # |
1118 | CONFIG_SND_CS4231_LIB=m | ||
1005 | # CONFIG_SND_AD1848 is not set | 1119 | # CONFIG_SND_AD1848 is not set |
1006 | # CONFIG_SND_CS4231 is not set | 1120 | # CONFIG_SND_CS4231 is not set |
1007 | CONFIG_SND_CS4232=m | 1121 | CONFIG_SND_CS4232=m |
@@ -1039,6 +1153,8 @@ CONFIG_SND_CS4232=m | |||
1039 | # CONFIG_SND_CS46XX is not set | 1153 | # CONFIG_SND_CS46XX is not set |
1040 | # CONFIG_SND_CS4281 is not set | 1154 | # CONFIG_SND_CS4281 is not set |
1041 | # CONFIG_SND_EMU10K1 is not set | 1155 | # CONFIG_SND_EMU10K1 is not set |
1156 | # CONFIG_SND_EMU10K1X is not set | ||
1157 | # CONFIG_SND_CA0106 is not set | ||
1042 | # CONFIG_SND_KORG1212 is not set | 1158 | # CONFIG_SND_KORG1212 is not set |
1043 | # CONFIG_SND_MIXART is not set | 1159 | # CONFIG_SND_MIXART is not set |
1044 | # CONFIG_SND_NM256 is not set | 1160 | # CONFIG_SND_NM256 is not set |
@@ -1046,6 +1162,7 @@ CONFIG_SND_CS4232=m | |||
1046 | # CONFIG_SND_RME96 is not set | 1162 | # CONFIG_SND_RME96 is not set |
1047 | # CONFIG_SND_RME9652 is not set | 1163 | # CONFIG_SND_RME9652 is not set |
1048 | # CONFIG_SND_HDSP is not set | 1164 | # CONFIG_SND_HDSP is not set |
1165 | # CONFIG_SND_HDSPM is not set | ||
1049 | # CONFIG_SND_TRIDENT is not set | 1166 | # CONFIG_SND_TRIDENT is not set |
1050 | # CONFIG_SND_YMFPCI is not set | 1167 | # CONFIG_SND_YMFPCI is not set |
1051 | # CONFIG_SND_ALS4000 is not set | 1168 | # CONFIG_SND_ALS4000 is not set |
@@ -1062,7 +1179,9 @@ CONFIG_SND_CS4232=m | |||
1062 | # CONFIG_SND_INTEL8X0M is not set | 1179 | # CONFIG_SND_INTEL8X0M is not set |
1063 | # CONFIG_SND_SONICVIBES is not set | 1180 | # CONFIG_SND_SONICVIBES is not set |
1064 | # CONFIG_SND_VIA82XX is not set | 1181 | # CONFIG_SND_VIA82XX is not set |
1182 | # CONFIG_SND_VIA82XX_MODEM is not set | ||
1065 | # CONFIG_SND_VX222 is not set | 1183 | # CONFIG_SND_VX222 is not set |
1184 | # CONFIG_SND_HDA_INTEL is not set | ||
1066 | 1185 | ||
1067 | # | 1186 | # |
1068 | # ALSA PowerMac devices | 1187 | # ALSA PowerMac devices |
@@ -1083,6 +1202,8 @@ CONFIG_SND_USB_AUDIO=m | |||
1083 | # | 1202 | # |
1084 | # USB support | 1203 | # USB support |
1085 | # | 1204 | # |
1205 | CONFIG_USB_ARCH_HAS_HCD=y | ||
1206 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
1086 | CONFIG_USB=y | 1207 | CONFIG_USB=y |
1087 | # CONFIG_USB_DEBUG is not set | 1208 | # CONFIG_USB_DEBUG is not set |
1088 | 1209 | ||
@@ -1094,15 +1215,19 @@ CONFIG_USB_DEVICEFS=y | |||
1094 | # CONFIG_USB_DYNAMIC_MINORS is not set | 1215 | # CONFIG_USB_DYNAMIC_MINORS is not set |
1095 | # CONFIG_USB_SUSPEND is not set | 1216 | # CONFIG_USB_SUSPEND is not set |
1096 | # CONFIG_USB_OTG is not set | 1217 | # CONFIG_USB_OTG is not set |
1097 | CONFIG_USB_ARCH_HAS_HCD=y | ||
1098 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
1099 | 1218 | ||
1100 | # | 1219 | # |
1101 | # USB Host Controller Drivers | 1220 | # USB Host Controller Drivers |
1102 | # | 1221 | # |
1103 | # CONFIG_USB_EHCI_HCD is not set | 1222 | CONFIG_USB_EHCI_HCD=m |
1223 | CONFIG_USB_EHCI_SPLIT_ISO=y | ||
1224 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | ||
1225 | # CONFIG_USB_ISP116X_HCD is not set | ||
1104 | CONFIG_USB_OHCI_HCD=y | 1226 | CONFIG_USB_OHCI_HCD=y |
1105 | # CONFIG_USB_UHCI_HCD is not set | 1227 | # CONFIG_USB_OHCI_BIG_ENDIAN is not set |
1228 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
1229 | CONFIG_USB_UHCI_HCD=m | ||
1230 | # CONFIG_USB_SL811_HCD is not set | ||
1106 | 1231 | ||
1107 | # | 1232 | # |
1108 | # USB Device Class drivers | 1233 | # USB Device Class drivers |
@@ -1112,17 +1237,20 @@ CONFIG_USB_OHCI_HCD=y | |||
1112 | # CONFIG_USB_MIDI is not set | 1237 | # CONFIG_USB_MIDI is not set |
1113 | CONFIG_USB_ACM=m | 1238 | CONFIG_USB_ACM=m |
1114 | CONFIG_USB_PRINTER=m | 1239 | CONFIG_USB_PRINTER=m |
1240 | |||
1241 | # | ||
1242 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information | ||
1243 | # | ||
1115 | CONFIG_USB_STORAGE=m | 1244 | CONFIG_USB_STORAGE=m |
1116 | # CONFIG_USB_STORAGE_DEBUG is not set | 1245 | # CONFIG_USB_STORAGE_DEBUG is not set |
1117 | # CONFIG_USB_STORAGE_RW_DETECT is not set | 1246 | CONFIG_USB_STORAGE_DATAFAB=y |
1118 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
1119 | CONFIG_USB_STORAGE_FREECOM=y | 1247 | CONFIG_USB_STORAGE_FREECOM=y |
1120 | # CONFIG_USB_STORAGE_ISD200 is not set | 1248 | CONFIG_USB_STORAGE_ISD200=y |
1121 | CONFIG_USB_STORAGE_DPCM=y | 1249 | CONFIG_USB_STORAGE_DPCM=y |
1122 | # CONFIG_USB_STORAGE_HP8200e is not set | 1250 | CONFIG_USB_STORAGE_USBAT=y |
1123 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1251 | CONFIG_USB_STORAGE_SDDR09=y |
1124 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1252 | CONFIG_USB_STORAGE_SDDR55=y |
1125 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 1253 | CONFIG_USB_STORAGE_JUMPSHOT=y |
1126 | 1254 | ||
1127 | # | 1255 | # |
1128 | # USB Input Devices | 1256 | # USB Input Devices |
@@ -1130,22 +1258,24 @@ CONFIG_USB_STORAGE_DPCM=y | |||
1130 | CONFIG_USB_HID=y | 1258 | CONFIG_USB_HID=y |
1131 | CONFIG_USB_HIDINPUT=y | 1259 | CONFIG_USB_HIDINPUT=y |
1132 | # CONFIG_HID_FF is not set | 1260 | # CONFIG_HID_FF is not set |
1133 | # CONFIG_USB_HIDDEV is not set | 1261 | CONFIG_USB_HIDDEV=y |
1134 | # CONFIG_USB_AIPTEK is not set | 1262 | # CONFIG_USB_AIPTEK is not set |
1135 | # CONFIG_USB_WACOM is not set | 1263 | # CONFIG_USB_WACOM is not set |
1264 | # CONFIG_USB_ACECAD is not set | ||
1136 | # CONFIG_USB_KBTAB is not set | 1265 | # CONFIG_USB_KBTAB is not set |
1137 | # CONFIG_USB_POWERMATE is not set | 1266 | # CONFIG_USB_POWERMATE is not set |
1138 | # CONFIG_USB_MTOUCH is not set | 1267 | # CONFIG_USB_MTOUCH is not set |
1268 | # CONFIG_USB_ITMTOUCH is not set | ||
1139 | # CONFIG_USB_EGALAX is not set | 1269 | # CONFIG_USB_EGALAX is not set |
1140 | # CONFIG_USB_XPAD is not set | 1270 | # CONFIG_USB_XPAD is not set |
1141 | # CONFIG_USB_ATI_REMOTE is not set | 1271 | # CONFIG_USB_ATI_REMOTE is not set |
1272 | # CONFIG_USB_KEYSPAN_REMOTE is not set | ||
1142 | 1273 | ||
1143 | # | 1274 | # |
1144 | # USB Imaging devices | 1275 | # USB Imaging devices |
1145 | # | 1276 | # |
1146 | # CONFIG_USB_MDC800 is not set | 1277 | # CONFIG_USB_MDC800 is not set |
1147 | # CONFIG_USB_MICROTEK is not set | 1278 | # CONFIG_USB_MICROTEK is not set |
1148 | # CONFIG_USB_HPUSBSCSI is not set | ||
1149 | 1279 | ||
1150 | # | 1280 | # |
1151 | # USB Multimedia devices | 1281 | # USB Multimedia devices |
@@ -1161,22 +1291,27 @@ CONFIG_USB_HIDINPUT=y | |||
1161 | # | 1291 | # |
1162 | # CONFIG_USB_CATC is not set | 1292 | # CONFIG_USB_CATC is not set |
1163 | # CONFIG_USB_KAWETH is not set | 1293 | # CONFIG_USB_KAWETH is not set |
1164 | # CONFIG_USB_PEGASUS is not set | 1294 | CONFIG_USB_PEGASUS=m |
1165 | # CONFIG_USB_RTL8150 is not set | 1295 | # CONFIG_USB_RTL8150 is not set |
1166 | # CONFIG_USB_USBNET is not set | 1296 | # CONFIG_USB_USBNET is not set |
1297 | # CONFIG_USB_ZD1201 is not set | ||
1298 | # CONFIG_USB_MON is not set | ||
1167 | 1299 | ||
1168 | # | 1300 | # |
1169 | # USB port drivers | 1301 | # USB port drivers |
1170 | # | 1302 | # |
1303 | # CONFIG_USB_USS720 is not set | ||
1171 | 1304 | ||
1172 | # | 1305 | # |
1173 | # USB Serial Converter support | 1306 | # USB Serial Converter support |
1174 | # | 1307 | # |
1175 | CONFIG_USB_SERIAL=m | 1308 | CONFIG_USB_SERIAL=m |
1176 | # CONFIG_USB_SERIAL_GENERIC is not set | 1309 | # CONFIG_USB_SERIAL_GENERIC is not set |
1310 | # CONFIG_USB_SERIAL_AIRPRIME is not set | ||
1177 | # CONFIG_USB_SERIAL_BELKIN is not set | 1311 | # CONFIG_USB_SERIAL_BELKIN is not set |
1178 | # CONFIG_USB_SERIAL_WHITEHEAT is not set | 1312 | # CONFIG_USB_SERIAL_WHITEHEAT is not set |
1179 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set | 1313 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set |
1314 | # CONFIG_USB_SERIAL_CP2101 is not set | ||
1180 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set | 1315 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set |
1181 | # CONFIG_USB_SERIAL_EMPEG is not set | 1316 | # CONFIG_USB_SERIAL_EMPEG is not set |
1182 | # CONFIG_USB_SERIAL_FTDI_SIO is not set | 1317 | # CONFIG_USB_SERIAL_FTDI_SIO is not set |
@@ -1185,28 +1320,32 @@ CONFIG_USB_SERIAL_VISOR=m | |||
1185 | # CONFIG_USB_SERIAL_IR is not set | 1320 | # CONFIG_USB_SERIAL_IR is not set |
1186 | # CONFIG_USB_SERIAL_EDGEPORT is not set | 1321 | # CONFIG_USB_SERIAL_EDGEPORT is not set |
1187 | # CONFIG_USB_SERIAL_EDGEPORT_TI is not set | 1322 | # CONFIG_USB_SERIAL_EDGEPORT_TI is not set |
1323 | # CONFIG_USB_SERIAL_GARMIN is not set | ||
1188 | # CONFIG_USB_SERIAL_IPW is not set | 1324 | # CONFIG_USB_SERIAL_IPW is not set |
1189 | # CONFIG_USB_SERIAL_KEYSPAN_PDA is not set | 1325 | # CONFIG_USB_SERIAL_KEYSPAN_PDA is not set |
1190 | CONFIG_USB_SERIAL_KEYSPAN=m | 1326 | CONFIG_USB_SERIAL_KEYSPAN=m |
1191 | # CONFIG_USB_SERIAL_KEYSPAN_MPR is not set | 1327 | CONFIG_USB_SERIAL_KEYSPAN_MPR=y |
1192 | CONFIG_USB_SERIAL_KEYSPAN_USA28=y | 1328 | CONFIG_USB_SERIAL_KEYSPAN_USA28=y |
1193 | CONFIG_USB_SERIAL_KEYSPAN_USA28X=y | 1329 | CONFIG_USB_SERIAL_KEYSPAN_USA28X=y |
1194 | # CONFIG_USB_SERIAL_KEYSPAN_USA28XA is not set | 1330 | CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y |
1195 | # CONFIG_USB_SERIAL_KEYSPAN_USA28XB is not set | 1331 | CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y |
1196 | CONFIG_USB_SERIAL_KEYSPAN_USA19=y | 1332 | CONFIG_USB_SERIAL_KEYSPAN_USA19=y |
1197 | CONFIG_USB_SERIAL_KEYSPAN_USA18X=y | 1333 | CONFIG_USB_SERIAL_KEYSPAN_USA18X=y |
1198 | CONFIG_USB_SERIAL_KEYSPAN_USA19W=y | 1334 | CONFIG_USB_SERIAL_KEYSPAN_USA19W=y |
1199 | CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y | 1335 | CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y |
1200 | CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y | 1336 | CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y |
1201 | CONFIG_USB_SERIAL_KEYSPAN_USA49W=y | 1337 | CONFIG_USB_SERIAL_KEYSPAN_USA49W=y |
1202 | # CONFIG_USB_SERIAL_KEYSPAN_USA49WLC is not set | 1338 | CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y |
1203 | # CONFIG_USB_SERIAL_KLSI is not set | 1339 | # CONFIG_USB_SERIAL_KLSI is not set |
1204 | # CONFIG_USB_SERIAL_KOBIL_SCT is not set | 1340 | # CONFIG_USB_SERIAL_KOBIL_SCT is not set |
1205 | # CONFIG_USB_SERIAL_MCT_U232 is not set | 1341 | # CONFIG_USB_SERIAL_MCT_U232 is not set |
1206 | # CONFIG_USB_SERIAL_PL2303 is not set | 1342 | # CONFIG_USB_SERIAL_PL2303 is not set |
1343 | # CONFIG_USB_SERIAL_HP4X is not set | ||
1207 | # CONFIG_USB_SERIAL_SAFE is not set | 1344 | # CONFIG_USB_SERIAL_SAFE is not set |
1345 | # CONFIG_USB_SERIAL_TI is not set | ||
1208 | # CONFIG_USB_SERIAL_CYBERJACK is not set | 1346 | # CONFIG_USB_SERIAL_CYBERJACK is not set |
1209 | # CONFIG_USB_SERIAL_XIRCOM is not set | 1347 | # CONFIG_USB_SERIAL_XIRCOM is not set |
1348 | # CONFIG_USB_SERIAL_OPTION is not set | ||
1210 | # CONFIG_USB_SERIAL_OMNINET is not set | 1349 | # CONFIG_USB_SERIAL_OMNINET is not set |
1211 | CONFIG_USB_EZUSB=y | 1350 | CONFIG_USB_EZUSB=y |
1212 | 1351 | ||
@@ -1215,7 +1354,6 @@ CONFIG_USB_EZUSB=y | |||
1215 | # | 1354 | # |
1216 | # CONFIG_USB_EMI62 is not set | 1355 | # CONFIG_USB_EMI62 is not set |
1217 | # CONFIG_USB_EMI26 is not set | 1356 | # CONFIG_USB_EMI26 is not set |
1218 | # CONFIG_USB_TIGL is not set | ||
1219 | # CONFIG_USB_AUERSWALD is not set | 1357 | # CONFIG_USB_AUERSWALD is not set |
1220 | # CONFIG_USB_RIO500 is not set | 1358 | # CONFIG_USB_RIO500 is not set |
1221 | # CONFIG_USB_LEGOTOWER is not set | 1359 | # CONFIG_USB_LEGOTOWER is not set |
@@ -1224,10 +1362,13 @@ CONFIG_USB_EZUSB=y | |||
1224 | # CONFIG_USB_CYTHERM is not set | 1362 | # CONFIG_USB_CYTHERM is not set |
1225 | # CONFIG_USB_PHIDGETKIT is not set | 1363 | # CONFIG_USB_PHIDGETKIT is not set |
1226 | # CONFIG_USB_PHIDGETSERVO is not set | 1364 | # CONFIG_USB_PHIDGETSERVO is not set |
1365 | # CONFIG_USB_IDMOUSE is not set | ||
1366 | # CONFIG_USB_SISUSBVGA is not set | ||
1367 | # CONFIG_USB_LD is not set | ||
1227 | # CONFIG_USB_TEST is not set | 1368 | # CONFIG_USB_TEST is not set |
1228 | 1369 | ||
1229 | # | 1370 | # |
1230 | # USB ATM/DSL drivers | 1371 | # USB DSL modem support |
1231 | # | 1372 | # |
1232 | 1373 | ||
1233 | # | 1374 | # |
@@ -1236,21 +1377,63 @@ CONFIG_USB_EZUSB=y | |||
1236 | # CONFIG_USB_GADGET is not set | 1377 | # CONFIG_USB_GADGET is not set |
1237 | 1378 | ||
1238 | # | 1379 | # |
1380 | # MMC/SD Card support | ||
1381 | # | ||
1382 | # CONFIG_MMC is not set | ||
1383 | |||
1384 | # | ||
1385 | # InfiniBand support | ||
1386 | # | ||
1387 | # CONFIG_INFINIBAND is not set | ||
1388 | |||
1389 | # | ||
1390 | # SN Devices | ||
1391 | # | ||
1392 | |||
1393 | # | ||
1239 | # File systems | 1394 | # File systems |
1240 | # | 1395 | # |
1241 | CONFIG_EXT2_FS=y | 1396 | CONFIG_EXT2_FS=y |
1242 | # CONFIG_EXT2_FS_XATTR is not set | 1397 | CONFIG_EXT2_FS_XATTR=y |
1243 | # CONFIG_EXT3_FS is not set | 1398 | CONFIG_EXT2_FS_POSIX_ACL=y |
1244 | # CONFIG_JBD is not set | 1399 | CONFIG_EXT2_FS_SECURITY=y |
1245 | # CONFIG_REISERFS_FS is not set | 1400 | # CONFIG_EXT2_FS_XIP is not set |
1246 | # CONFIG_JFS_FS is not set | 1401 | CONFIG_EXT3_FS=y |
1247 | # CONFIG_XFS_FS is not set | 1402 | CONFIG_EXT3_FS_XATTR=y |
1403 | CONFIG_EXT3_FS_POSIX_ACL=y | ||
1404 | CONFIG_EXT3_FS_SECURITY=y | ||
1405 | CONFIG_JBD=y | ||
1406 | # CONFIG_JBD_DEBUG is not set | ||
1407 | CONFIG_FS_MBCACHE=y | ||
1408 | CONFIG_REISERFS_FS=y | ||
1409 | # CONFIG_REISERFS_CHECK is not set | ||
1410 | # CONFIG_REISERFS_PROC_INFO is not set | ||
1411 | CONFIG_REISERFS_FS_XATTR=y | ||
1412 | CONFIG_REISERFS_FS_POSIX_ACL=y | ||
1413 | CONFIG_REISERFS_FS_SECURITY=y | ||
1414 | CONFIG_JFS_FS=m | ||
1415 | CONFIG_JFS_POSIX_ACL=y | ||
1416 | CONFIG_JFS_SECURITY=y | ||
1417 | # CONFIG_JFS_DEBUG is not set | ||
1418 | # CONFIG_JFS_STATISTICS is not set | ||
1419 | CONFIG_FS_POSIX_ACL=y | ||
1420 | |||
1421 | # | ||
1422 | # XFS support | ||
1423 | # | ||
1424 | CONFIG_XFS_FS=m | ||
1425 | CONFIG_XFS_EXPORT=y | ||
1426 | # CONFIG_XFS_RT is not set | ||
1427 | # CONFIG_XFS_QUOTA is not set | ||
1428 | CONFIG_XFS_SECURITY=y | ||
1429 | CONFIG_XFS_POSIX_ACL=y | ||
1248 | # CONFIG_MINIX_FS is not set | 1430 | # CONFIG_MINIX_FS is not set |
1249 | # CONFIG_ROMFS_FS is not set | 1431 | # CONFIG_ROMFS_FS is not set |
1432 | CONFIG_INOTIFY=y | ||
1250 | # CONFIG_QUOTA is not set | 1433 | # CONFIG_QUOTA is not set |
1251 | CONFIG_DNOTIFY=y | 1434 | CONFIG_DNOTIFY=y |
1252 | # CONFIG_AUTOFS_FS is not set | 1435 | # CONFIG_AUTOFS_FS is not set |
1253 | # CONFIG_AUTOFS4_FS is not set | 1436 | CONFIG_AUTOFS4_FS=m |
1254 | 1437 | ||
1255 | # | 1438 | # |
1256 | # CD-ROM/DVD Filesystems | 1439 | # CD-ROM/DVD Filesystems |
@@ -1258,7 +1441,8 @@ CONFIG_DNOTIFY=y | |||
1258 | CONFIG_ISO9660_FS=y | 1441 | CONFIG_ISO9660_FS=y |
1259 | # CONFIG_JOLIET is not set | 1442 | # CONFIG_JOLIET is not set |
1260 | # CONFIG_ZISOFS is not set | 1443 | # CONFIG_ZISOFS is not set |
1261 | # CONFIG_UDF_FS is not set | 1444 | CONFIG_UDF_FS=m |
1445 | CONFIG_UDF_NLS=y | ||
1262 | 1446 | ||
1263 | # | 1447 | # |
1264 | # DOS/FAT/NT Filesystems | 1448 | # DOS/FAT/NT Filesystems |
@@ -1276,12 +1460,11 @@ CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | |||
1276 | CONFIG_PROC_FS=y | 1460 | CONFIG_PROC_FS=y |
1277 | CONFIG_PROC_KCORE=y | 1461 | CONFIG_PROC_KCORE=y |
1278 | CONFIG_SYSFS=y | 1462 | CONFIG_SYSFS=y |
1279 | CONFIG_DEVFS_FS=y | 1463 | CONFIG_DEVPTS_FS_XATTR=y |
1280 | # CONFIG_DEVFS_MOUNT is not set | 1464 | CONFIG_DEVPTS_FS_SECURITY=y |
1281 | # CONFIG_DEVFS_DEBUG is not set | ||
1282 | # CONFIG_DEVPTS_FS_XATTR is not set | ||
1283 | CONFIG_TMPFS=y | 1465 | CONFIG_TMPFS=y |
1284 | # CONFIG_TMPFS_XATTR is not set | 1466 | CONFIG_TMPFS_XATTR=y |
1467 | CONFIG_TMPFS_SECURITY=y | ||
1285 | # CONFIG_HUGETLB_PAGE is not set | 1468 | # CONFIG_HUGETLB_PAGE is not set |
1286 | CONFIG_RAMFS=y | 1469 | CONFIG_RAMFS=y |
1287 | 1470 | ||
@@ -1295,27 +1478,33 @@ CONFIG_HFSPLUS_FS=m | |||
1295 | # CONFIG_BEFS_FS is not set | 1478 | # CONFIG_BEFS_FS is not set |
1296 | # CONFIG_BFS_FS is not set | 1479 | # CONFIG_BFS_FS is not set |
1297 | # CONFIG_EFS_FS is not set | 1480 | # CONFIG_EFS_FS is not set |
1298 | # CONFIG_CRAMFS is not set | 1481 | CONFIG_CRAMFS=m |
1299 | # CONFIG_VXFS_FS is not set | 1482 | # CONFIG_VXFS_FS is not set |
1300 | # CONFIG_HPFS_FS is not set | 1483 | # CONFIG_HPFS_FS is not set |
1301 | # CONFIG_QNX4FS_FS is not set | 1484 | # CONFIG_QNX4FS_FS is not set |
1302 | # CONFIG_SYSV_FS is not set | 1485 | # CONFIG_SYSV_FS is not set |
1303 | # CONFIG_UFS_FS is not set | 1486 | CONFIG_UFS_FS=m |
1487 | # CONFIG_UFS_FS_WRITE is not set | ||
1304 | 1488 | ||
1305 | # | 1489 | # |
1306 | # Network File Systems | 1490 | # Network File Systems |
1307 | # | 1491 | # |
1308 | CONFIG_NFS_FS=y | 1492 | CONFIG_NFS_FS=y |
1309 | CONFIG_NFS_V3=y | 1493 | CONFIG_NFS_V3=y |
1494 | CONFIG_NFS_V3_ACL=y | ||
1310 | # CONFIG_NFS_V4 is not set | 1495 | # CONFIG_NFS_V4 is not set |
1311 | # CONFIG_NFS_DIRECTIO is not set | 1496 | # CONFIG_NFS_DIRECTIO is not set |
1312 | CONFIG_NFSD=y | 1497 | CONFIG_NFSD=y |
1498 | CONFIG_NFSD_V2_ACL=y | ||
1313 | CONFIG_NFSD_V3=y | 1499 | CONFIG_NFSD_V3=y |
1500 | CONFIG_NFSD_V3_ACL=y | ||
1314 | # CONFIG_NFSD_V4 is not set | 1501 | # CONFIG_NFSD_V4 is not set |
1315 | CONFIG_NFSD_TCP=y | 1502 | CONFIG_NFSD_TCP=y |
1316 | CONFIG_LOCKD=y | 1503 | CONFIG_LOCKD=y |
1317 | CONFIG_LOCKD_V4=y | 1504 | CONFIG_LOCKD_V4=y |
1318 | CONFIG_EXPORTFS=y | 1505 | CONFIG_EXPORTFS=y |
1506 | CONFIG_NFS_ACL_SUPPORT=y | ||
1507 | CONFIG_NFS_COMMON=y | ||
1319 | CONFIG_SUNRPC=y | 1508 | CONFIG_SUNRPC=y |
1320 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1509 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
1321 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1510 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
@@ -1348,46 +1537,46 @@ CONFIG_MSDOS_PARTITION=y | |||
1348 | # | 1537 | # |
1349 | # Native Language Support | 1538 | # Native Language Support |
1350 | # | 1539 | # |
1351 | CONFIG_NLS=y | 1540 | CONFIG_NLS=m |
1352 | CONFIG_NLS_DEFAULT="iso8859-1" | 1541 | CONFIG_NLS_DEFAULT="iso8859-1" |
1353 | # CONFIG_NLS_CODEPAGE_437 is not set | 1542 | CONFIG_NLS_CODEPAGE_437=m |
1354 | # CONFIG_NLS_CODEPAGE_737 is not set | 1543 | CONFIG_NLS_CODEPAGE_737=m |
1355 | # CONFIG_NLS_CODEPAGE_775 is not set | 1544 | CONFIG_NLS_CODEPAGE_775=m |
1356 | # CONFIG_NLS_CODEPAGE_850 is not set | 1545 | CONFIG_NLS_CODEPAGE_850=m |
1357 | # CONFIG_NLS_CODEPAGE_852 is not set | 1546 | CONFIG_NLS_CODEPAGE_852=m |
1358 | # CONFIG_NLS_CODEPAGE_855 is not set | 1547 | CONFIG_NLS_CODEPAGE_855=m |
1359 | # CONFIG_NLS_CODEPAGE_857 is not set | 1548 | CONFIG_NLS_CODEPAGE_857=m |
1360 | # CONFIG_NLS_CODEPAGE_860 is not set | 1549 | CONFIG_NLS_CODEPAGE_860=m |
1361 | # CONFIG_NLS_CODEPAGE_861 is not set | 1550 | CONFIG_NLS_CODEPAGE_861=m |
1362 | # CONFIG_NLS_CODEPAGE_862 is not set | 1551 | CONFIG_NLS_CODEPAGE_862=m |
1363 | # CONFIG_NLS_CODEPAGE_863 is not set | 1552 | CONFIG_NLS_CODEPAGE_863=m |
1364 | # CONFIG_NLS_CODEPAGE_864 is not set | 1553 | CONFIG_NLS_CODEPAGE_864=m |
1365 | # CONFIG_NLS_CODEPAGE_865 is not set | 1554 | CONFIG_NLS_CODEPAGE_865=m |
1366 | # CONFIG_NLS_CODEPAGE_866 is not set | 1555 | CONFIG_NLS_CODEPAGE_866=m |
1367 | # CONFIG_NLS_CODEPAGE_869 is not set | 1556 | CONFIG_NLS_CODEPAGE_869=m |
1368 | # CONFIG_NLS_CODEPAGE_936 is not set | 1557 | CONFIG_NLS_CODEPAGE_936=m |
1369 | # CONFIG_NLS_CODEPAGE_950 is not set | 1558 | CONFIG_NLS_CODEPAGE_950=m |
1370 | # CONFIG_NLS_CODEPAGE_932 is not set | 1559 | CONFIG_NLS_CODEPAGE_932=m |
1371 | # CONFIG_NLS_CODEPAGE_949 is not set | 1560 | CONFIG_NLS_CODEPAGE_949=m |
1372 | # CONFIG_NLS_CODEPAGE_874 is not set | 1561 | CONFIG_NLS_CODEPAGE_874=m |
1373 | # CONFIG_NLS_ISO8859_8 is not set | 1562 | CONFIG_NLS_ISO8859_8=m |
1374 | # CONFIG_NLS_CODEPAGE_1250 is not set | 1563 | CONFIG_NLS_CODEPAGE_1250=m |
1375 | # CONFIG_NLS_CODEPAGE_1251 is not set | 1564 | CONFIG_NLS_CODEPAGE_1251=m |
1376 | # CONFIG_NLS_ASCII is not set | 1565 | CONFIG_NLS_ASCII=m |
1377 | CONFIG_NLS_ISO8859_1=m | 1566 | CONFIG_NLS_ISO8859_1=m |
1378 | # CONFIG_NLS_ISO8859_2 is not set | 1567 | CONFIG_NLS_ISO8859_2=m |
1379 | # CONFIG_NLS_ISO8859_3 is not set | 1568 | CONFIG_NLS_ISO8859_3=m |
1380 | # CONFIG_NLS_ISO8859_4 is not set | 1569 | CONFIG_NLS_ISO8859_4=m |
1381 | # CONFIG_NLS_ISO8859_5 is not set | 1570 | CONFIG_NLS_ISO8859_5=m |
1382 | # CONFIG_NLS_ISO8859_6 is not set | 1571 | CONFIG_NLS_ISO8859_6=m |
1383 | # CONFIG_NLS_ISO8859_7 is not set | 1572 | CONFIG_NLS_ISO8859_7=m |
1384 | # CONFIG_NLS_ISO8859_9 is not set | 1573 | CONFIG_NLS_ISO8859_9=m |
1385 | # CONFIG_NLS_ISO8859_13 is not set | 1574 | CONFIG_NLS_ISO8859_13=m |
1386 | # CONFIG_NLS_ISO8859_14 is not set | 1575 | CONFIG_NLS_ISO8859_14=m |
1387 | # CONFIG_NLS_ISO8859_15 is not set | 1576 | CONFIG_NLS_ISO8859_15=m |
1388 | # CONFIG_NLS_KOI8_R is not set | 1577 | CONFIG_NLS_KOI8_R=m |
1389 | # CONFIG_NLS_KOI8_U is not set | 1578 | CONFIG_NLS_KOI8_U=m |
1390 | # CONFIG_NLS_UTF8 is not set | 1579 | CONFIG_NLS_UTF8=m |
1391 | 1580 | ||
1392 | # | 1581 | # |
1393 | # Library routines | 1582 | # Library routines |
@@ -1406,7 +1595,19 @@ CONFIG_ZLIB_DEFLATE=y | |||
1406 | # | 1595 | # |
1407 | # Kernel hacking | 1596 | # Kernel hacking |
1408 | # | 1597 | # |
1409 | # CONFIG_DEBUG_KERNEL is not set | 1598 | # CONFIG_PRINTK_TIME is not set |
1599 | CONFIG_DEBUG_KERNEL=y | ||
1600 | CONFIG_MAGIC_SYSRQ=y | ||
1601 | CONFIG_LOG_BUF_SHIFT=14 | ||
1602 | # CONFIG_SCHEDSTATS is not set | ||
1603 | # CONFIG_DEBUG_SLAB is not set | ||
1604 | # CONFIG_DEBUG_SPINLOCK is not set | ||
1605 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
1606 | # CONFIG_DEBUG_KOBJECT is not set | ||
1607 | # CONFIG_DEBUG_INFO is not set | ||
1608 | # CONFIG_DEBUG_FS is not set | ||
1609 | # CONFIG_XMON is not set | ||
1610 | # CONFIG_BDI_SWITCH is not set | ||
1410 | CONFIG_BOOTX_TEXT=y | 1611 | CONFIG_BOOTX_TEXT=y |
1411 | 1612 | ||
1412 | # | 1613 | # |
@@ -1419,3 +1620,7 @@ CONFIG_BOOTX_TEXT=y | |||
1419 | # Cryptographic options | 1620 | # Cryptographic options |
1420 | # | 1621 | # |
1421 | # CONFIG_CRYPTO is not set | 1622 | # CONFIG_CRYPTO is not set |
1623 | |||
1624 | # | ||
1625 | # Hardware crypto devices | ||
1626 | # | ||
diff --git a/arch/ppc/configs/pmac_defconfig b/arch/ppc/configs/pmac_defconfig index 8eebb0455766..a2db8b541c9b 100644 --- a/arch/ppc/configs/pmac_defconfig +++ b/arch/ppc/configs/pmac_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.11-rc4 | 3 | # Linux kernel version: 2.6.13-rc3 |
4 | # Sun Feb 13 14:56:58 2005 | 4 | # Wed Jul 13 14:13:13 2005 |
5 | # | 5 | # |
6 | CONFIG_MMU=y | 6 | CONFIG_MMU=y |
7 | CONFIG_GENERIC_HARDIRQS=y | 7 | CONFIG_GENERIC_HARDIRQS=y |
@@ -11,6 +11,7 @@ CONFIG_HAVE_DEC_LOCK=y | |||
11 | CONFIG_PPC=y | 11 | CONFIG_PPC=y |
12 | CONFIG_PPC32=y | 12 | CONFIG_PPC32=y |
13 | CONFIG_GENERIC_NVRAM=y | 13 | CONFIG_GENERIC_NVRAM=y |
14 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
14 | 15 | ||
15 | # | 16 | # |
16 | # Code maturity level options | 17 | # Code maturity level options |
@@ -18,6 +19,7 @@ CONFIG_GENERIC_NVRAM=y | |||
18 | CONFIG_EXPERIMENTAL=y | 19 | CONFIG_EXPERIMENTAL=y |
19 | CONFIG_CLEAN_COMPILE=y | 20 | CONFIG_CLEAN_COMPILE=y |
20 | CONFIG_BROKEN_ON_SMP=y | 21 | CONFIG_BROKEN_ON_SMP=y |
22 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
21 | 23 | ||
22 | # | 24 | # |
23 | # General setup | 25 | # General setup |
@@ -28,7 +30,7 @@ CONFIG_SYSVIPC=y | |||
28 | CONFIG_POSIX_MQUEUE=y | 30 | CONFIG_POSIX_MQUEUE=y |
29 | # CONFIG_BSD_PROCESS_ACCT is not set | 31 | # CONFIG_BSD_PROCESS_ACCT is not set |
30 | CONFIG_SYSCTL=y | 32 | CONFIG_SYSCTL=y |
31 | CONFIG_LOG_BUF_SHIFT=16 | 33 | # CONFIG_AUDIT is not set |
32 | CONFIG_HOTPLUG=y | 34 | CONFIG_HOTPLUG=y |
33 | CONFIG_KOBJECT_UEVENT=y | 35 | CONFIG_KOBJECT_UEVENT=y |
34 | CONFIG_IKCONFIG=y | 36 | CONFIG_IKCONFIG=y |
@@ -37,15 +39,18 @@ CONFIG_IKCONFIG_PROC=y | |||
37 | CONFIG_KALLSYMS=y | 39 | CONFIG_KALLSYMS=y |
38 | # CONFIG_KALLSYMS_ALL is not set | 40 | # CONFIG_KALLSYMS_ALL is not set |
39 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 41 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
42 | CONFIG_PRINTK=y | ||
43 | CONFIG_BUG=y | ||
44 | CONFIG_BASE_FULL=y | ||
40 | CONFIG_FUTEX=y | 45 | CONFIG_FUTEX=y |
41 | CONFIG_EPOLL=y | 46 | CONFIG_EPOLL=y |
42 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
43 | CONFIG_SHMEM=y | 47 | CONFIG_SHMEM=y |
44 | CONFIG_CC_ALIGN_FUNCTIONS=0 | 48 | CONFIG_CC_ALIGN_FUNCTIONS=0 |
45 | CONFIG_CC_ALIGN_LABELS=0 | 49 | CONFIG_CC_ALIGN_LABELS=0 |
46 | CONFIG_CC_ALIGN_LOOPS=0 | 50 | CONFIG_CC_ALIGN_LOOPS=0 |
47 | CONFIG_CC_ALIGN_JUMPS=0 | 51 | CONFIG_CC_ALIGN_JUMPS=0 |
48 | # CONFIG_TINY_SHMEM is not set | 52 | # CONFIG_TINY_SHMEM is not set |
53 | CONFIG_BASE_SMALL=0 | ||
49 | 54 | ||
50 | # | 55 | # |
51 | # Loadable module support | 56 | # Loadable module support |
@@ -67,12 +72,16 @@ CONFIG_6xx=y | |||
67 | # CONFIG_POWER3 is not set | 72 | # CONFIG_POWER3 is not set |
68 | # CONFIG_POWER4 is not set | 73 | # CONFIG_POWER4 is not set |
69 | # CONFIG_8xx is not set | 74 | # CONFIG_8xx is not set |
75 | # CONFIG_E200 is not set | ||
70 | # CONFIG_E500 is not set | 76 | # CONFIG_E500 is not set |
77 | CONFIG_PPC_FPU=y | ||
71 | CONFIG_ALTIVEC=y | 78 | CONFIG_ALTIVEC=y |
72 | CONFIG_TAU=y | 79 | CONFIG_TAU=y |
73 | # CONFIG_TAU_INT is not set | 80 | # CONFIG_TAU_INT is not set |
74 | # CONFIG_TAU_AVERAGE is not set | 81 | # CONFIG_TAU_AVERAGE is not set |
82 | # CONFIG_KEXEC is not set | ||
75 | CONFIG_CPU_FREQ=y | 83 | CONFIG_CPU_FREQ=y |
84 | CONFIG_CPU_FREQ_TABLE=y | ||
76 | # CONFIG_CPU_FREQ_DEBUG is not set | 85 | # CONFIG_CPU_FREQ_DEBUG is not set |
77 | CONFIG_CPU_FREQ_STAT=m | 86 | CONFIG_CPU_FREQ_STAT=m |
78 | CONFIG_CPU_FREQ_STAT_DETAILS=y | 87 | CONFIG_CPU_FREQ_STAT_DETAILS=y |
@@ -82,8 +91,8 @@ CONFIG_CPU_FREQ_GOV_PERFORMANCE=y | |||
82 | CONFIG_CPU_FREQ_GOV_POWERSAVE=m | 91 | CONFIG_CPU_FREQ_GOV_POWERSAVE=m |
83 | CONFIG_CPU_FREQ_GOV_USERSPACE=m | 92 | CONFIG_CPU_FREQ_GOV_USERSPACE=m |
84 | CONFIG_CPU_FREQ_GOV_ONDEMAND=m | 93 | CONFIG_CPU_FREQ_GOV_ONDEMAND=m |
94 | CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m | ||
85 | CONFIG_CPU_FREQ_PMAC=y | 95 | CONFIG_CPU_FREQ_PMAC=y |
86 | CONFIG_CPU_FREQ_TABLE=y | ||
87 | CONFIG_PPC601_SYNC_FIX=y | 96 | CONFIG_PPC601_SYNC_FIX=y |
88 | CONFIG_PM=y | 97 | CONFIG_PM=y |
89 | CONFIG_PPC_STD_MMU=y | 98 | CONFIG_PPC_STD_MMU=y |
@@ -100,6 +109,7 @@ CONFIG_PPC_MULTIPLATFORM=y | |||
100 | # CONFIG_POWERPMC250 is not set | 109 | # CONFIG_POWERPMC250 is not set |
101 | # CONFIG_CHESTNUT is not set | 110 | # CONFIG_CHESTNUT is not set |
102 | # CONFIG_SPRUCE is not set | 111 | # CONFIG_SPRUCE is not set |
112 | # CONFIG_HDPU is not set | ||
103 | # CONFIG_EV64260 is not set | 113 | # CONFIG_EV64260 is not set |
104 | # CONFIG_LOPEC is not set | 114 | # CONFIG_LOPEC is not set |
105 | # CONFIG_MCPN765 is not set | 115 | # CONFIG_MCPN765 is not set |
@@ -108,6 +118,7 @@ CONFIG_PPC_MULTIPLATFORM=y | |||
108 | # CONFIG_PRPMC750 is not set | 118 | # CONFIG_PRPMC750 is not set |
109 | # CONFIG_PRPMC800 is not set | 119 | # CONFIG_PRPMC800 is not set |
110 | # CONFIG_SANDPOINT is not set | 120 | # CONFIG_SANDPOINT is not set |
121 | # CONFIG_RADSTONE_PPC7D is not set | ||
111 | # CONFIG_ADIR is not set | 122 | # CONFIG_ADIR is not set |
112 | # CONFIG_K2 is not set | 123 | # CONFIG_K2 is not set |
113 | # CONFIG_PAL4 is not set | 124 | # CONFIG_PAL4 is not set |
@@ -120,19 +131,37 @@ CONFIG_PPC_MULTIPLATFORM=y | |||
120 | # CONFIG_ADS8272 is not set | 131 | # CONFIG_ADS8272 is not set |
121 | # CONFIG_PQ2FADS is not set | 132 | # CONFIG_PQ2FADS is not set |
122 | # CONFIG_LITE5200 is not set | 133 | # CONFIG_LITE5200 is not set |
134 | # CONFIG_MPC834x_SYS is not set | ||
123 | CONFIG_PPC_CHRP=y | 135 | CONFIG_PPC_CHRP=y |
124 | CONFIG_PPC_PMAC=y | 136 | CONFIG_PPC_PMAC=y |
125 | CONFIG_PPC_PREP=y | 137 | CONFIG_PPC_PREP=y |
126 | CONFIG_PPC_OF=y | 138 | CONFIG_PPC_OF=y |
127 | CONFIG_PPCBUG_NVRAM=y | 139 | CONFIG_PPCBUG_NVRAM=y |
128 | # CONFIG_SMP is not set | 140 | # CONFIG_SMP is not set |
129 | # CONFIG_PREEMPT is not set | ||
130 | # CONFIG_HIGHMEM is not set | 141 | # CONFIG_HIGHMEM is not set |
142 | # CONFIG_HZ_100 is not set | ||
143 | CONFIG_HZ_250=y | ||
144 | # CONFIG_HZ_1000 is not set | ||
145 | CONFIG_HZ=250 | ||
146 | CONFIG_PREEMPT_NONE=y | ||
147 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
148 | # CONFIG_PREEMPT is not set | ||
149 | CONFIG_SELECT_MEMORY_MODEL=y | ||
150 | CONFIG_FLATMEM_MANUAL=y | ||
151 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
152 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
153 | CONFIG_FLATMEM=y | ||
154 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
131 | CONFIG_BINFMT_ELF=y | 155 | CONFIG_BINFMT_ELF=y |
132 | CONFIG_BINFMT_MISC=m | 156 | CONFIG_BINFMT_MISC=m |
133 | CONFIG_PROC_DEVICETREE=y | 157 | CONFIG_PROC_DEVICETREE=y |
134 | # CONFIG_PREP_RESIDUAL is not set | 158 | # CONFIG_PREP_RESIDUAL is not set |
135 | # CONFIG_CMDLINE_BOOL is not set | 159 | # CONFIG_CMDLINE_BOOL is not set |
160 | # CONFIG_PM_DEBUG is not set | ||
161 | CONFIG_SOFTWARE_SUSPEND=y | ||
162 | CONFIG_PM_STD_PARTITION="" | ||
163 | # CONFIG_SECCOMP is not set | ||
164 | CONFIG_ISA_DMA_API=y | ||
136 | 165 | ||
137 | # | 166 | # |
138 | # Bus options | 167 | # Bus options |
@@ -143,6 +172,7 @@ CONFIG_PCI=y | |||
143 | CONFIG_PCI_DOMAINS=y | 172 | CONFIG_PCI_DOMAINS=y |
144 | CONFIG_PCI_LEGACY_PROC=y | 173 | CONFIG_PCI_LEGACY_PROC=y |
145 | CONFIG_PCI_NAMES=y | 174 | CONFIG_PCI_NAMES=y |
175 | # CONFIG_PCI_DEBUG is not set | ||
146 | 176 | ||
147 | # | 177 | # |
148 | # PCCARD (PCMCIA/CardBus) support | 178 | # PCCARD (PCMCIA/CardBus) support |
@@ -150,6 +180,8 @@ CONFIG_PCI_NAMES=y | |||
150 | CONFIG_PCCARD=m | 180 | CONFIG_PCCARD=m |
151 | # CONFIG_PCMCIA_DEBUG is not set | 181 | # CONFIG_PCMCIA_DEBUG is not set |
152 | CONFIG_PCMCIA=m | 182 | CONFIG_PCMCIA=m |
183 | # CONFIG_PCMCIA_LOAD_CIS is not set | ||
184 | # CONFIG_PCMCIA_IOCTL is not set | ||
153 | CONFIG_CARDBUS=y | 185 | CONFIG_CARDBUS=y |
154 | 186 | ||
155 | # | 187 | # |
@@ -175,6 +207,194 @@ CONFIG_TASK_SIZE=0xc0000000 | |||
175 | CONFIG_BOOT_LOAD=0x00800000 | 207 | CONFIG_BOOT_LOAD=0x00800000 |
176 | 208 | ||
177 | # | 209 | # |
210 | # Networking | ||
211 | # | ||
212 | CONFIG_NET=y | ||
213 | |||
214 | # | ||
215 | # Networking options | ||
216 | # | ||
217 | CONFIG_PACKET=y | ||
218 | # CONFIG_PACKET_MMAP is not set | ||
219 | CONFIG_UNIX=y | ||
220 | # CONFIG_NET_KEY is not set | ||
221 | CONFIG_INET=y | ||
222 | CONFIG_IP_MULTICAST=y | ||
223 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
224 | CONFIG_IP_FIB_HASH=y | ||
225 | # CONFIG_IP_PNP is not set | ||
226 | # CONFIG_NET_IPIP is not set | ||
227 | # CONFIG_NET_IPGRE is not set | ||
228 | # CONFIG_IP_MROUTE is not set | ||
229 | # CONFIG_ARPD is not set | ||
230 | CONFIG_SYN_COOKIES=y | ||
231 | # CONFIG_INET_AH is not set | ||
232 | # CONFIG_INET_ESP is not set | ||
233 | # CONFIG_INET_IPCOMP is not set | ||
234 | # CONFIG_INET_TUNNEL is not set | ||
235 | CONFIG_IP_TCPDIAG=y | ||
236 | # CONFIG_IP_TCPDIAG_IPV6 is not set | ||
237 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
238 | CONFIG_TCP_CONG_BIC=y | ||
239 | |||
240 | # | ||
241 | # IP: Virtual Server Configuration | ||
242 | # | ||
243 | # CONFIG_IP_VS is not set | ||
244 | # CONFIG_IPV6 is not set | ||
245 | CONFIG_NETFILTER=y | ||
246 | # CONFIG_NETFILTER_DEBUG is not set | ||
247 | |||
248 | # | ||
249 | # IP: Netfilter Configuration | ||
250 | # | ||
251 | CONFIG_IP_NF_CONNTRACK=m | ||
252 | CONFIG_IP_NF_CT_ACCT=y | ||
253 | CONFIG_IP_NF_CONNTRACK_MARK=y | ||
254 | CONFIG_IP_NF_CT_PROTO_SCTP=m | ||
255 | CONFIG_IP_NF_FTP=m | ||
256 | CONFIG_IP_NF_IRC=m | ||
257 | CONFIG_IP_NF_TFTP=m | ||
258 | CONFIG_IP_NF_AMANDA=m | ||
259 | CONFIG_IP_NF_QUEUE=m | ||
260 | CONFIG_IP_NF_IPTABLES=m | ||
261 | CONFIG_IP_NF_MATCH_LIMIT=m | ||
262 | CONFIG_IP_NF_MATCH_IPRANGE=m | ||
263 | CONFIG_IP_NF_MATCH_MAC=m | ||
264 | CONFIG_IP_NF_MATCH_PKTTYPE=m | ||
265 | CONFIG_IP_NF_MATCH_MARK=m | ||
266 | CONFIG_IP_NF_MATCH_MULTIPORT=m | ||
267 | CONFIG_IP_NF_MATCH_TOS=m | ||
268 | CONFIG_IP_NF_MATCH_RECENT=m | ||
269 | CONFIG_IP_NF_MATCH_ECN=m | ||
270 | CONFIG_IP_NF_MATCH_DSCP=m | ||
271 | CONFIG_IP_NF_MATCH_AH_ESP=m | ||
272 | CONFIG_IP_NF_MATCH_LENGTH=m | ||
273 | CONFIG_IP_NF_MATCH_TTL=m | ||
274 | CONFIG_IP_NF_MATCH_TCPMSS=m | ||
275 | CONFIG_IP_NF_MATCH_HELPER=m | ||
276 | CONFIG_IP_NF_MATCH_STATE=m | ||
277 | CONFIG_IP_NF_MATCH_CONNTRACK=m | ||
278 | CONFIG_IP_NF_MATCH_OWNER=m | ||
279 | CONFIG_IP_NF_MATCH_ADDRTYPE=m | ||
280 | CONFIG_IP_NF_MATCH_REALM=m | ||
281 | CONFIG_IP_NF_MATCH_SCTP=m | ||
282 | CONFIG_IP_NF_MATCH_COMMENT=m | ||
283 | CONFIG_IP_NF_MATCH_CONNMARK=m | ||
284 | CONFIG_IP_NF_MATCH_HASHLIMIT=m | ||
285 | CONFIG_IP_NF_FILTER=m | ||
286 | CONFIG_IP_NF_TARGET_REJECT=m | ||
287 | CONFIG_IP_NF_TARGET_LOG=m | ||
288 | CONFIG_IP_NF_TARGET_ULOG=m | ||
289 | CONFIG_IP_NF_TARGET_TCPMSS=m | ||
290 | CONFIG_IP_NF_NAT=m | ||
291 | CONFIG_IP_NF_NAT_NEEDED=y | ||
292 | CONFIG_IP_NF_TARGET_MASQUERADE=m | ||
293 | CONFIG_IP_NF_TARGET_REDIRECT=m | ||
294 | CONFIG_IP_NF_TARGET_NETMAP=m | ||
295 | CONFIG_IP_NF_TARGET_SAME=m | ||
296 | CONFIG_IP_NF_NAT_SNMP_BASIC=m | ||
297 | CONFIG_IP_NF_NAT_IRC=m | ||
298 | CONFIG_IP_NF_NAT_FTP=m | ||
299 | CONFIG_IP_NF_NAT_TFTP=m | ||
300 | CONFIG_IP_NF_NAT_AMANDA=m | ||
301 | CONFIG_IP_NF_MANGLE=m | ||
302 | CONFIG_IP_NF_TARGET_TOS=m | ||
303 | CONFIG_IP_NF_TARGET_ECN=m | ||
304 | CONFIG_IP_NF_TARGET_DSCP=m | ||
305 | CONFIG_IP_NF_TARGET_MARK=m | ||
306 | CONFIG_IP_NF_TARGET_CLASSIFY=m | ||
307 | CONFIG_IP_NF_TARGET_CONNMARK=m | ||
308 | CONFIG_IP_NF_TARGET_CLUSTERIP=m | ||
309 | CONFIG_IP_NF_RAW=m | ||
310 | CONFIG_IP_NF_TARGET_NOTRACK=m | ||
311 | CONFIG_IP_NF_ARPTABLES=m | ||
312 | CONFIG_IP_NF_ARPFILTER=m | ||
313 | CONFIG_IP_NF_ARP_MANGLE=m | ||
314 | |||
315 | # | ||
316 | # SCTP Configuration (EXPERIMENTAL) | ||
317 | # | ||
318 | # CONFIG_IP_SCTP is not set | ||
319 | # CONFIG_ATM is not set | ||
320 | # CONFIG_BRIDGE is not set | ||
321 | # CONFIG_VLAN_8021Q is not set | ||
322 | # CONFIG_DECNET is not set | ||
323 | # CONFIG_LLC2 is not set | ||
324 | # CONFIG_IPX is not set | ||
325 | # CONFIG_ATALK is not set | ||
326 | # CONFIG_X25 is not set | ||
327 | # CONFIG_LAPB is not set | ||
328 | # CONFIG_NET_DIVERT is not set | ||
329 | # CONFIG_ECONET is not set | ||
330 | # CONFIG_WAN_ROUTER is not set | ||
331 | # CONFIG_NET_SCHED is not set | ||
332 | CONFIG_NET_CLS_ROUTE=y | ||
333 | |||
334 | # | ||
335 | # Network testing | ||
336 | # | ||
337 | # CONFIG_NET_PKTGEN is not set | ||
338 | CONFIG_NETPOLL=y | ||
339 | # CONFIG_NETPOLL_RX is not set | ||
340 | # CONFIG_NETPOLL_TRAP is not set | ||
341 | CONFIG_NET_POLL_CONTROLLER=y | ||
342 | # CONFIG_HAMRADIO is not set | ||
343 | CONFIG_IRDA=m | ||
344 | |||
345 | # | ||
346 | # IrDA protocols | ||
347 | # | ||
348 | CONFIG_IRLAN=m | ||
349 | CONFIG_IRNET=m | ||
350 | CONFIG_IRCOMM=m | ||
351 | # CONFIG_IRDA_ULTRA is not set | ||
352 | |||
353 | # | ||
354 | # IrDA options | ||
355 | # | ||
356 | CONFIG_IRDA_CACHE_LAST_LSAP=y | ||
357 | CONFIG_IRDA_FAST_RR=y | ||
358 | # CONFIG_IRDA_DEBUG is not set | ||
359 | |||
360 | # | ||
361 | # Infrared-port device drivers | ||
362 | # | ||
363 | |||
364 | # | ||
365 | # SIR device drivers | ||
366 | # | ||
367 | CONFIG_IRTTY_SIR=m | ||
368 | |||
369 | # | ||
370 | # Dongle support | ||
371 | # | ||
372 | # CONFIG_DONGLE is not set | ||
373 | |||
374 | # | ||
375 | # Old SIR device drivers | ||
376 | # | ||
377 | # CONFIG_IRPORT_SIR is not set | ||
378 | |||
379 | # | ||
380 | # Old Serial dongle support | ||
381 | # | ||
382 | |||
383 | # | ||
384 | # FIR device drivers | ||
385 | # | ||
386 | # CONFIG_USB_IRDA is not set | ||
387 | # CONFIG_SIGMATEL_FIR is not set | ||
388 | # CONFIG_NSC_FIR is not set | ||
389 | # CONFIG_WINBOND_FIR is not set | ||
390 | # CONFIG_TOSHIBA_FIR is not set | ||
391 | # CONFIG_SMC_IRCC_FIR is not set | ||
392 | # CONFIG_ALI_FIR is not set | ||
393 | # CONFIG_VLSI_FIR is not set | ||
394 | # CONFIG_VIA_FIR is not set | ||
395 | # CONFIG_BT is not set | ||
396 | |||
397 | # | ||
178 | # Device Drivers | 398 | # Device Drivers |
179 | # | 399 | # |
180 | 400 | ||
@@ -183,7 +403,7 @@ CONFIG_BOOT_LOAD=0x00800000 | |||
183 | # | 403 | # |
184 | # CONFIG_STANDALONE is not set | 404 | # CONFIG_STANDALONE is not set |
185 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 405 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
186 | # CONFIG_FW_LOADER is not set | 406 | CONFIG_FW_LOADER=m |
187 | # CONFIG_DEBUG_DRIVER is not set | 407 | # CONFIG_DEBUG_DRIVER is not set |
188 | 408 | ||
189 | # | 409 | # |
@@ -279,6 +499,7 @@ CONFIG_BLK_DEV_CMD64X=y | |||
279 | # CONFIG_BLK_DEV_HPT366 is not set | 499 | # CONFIG_BLK_DEV_HPT366 is not set |
280 | # CONFIG_BLK_DEV_SC1200 is not set | 500 | # CONFIG_BLK_DEV_SC1200 is not set |
281 | # CONFIG_BLK_DEV_PIIX is not set | 501 | # CONFIG_BLK_DEV_PIIX is not set |
502 | # CONFIG_BLK_DEV_IT821X is not set | ||
282 | # CONFIG_BLK_DEV_NS87415 is not set | 503 | # CONFIG_BLK_DEV_NS87415 is not set |
283 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set | 504 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set |
284 | CONFIG_BLK_DEV_PDC202XX_NEW=y | 505 | CONFIG_BLK_DEV_PDC202XX_NEW=y |
@@ -313,6 +534,7 @@ CONFIG_CHR_DEV_ST=y | |||
313 | CONFIG_BLK_DEV_SR=y | 534 | CONFIG_BLK_DEV_SR=y |
314 | CONFIG_BLK_DEV_SR_VENDOR=y | 535 | CONFIG_BLK_DEV_SR_VENDOR=y |
315 | CONFIG_CHR_DEV_SG=y | 536 | CONFIG_CHR_DEV_SG=y |
537 | # CONFIG_CHR_DEV_SCH is not set | ||
316 | 538 | ||
317 | # | 539 | # |
318 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | 540 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs |
@@ -350,7 +572,6 @@ CONFIG_SCSI_AIC7XXX_OLD=m | |||
350 | # CONFIG_SCSI_BUSLOGIC is not set | 572 | # CONFIG_SCSI_BUSLOGIC is not set |
351 | # CONFIG_SCSI_DMX3191D is not set | 573 | # CONFIG_SCSI_DMX3191D is not set |
352 | # CONFIG_SCSI_EATA is not set | 574 | # CONFIG_SCSI_EATA is not set |
353 | # CONFIG_SCSI_EATA_PIO is not set | ||
354 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 575 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
355 | # CONFIG_SCSI_GDTH is not set | 576 | # CONFIG_SCSI_GDTH is not set |
356 | # CONFIG_SCSI_IPS is not set | 577 | # CONFIG_SCSI_IPS is not set |
@@ -362,7 +583,6 @@ CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 | |||
362 | CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 | 583 | CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 |
363 | # CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set | 584 | # CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set |
364 | # CONFIG_SCSI_IPR is not set | 585 | # CONFIG_SCSI_IPR is not set |
365 | # CONFIG_SCSI_QLOGIC_ISP is not set | ||
366 | # CONFIG_SCSI_QLOGIC_FC is not set | 586 | # CONFIG_SCSI_QLOGIC_FC is not set |
367 | # CONFIG_SCSI_QLOGIC_1280 is not set | 587 | # CONFIG_SCSI_QLOGIC_1280 is not set |
368 | CONFIG_SCSI_QLA2XXX=y | 588 | CONFIG_SCSI_QLA2XXX=y |
@@ -371,6 +591,7 @@ CONFIG_SCSI_QLA2XXX=y | |||
371 | # CONFIG_SCSI_QLA2300 is not set | 591 | # CONFIG_SCSI_QLA2300 is not set |
372 | # CONFIG_SCSI_QLA2322 is not set | 592 | # CONFIG_SCSI_QLA2322 is not set |
373 | # CONFIG_SCSI_QLA6312 is not set | 593 | # CONFIG_SCSI_QLA6312 is not set |
594 | # CONFIG_SCSI_LPFC is not set | ||
374 | # CONFIG_SCSI_DC395x is not set | 595 | # CONFIG_SCSI_DC395x is not set |
375 | # CONFIG_SCSI_DC390T is not set | 596 | # CONFIG_SCSI_DC390T is not set |
376 | # CONFIG_SCSI_NSP32 is not set | 597 | # CONFIG_SCSI_NSP32 is not set |
@@ -398,6 +619,8 @@ CONFIG_SCSI_MAC53C94=y | |||
398 | # Fusion MPT device support | 619 | # Fusion MPT device support |
399 | # | 620 | # |
400 | # CONFIG_FUSION is not set | 621 | # CONFIG_FUSION is not set |
622 | # CONFIG_FUSION_SPI is not set | ||
623 | # CONFIG_FUSION_FC is not set | ||
401 | 624 | ||
402 | # | 625 | # |
403 | # IEEE 1394 (FireWire) support | 626 | # IEEE 1394 (FireWire) support |
@@ -411,6 +634,7 @@ CONFIG_IEEE1394=m | |||
411 | # CONFIG_IEEE1394_OUI_DB is not set | 634 | # CONFIG_IEEE1394_OUI_DB is not set |
412 | CONFIG_IEEE1394_EXTRA_CONFIG_ROMS=y | 635 | CONFIG_IEEE1394_EXTRA_CONFIG_ROMS=y |
413 | CONFIG_IEEE1394_CONFIG_ROM_IP1394=y | 636 | CONFIG_IEEE1394_CONFIG_ROM_IP1394=y |
637 | # CONFIG_IEEE1394_EXPORT_FULL_API is not set | ||
414 | 638 | ||
415 | # | 639 | # |
416 | # Device Drivers | 640 | # Device Drivers |
@@ -441,8 +665,8 @@ CONFIG_IEEE1394_AMDTP=m | |||
441 | CONFIG_ADB=y | 665 | CONFIG_ADB=y |
442 | CONFIG_ADB_CUDA=y | 666 | CONFIG_ADB_CUDA=y |
443 | CONFIG_ADB_PMU=y | 667 | CONFIG_ADB_PMU=y |
444 | CONFIG_PMAC_PBOOK=y | ||
445 | CONFIG_PMAC_APM_EMU=y | 668 | CONFIG_PMAC_APM_EMU=y |
669 | CONFIG_PMAC_MEDIABAY=y | ||
446 | CONFIG_PMAC_BACKLIGHT=y | 670 | CONFIG_PMAC_BACKLIGHT=y |
447 | CONFIG_ADB_MACIO=y | 671 | CONFIG_ADB_MACIO=y |
448 | CONFIG_INPUT_ADBHID=y | 672 | CONFIG_INPUT_ADBHID=y |
@@ -452,192 +676,13 @@ CONFIG_THERM_ADT746X=m | |||
452 | # CONFIG_ANSLCD is not set | 676 | # CONFIG_ANSLCD is not set |
453 | 677 | ||
454 | # | 678 | # |
455 | # Networking support | 679 | # Network device support |
456 | # | ||
457 | CONFIG_NET=y | ||
458 | |||
459 | # | ||
460 | # Networking options | ||
461 | # | ||
462 | CONFIG_PACKET=y | ||
463 | # CONFIG_PACKET_MMAP is not set | ||
464 | # CONFIG_NETLINK_DEV is not set | ||
465 | CONFIG_UNIX=y | ||
466 | # CONFIG_NET_KEY is not set | ||
467 | CONFIG_INET=y | ||
468 | CONFIG_IP_MULTICAST=y | ||
469 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
470 | # CONFIG_IP_PNP is not set | ||
471 | # CONFIG_NET_IPIP is not set | ||
472 | # CONFIG_NET_IPGRE is not set | ||
473 | # CONFIG_IP_MROUTE is not set | ||
474 | # CONFIG_ARPD is not set | ||
475 | CONFIG_SYN_COOKIES=y | ||
476 | # CONFIG_INET_AH is not set | ||
477 | # CONFIG_INET_ESP is not set | ||
478 | # CONFIG_INET_IPCOMP is not set | ||
479 | # CONFIG_INET_TUNNEL is not set | ||
480 | CONFIG_IP_TCPDIAG=y | ||
481 | # CONFIG_IP_TCPDIAG_IPV6 is not set | ||
482 | |||
483 | # | ||
484 | # IP: Virtual Server Configuration | ||
485 | # | ||
486 | # CONFIG_IP_VS is not set | ||
487 | # CONFIG_IPV6 is not set | ||
488 | CONFIG_NETFILTER=y | ||
489 | # CONFIG_NETFILTER_DEBUG is not set | ||
490 | |||
491 | # | ||
492 | # IP: Netfilter Configuration | ||
493 | # | ||
494 | CONFIG_IP_NF_CONNTRACK=m | ||
495 | CONFIG_IP_NF_CT_ACCT=y | ||
496 | CONFIG_IP_NF_CONNTRACK_MARK=y | ||
497 | CONFIG_IP_NF_CT_PROTO_SCTP=m | ||
498 | CONFIG_IP_NF_FTP=m | ||
499 | CONFIG_IP_NF_IRC=m | ||
500 | CONFIG_IP_NF_TFTP=m | ||
501 | CONFIG_IP_NF_AMANDA=m | ||
502 | CONFIG_IP_NF_QUEUE=m | ||
503 | CONFIG_IP_NF_IPTABLES=m | ||
504 | CONFIG_IP_NF_MATCH_LIMIT=m | ||
505 | CONFIG_IP_NF_MATCH_IPRANGE=m | ||
506 | CONFIG_IP_NF_MATCH_MAC=m | ||
507 | CONFIG_IP_NF_MATCH_PKTTYPE=m | ||
508 | CONFIG_IP_NF_MATCH_MARK=m | ||
509 | CONFIG_IP_NF_MATCH_MULTIPORT=m | ||
510 | CONFIG_IP_NF_MATCH_TOS=m | ||
511 | CONFIG_IP_NF_MATCH_RECENT=m | ||
512 | CONFIG_IP_NF_MATCH_ECN=m | ||
513 | CONFIG_IP_NF_MATCH_DSCP=m | ||
514 | CONFIG_IP_NF_MATCH_AH_ESP=m | ||
515 | CONFIG_IP_NF_MATCH_LENGTH=m | ||
516 | CONFIG_IP_NF_MATCH_TTL=m | ||
517 | CONFIG_IP_NF_MATCH_TCPMSS=m | ||
518 | CONFIG_IP_NF_MATCH_HELPER=m | ||
519 | CONFIG_IP_NF_MATCH_STATE=m | ||
520 | CONFIG_IP_NF_MATCH_CONNTRACK=m | ||
521 | CONFIG_IP_NF_MATCH_OWNER=m | ||
522 | CONFIG_IP_NF_MATCH_ADDRTYPE=m | ||
523 | CONFIG_IP_NF_MATCH_REALM=m | ||
524 | CONFIG_IP_NF_MATCH_SCTP=m | ||
525 | CONFIG_IP_NF_MATCH_COMMENT=m | ||
526 | CONFIG_IP_NF_MATCH_CONNMARK=m | ||
527 | CONFIG_IP_NF_MATCH_HASHLIMIT=m | ||
528 | CONFIG_IP_NF_FILTER=m | ||
529 | CONFIG_IP_NF_TARGET_REJECT=m | ||
530 | CONFIG_IP_NF_TARGET_LOG=m | ||
531 | CONFIG_IP_NF_TARGET_ULOG=m | ||
532 | CONFIG_IP_NF_TARGET_TCPMSS=m | ||
533 | CONFIG_IP_NF_NAT=m | ||
534 | CONFIG_IP_NF_NAT_NEEDED=y | ||
535 | CONFIG_IP_NF_TARGET_MASQUERADE=m | ||
536 | CONFIG_IP_NF_TARGET_REDIRECT=m | ||
537 | CONFIG_IP_NF_TARGET_NETMAP=m | ||
538 | CONFIG_IP_NF_TARGET_SAME=m | ||
539 | CONFIG_IP_NF_NAT_SNMP_BASIC=m | ||
540 | CONFIG_IP_NF_NAT_IRC=m | ||
541 | CONFIG_IP_NF_NAT_FTP=m | ||
542 | CONFIG_IP_NF_NAT_TFTP=m | ||
543 | CONFIG_IP_NF_NAT_AMANDA=m | ||
544 | CONFIG_IP_NF_MANGLE=m | ||
545 | CONFIG_IP_NF_TARGET_TOS=m | ||
546 | CONFIG_IP_NF_TARGET_ECN=m | ||
547 | CONFIG_IP_NF_TARGET_DSCP=m | ||
548 | CONFIG_IP_NF_TARGET_MARK=m | ||
549 | CONFIG_IP_NF_TARGET_CLASSIFY=m | ||
550 | CONFIG_IP_NF_TARGET_CONNMARK=m | ||
551 | CONFIG_IP_NF_TARGET_CLUSTERIP=m | ||
552 | CONFIG_IP_NF_RAW=m | ||
553 | CONFIG_IP_NF_TARGET_NOTRACK=m | ||
554 | CONFIG_IP_NF_ARPTABLES=m | ||
555 | CONFIG_IP_NF_ARPFILTER=m | ||
556 | CONFIG_IP_NF_ARP_MANGLE=m | ||
557 | |||
558 | # | ||
559 | # SCTP Configuration (EXPERIMENTAL) | ||
560 | # | ||
561 | # CONFIG_IP_SCTP is not set | ||
562 | # CONFIG_ATM is not set | ||
563 | # CONFIG_BRIDGE is not set | ||
564 | # CONFIG_VLAN_8021Q is not set | ||
565 | # CONFIG_DECNET is not set | ||
566 | # CONFIG_LLC2 is not set | ||
567 | # CONFIG_IPX is not set | ||
568 | # CONFIG_ATALK is not set | ||
569 | # CONFIG_X25 is not set | ||
570 | # CONFIG_LAPB is not set | ||
571 | # CONFIG_NET_DIVERT is not set | ||
572 | # CONFIG_ECONET is not set | ||
573 | # CONFIG_WAN_ROUTER is not set | ||
574 | |||
575 | # | ||
576 | # QoS and/or fair queueing | ||
577 | # | ||
578 | # CONFIG_NET_SCHED is not set | ||
579 | CONFIG_NET_CLS_ROUTE=y | ||
580 | |||
581 | # | ||
582 | # Network testing | ||
583 | # | ||
584 | # CONFIG_NET_PKTGEN is not set | ||
585 | # CONFIG_NETPOLL is not set | ||
586 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
587 | # CONFIG_HAMRADIO is not set | ||
588 | CONFIG_IRDA=m | ||
589 | |||
590 | # | ||
591 | # IrDA protocols | ||
592 | # | ||
593 | CONFIG_IRLAN=m | ||
594 | CONFIG_IRNET=m | ||
595 | CONFIG_IRCOMM=m | ||
596 | # CONFIG_IRDA_ULTRA is not set | ||
597 | |||
598 | # | ||
599 | # IrDA options | ||
600 | # | ||
601 | CONFIG_IRDA_CACHE_LAST_LSAP=y | ||
602 | CONFIG_IRDA_FAST_RR=y | ||
603 | # CONFIG_IRDA_DEBUG is not set | ||
604 | |||
605 | # | ||
606 | # Infrared-port device drivers | ||
607 | # | ||
608 | |||
609 | # | ||
610 | # SIR device drivers | ||
611 | # | ||
612 | CONFIG_IRTTY_SIR=m | ||
613 | |||
614 | # | ||
615 | # Dongle support | ||
616 | # | ||
617 | # CONFIG_DONGLE is not set | ||
618 | |||
619 | # | ||
620 | # Old SIR device drivers | ||
621 | # | ||
622 | # CONFIG_IRPORT_SIR is not set | ||
623 | |||
624 | # | ||
625 | # Old Serial dongle support | ||
626 | # | ||
627 | |||
628 | # | ||
629 | # FIR device drivers | ||
630 | # | 680 | # |
631 | # CONFIG_USB_IRDA is not set | ||
632 | # CONFIG_SIGMATEL_FIR is not set | ||
633 | # CONFIG_TOSHIBA_FIR is not set | ||
634 | # CONFIG_VLSI_FIR is not set | ||
635 | # CONFIG_BT is not set | ||
636 | CONFIG_NETDEVICES=y | 681 | CONFIG_NETDEVICES=y |
637 | # CONFIG_DUMMY is not set | 682 | # CONFIG_DUMMY is not set |
638 | # CONFIG_BONDING is not set | 683 | # CONFIG_BONDING is not set |
639 | # CONFIG_EQUALIZER is not set | 684 | # CONFIG_EQUALIZER is not set |
640 | # CONFIG_TUN is not set | 685 | CONFIG_TUN=m |
641 | 686 | ||
642 | # | 687 | # |
643 | # ARCnet devices | 688 | # ARCnet devices |
@@ -691,9 +736,12 @@ CONFIG_PCNET32=y | |||
691 | # CONFIG_HAMACHI is not set | 736 | # CONFIG_HAMACHI is not set |
692 | # CONFIG_YELLOWFIN is not set | 737 | # CONFIG_YELLOWFIN is not set |
693 | # CONFIG_R8169 is not set | 738 | # CONFIG_R8169 is not set |
739 | # CONFIG_SKGE is not set | ||
694 | # CONFIG_SK98LIN is not set | 740 | # CONFIG_SK98LIN is not set |
695 | # CONFIG_VIA_VELOCITY is not set | 741 | # CONFIG_VIA_VELOCITY is not set |
696 | # CONFIG_TIGON3 is not set | 742 | # CONFIG_TIGON3 is not set |
743 | # CONFIG_BNX2 is not set | ||
744 | # CONFIG_MV643XX_ETH is not set | ||
697 | 745 | ||
698 | # | 746 | # |
699 | # Ethernet (10000 Mbit) | 747 | # Ethernet (10000 Mbit) |
@@ -768,7 +816,7 @@ CONFIG_PPPOE=m | |||
768 | # CONFIG_SLIP is not set | 816 | # CONFIG_SLIP is not set |
769 | # CONFIG_NET_FC is not set | 817 | # CONFIG_NET_FC is not set |
770 | # CONFIG_SHAPER is not set | 818 | # CONFIG_SHAPER is not set |
771 | # CONFIG_NETCONSOLE is not set | 819 | CONFIG_NETCONSOLE=m |
772 | 820 | ||
773 | # | 821 | # |
774 | # ISDN subsystem | 822 | # ISDN subsystem |
@@ -798,14 +846,6 @@ CONFIG_INPUT_EVDEV=y | |||
798 | # CONFIG_INPUT_EVBUG is not set | 846 | # CONFIG_INPUT_EVBUG is not set |
799 | 847 | ||
800 | # | 848 | # |
801 | # Input I/O drivers | ||
802 | # | ||
803 | # CONFIG_GAMEPORT is not set | ||
804 | CONFIG_SOUND_GAMEPORT=y | ||
805 | # CONFIG_SERIO is not set | ||
806 | # CONFIG_SERIO_I8042 is not set | ||
807 | |||
808 | # | ||
809 | # Input Device Drivers | 849 | # Input Device Drivers |
810 | # | 850 | # |
811 | CONFIG_INPUT_KEYBOARD=y | 851 | CONFIG_INPUT_KEYBOARD=y |
@@ -823,6 +863,12 @@ CONFIG_INPUT_MOUSE=y | |||
823 | # CONFIG_INPUT_MISC is not set | 863 | # CONFIG_INPUT_MISC is not set |
824 | 864 | ||
825 | # | 865 | # |
866 | # Hardware I/O ports | ||
867 | # | ||
868 | # CONFIG_SERIO is not set | ||
869 | # CONFIG_GAMEPORT is not set | ||
870 | |||
871 | # | ||
826 | # Character devices | 872 | # Character devices |
827 | # | 873 | # |
828 | CONFIG_VT=y | 874 | CONFIG_VT=y |
@@ -845,6 +891,7 @@ CONFIG_SERIAL_CORE=y | |||
845 | CONFIG_SERIAL_CORE_CONSOLE=y | 891 | CONFIG_SERIAL_CORE_CONSOLE=y |
846 | CONFIG_SERIAL_PMACZILOG=y | 892 | CONFIG_SERIAL_PMACZILOG=y |
847 | CONFIG_SERIAL_PMACZILOG_CONSOLE=y | 893 | CONFIG_SERIAL_PMACZILOG_CONSOLE=y |
894 | # CONFIG_SERIAL_JSM is not set | ||
848 | CONFIG_UNIX98_PTYS=y | 895 | CONFIG_UNIX98_PTYS=y |
849 | CONFIG_LEGACY_PTYS=y | 896 | CONFIG_LEGACY_PTYS=y |
850 | CONFIG_LEGACY_PTY_COUNT=256 | 897 | CONFIG_LEGACY_PTY_COUNT=256 |
@@ -876,6 +923,7 @@ CONFIG_DRM_R128=m | |||
876 | CONFIG_DRM_RADEON=m | 923 | CONFIG_DRM_RADEON=m |
877 | # CONFIG_DRM_MGA is not set | 924 | # CONFIG_DRM_MGA is not set |
878 | # CONFIG_DRM_SIS is not set | 925 | # CONFIG_DRM_SIS is not set |
926 | # CONFIG_DRM_VIA is not set | ||
879 | 927 | ||
880 | # | 928 | # |
881 | # PCMCIA character devices | 929 | # PCMCIA character devices |
@@ -884,6 +932,11 @@ CONFIG_DRM_RADEON=m | |||
884 | # CONFIG_RAW_DRIVER is not set | 932 | # CONFIG_RAW_DRIVER is not set |
885 | 933 | ||
886 | # | 934 | # |
935 | # TPM devices | ||
936 | # | ||
937 | # CONFIG_TCG_TPM is not set | ||
938 | |||
939 | # | ||
887 | # I2C support | 940 | # I2C support |
888 | # | 941 | # |
889 | CONFIG_I2C=y | 942 | CONFIG_I2C=y |
@@ -907,12 +960,12 @@ CONFIG_I2C_ALGOBIT=y | |||
907 | # CONFIG_I2C_HYDRA is not set | 960 | # CONFIG_I2C_HYDRA is not set |
908 | # CONFIG_I2C_I801 is not set | 961 | # CONFIG_I2C_I801 is not set |
909 | # CONFIG_I2C_I810 is not set | 962 | # CONFIG_I2C_I810 is not set |
963 | # CONFIG_I2C_PIIX4 is not set | ||
910 | # CONFIG_I2C_ISA is not set | 964 | # CONFIG_I2C_ISA is not set |
911 | CONFIG_I2C_KEYWEST=m | 965 | CONFIG_I2C_KEYWEST=m |
912 | # CONFIG_I2C_MPC is not set | 966 | # CONFIG_I2C_MPC is not set |
913 | # CONFIG_I2C_NFORCE2 is not set | 967 | # CONFIG_I2C_NFORCE2 is not set |
914 | # CONFIG_I2C_PARPORT_LIGHT is not set | 968 | # CONFIG_I2C_PARPORT_LIGHT is not set |
915 | # CONFIG_I2C_PIIX4 is not set | ||
916 | # CONFIG_I2C_PROSAVAGE is not set | 969 | # CONFIG_I2C_PROSAVAGE is not set |
917 | # CONFIG_I2C_SAVAGE4 is not set | 970 | # CONFIG_I2C_SAVAGE4 is not set |
918 | # CONFIG_SCx200_ACB is not set | 971 | # CONFIG_SCx200_ACB is not set |
@@ -924,45 +977,20 @@ CONFIG_I2C_KEYWEST=m | |||
924 | # CONFIG_I2C_VIAPRO is not set | 977 | # CONFIG_I2C_VIAPRO is not set |
925 | # CONFIG_I2C_VOODOO3 is not set | 978 | # CONFIG_I2C_VOODOO3 is not set |
926 | # CONFIG_I2C_PCA_ISA is not set | 979 | # CONFIG_I2C_PCA_ISA is not set |
980 | # CONFIG_I2C_SENSOR is not set | ||
927 | 981 | ||
928 | # | 982 | # |
929 | # Hardware Sensors Chip support | 983 | # Miscellaneous I2C Chip support |
930 | # | ||
931 | # CONFIG_I2C_SENSOR is not set | ||
932 | # CONFIG_SENSORS_ADM1021 is not set | ||
933 | # CONFIG_SENSORS_ADM1025 is not set | ||
934 | # CONFIG_SENSORS_ADM1026 is not set | ||
935 | # CONFIG_SENSORS_ADM1031 is not set | ||
936 | # CONFIG_SENSORS_ASB100 is not set | ||
937 | # CONFIG_SENSORS_DS1621 is not set | ||
938 | # CONFIG_SENSORS_FSCHER is not set | ||
939 | # CONFIG_SENSORS_GL518SM is not set | ||
940 | # CONFIG_SENSORS_IT87 is not set | ||
941 | # CONFIG_SENSORS_LM63 is not set | ||
942 | # CONFIG_SENSORS_LM75 is not set | ||
943 | # CONFIG_SENSORS_LM77 is not set | ||
944 | # CONFIG_SENSORS_LM78 is not set | ||
945 | # CONFIG_SENSORS_LM80 is not set | ||
946 | # CONFIG_SENSORS_LM83 is not set | ||
947 | # CONFIG_SENSORS_LM85 is not set | ||
948 | # CONFIG_SENSORS_LM87 is not set | ||
949 | # CONFIG_SENSORS_LM90 is not set | ||
950 | # CONFIG_SENSORS_MAX1619 is not set | ||
951 | # CONFIG_SENSORS_PC87360 is not set | ||
952 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
953 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
954 | # CONFIG_SENSORS_VIA686A is not set | ||
955 | # CONFIG_SENSORS_W83781D is not set | ||
956 | # CONFIG_SENSORS_W83L785TS is not set | ||
957 | # CONFIG_SENSORS_W83627HF is not set | ||
958 | |||
959 | # | ||
960 | # Other I2C Chip support | ||
961 | # | 984 | # |
985 | # CONFIG_SENSORS_DS1337 is not set | ||
986 | # CONFIG_SENSORS_DS1374 is not set | ||
962 | # CONFIG_SENSORS_EEPROM is not set | 987 | # CONFIG_SENSORS_EEPROM is not set |
963 | # CONFIG_SENSORS_PCF8574 is not set | 988 | # CONFIG_SENSORS_PCF8574 is not set |
989 | # CONFIG_SENSORS_PCA9539 is not set | ||
964 | # CONFIG_SENSORS_PCF8591 is not set | 990 | # CONFIG_SENSORS_PCF8591 is not set |
965 | # CONFIG_SENSORS_RTC8564 is not set | 991 | # CONFIG_SENSORS_RTC8564 is not set |
992 | # CONFIG_SENSORS_M41T00 is not set | ||
993 | # CONFIG_SENSORS_MAX6875 is not set | ||
966 | # CONFIG_I2C_DEBUG_CORE is not set | 994 | # CONFIG_I2C_DEBUG_CORE is not set |
967 | # CONFIG_I2C_DEBUG_ALGO is not set | 995 | # CONFIG_I2C_DEBUG_ALGO is not set |
968 | # CONFIG_I2C_DEBUG_BUS is not set | 996 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -974,6 +1002,11 @@ CONFIG_I2C_KEYWEST=m | |||
974 | # CONFIG_W1 is not set | 1002 | # CONFIG_W1 is not set |
975 | 1003 | ||
976 | # | 1004 | # |
1005 | # Hardware Monitoring support | ||
1006 | # | ||
1007 | # CONFIG_HWMON is not set | ||
1008 | |||
1009 | # | ||
977 | # Misc devices | 1010 | # Misc devices |
978 | # | 1011 | # |
979 | 1012 | ||
@@ -991,6 +1024,11 @@ CONFIG_I2C_KEYWEST=m | |||
991 | # Graphics support | 1024 | # Graphics support |
992 | # | 1025 | # |
993 | CONFIG_FB=y | 1026 | CONFIG_FB=y |
1027 | CONFIG_FB_CFB_FILLRECT=y | ||
1028 | CONFIG_FB_CFB_COPYAREA=y | ||
1029 | CONFIG_FB_CFB_IMAGEBLIT=y | ||
1030 | CONFIG_FB_SOFT_CURSOR=y | ||
1031 | CONFIG_FB_MACMODES=y | ||
994 | CONFIG_FB_MODE_HELPERS=y | 1032 | CONFIG_FB_MODE_HELPERS=y |
995 | CONFIG_FB_TILEBLITTING=y | 1033 | CONFIG_FB_TILEBLITTING=y |
996 | # CONFIG_FB_CIRRUS is not set | 1034 | # CONFIG_FB_CIRRUS is not set |
@@ -1004,6 +1042,7 @@ CONFIG_FB_CT65550=y | |||
1004 | # CONFIG_FB_ASILIANT is not set | 1042 | # CONFIG_FB_ASILIANT is not set |
1005 | CONFIG_FB_IMSTT=y | 1043 | CONFIG_FB_IMSTT=y |
1006 | # CONFIG_FB_VGA16 is not set | 1044 | # CONFIG_FB_VGA16 is not set |
1045 | # CONFIG_FB_NVIDIA is not set | ||
1007 | # CONFIG_FB_RIVA is not set | 1046 | # CONFIG_FB_RIVA is not set |
1008 | CONFIG_FB_MATROX=y | 1047 | CONFIG_FB_MATROX=y |
1009 | CONFIG_FB_MATROX_MILLENIUM=y | 1048 | CONFIG_FB_MATROX_MILLENIUM=y |
@@ -1029,6 +1068,7 @@ CONFIG_FB_3DFX=y | |||
1029 | CONFIG_FB_3DFX_ACCEL=y | 1068 | CONFIG_FB_3DFX_ACCEL=y |
1030 | # CONFIG_FB_VOODOO1 is not set | 1069 | # CONFIG_FB_VOODOO1 is not set |
1031 | # CONFIG_FB_TRIDENT is not set | 1070 | # CONFIG_FB_TRIDENT is not set |
1071 | # CONFIG_FB_S1D13XXX is not set | ||
1032 | # CONFIG_FB_VIRTUAL is not set | 1072 | # CONFIG_FB_VIRTUAL is not set |
1033 | 1073 | ||
1034 | # | 1074 | # |
@@ -1110,6 +1150,7 @@ CONFIG_SND_DUMMY=m | |||
1110 | # CONFIG_SND_RME96 is not set | 1150 | # CONFIG_SND_RME96 is not set |
1111 | # CONFIG_SND_RME9652 is not set | 1151 | # CONFIG_SND_RME9652 is not set |
1112 | # CONFIG_SND_HDSP is not set | 1152 | # CONFIG_SND_HDSP is not set |
1153 | # CONFIG_SND_HDSPM is not set | ||
1113 | # CONFIG_SND_TRIDENT is not set | 1154 | # CONFIG_SND_TRIDENT is not set |
1114 | # CONFIG_SND_YMFPCI is not set | 1155 | # CONFIG_SND_YMFPCI is not set |
1115 | # CONFIG_SND_ALS4000 is not set | 1156 | # CONFIG_SND_ALS4000 is not set |
@@ -1128,6 +1169,7 @@ CONFIG_SND_DUMMY=m | |||
1128 | # CONFIG_SND_VIA82XX is not set | 1169 | # CONFIG_SND_VIA82XX is not set |
1129 | # CONFIG_SND_VIA82XX_MODEM is not set | 1170 | # CONFIG_SND_VIA82XX_MODEM is not set |
1130 | # CONFIG_SND_VX222 is not set | 1171 | # CONFIG_SND_VX222 is not set |
1172 | # CONFIG_SND_HDA_INTEL is not set | ||
1131 | 1173 | ||
1132 | # | 1174 | # |
1133 | # ALSA PowerMac devices | 1175 | # ALSA PowerMac devices |
@@ -1152,6 +1194,8 @@ CONFIG_SND_USB_USX2Y=m | |||
1152 | # | 1194 | # |
1153 | # USB support | 1195 | # USB support |
1154 | # | 1196 | # |
1197 | CONFIG_USB_ARCH_HAS_HCD=y | ||
1198 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
1155 | CONFIG_USB=y | 1199 | CONFIG_USB=y |
1156 | # CONFIG_USB_DEBUG is not set | 1200 | # CONFIG_USB_DEBUG is not set |
1157 | 1201 | ||
@@ -1163,14 +1207,15 @@ CONFIG_USB_DEVICEFS=y | |||
1163 | CONFIG_USB_DYNAMIC_MINORS=y | 1207 | CONFIG_USB_DYNAMIC_MINORS=y |
1164 | CONFIG_USB_SUSPEND=y | 1208 | CONFIG_USB_SUSPEND=y |
1165 | # CONFIG_USB_OTG is not set | 1209 | # CONFIG_USB_OTG is not set |
1166 | CONFIG_USB_ARCH_HAS_HCD=y | ||
1167 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
1168 | 1210 | ||
1169 | # | 1211 | # |
1170 | # USB Host Controller Drivers | 1212 | # USB Host Controller Drivers |
1171 | # | 1213 | # |
1172 | # CONFIG_USB_EHCI_HCD is not set | 1214 | # CONFIG_USB_EHCI_HCD is not set |
1215 | # CONFIG_USB_ISP116X_HCD is not set | ||
1173 | CONFIG_USB_OHCI_HCD=y | 1216 | CONFIG_USB_OHCI_HCD=y |
1217 | # CONFIG_USB_OHCI_BIG_ENDIAN is not set | ||
1218 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
1174 | # CONFIG_USB_UHCI_HCD is not set | 1219 | # CONFIG_USB_UHCI_HCD is not set |
1175 | # CONFIG_USB_SL811_HCD is not set | 1220 | # CONFIG_USB_SL811_HCD is not set |
1176 | 1221 | ||
@@ -1197,12 +1242,15 @@ CONFIG_USB_HIDINPUT=y | |||
1197 | CONFIG_USB_HIDDEV=y | 1242 | CONFIG_USB_HIDDEV=y |
1198 | # CONFIG_USB_AIPTEK is not set | 1243 | # CONFIG_USB_AIPTEK is not set |
1199 | # CONFIG_USB_WACOM is not set | 1244 | # CONFIG_USB_WACOM is not set |
1245 | # CONFIG_USB_ACECAD is not set | ||
1200 | # CONFIG_USB_KBTAB is not set | 1246 | # CONFIG_USB_KBTAB is not set |
1201 | # CONFIG_USB_POWERMATE is not set | 1247 | # CONFIG_USB_POWERMATE is not set |
1202 | # CONFIG_USB_MTOUCH is not set | 1248 | # CONFIG_USB_MTOUCH is not set |
1249 | # CONFIG_USB_ITMTOUCH is not set | ||
1203 | # CONFIG_USB_EGALAX is not set | 1250 | # CONFIG_USB_EGALAX is not set |
1204 | # CONFIG_USB_XPAD is not set | 1251 | # CONFIG_USB_XPAD is not set |
1205 | # CONFIG_USB_ATI_REMOTE is not set | 1252 | # CONFIG_USB_ATI_REMOTE is not set |
1253 | # CONFIG_USB_KEYSPAN_REMOTE is not set | ||
1206 | 1254 | ||
1207 | # | 1255 | # |
1208 | # USB Imaging devices | 1256 | # USB Imaging devices |
@@ -1227,6 +1275,8 @@ CONFIG_USB_HIDDEV=y | |||
1227 | CONFIG_USB_PEGASUS=m | 1275 | CONFIG_USB_PEGASUS=m |
1228 | # CONFIG_USB_RTL8150 is not set | 1276 | # CONFIG_USB_RTL8150 is not set |
1229 | # CONFIG_USB_USBNET is not set | 1277 | # CONFIG_USB_USBNET is not set |
1278 | # CONFIG_USB_ZD1201 is not set | ||
1279 | # CONFIG_USB_MON is not set | ||
1230 | 1280 | ||
1231 | # | 1281 | # |
1232 | # USB port drivers | 1282 | # USB port drivers |
@@ -1237,9 +1287,11 @@ CONFIG_USB_PEGASUS=m | |||
1237 | # | 1287 | # |
1238 | CONFIG_USB_SERIAL=m | 1288 | CONFIG_USB_SERIAL=m |
1239 | # CONFIG_USB_SERIAL_GENERIC is not set | 1289 | # CONFIG_USB_SERIAL_GENERIC is not set |
1290 | # CONFIG_USB_SERIAL_AIRPRIME is not set | ||
1240 | # CONFIG_USB_SERIAL_BELKIN is not set | 1291 | # CONFIG_USB_SERIAL_BELKIN is not set |
1241 | # CONFIG_USB_SERIAL_WHITEHEAT is not set | 1292 | # CONFIG_USB_SERIAL_WHITEHEAT is not set |
1242 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set | 1293 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set |
1294 | # CONFIG_USB_SERIAL_CP2101 is not set | ||
1243 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set | 1295 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set |
1244 | # CONFIG_USB_SERIAL_EMPEG is not set | 1296 | # CONFIG_USB_SERIAL_EMPEG is not set |
1245 | # CONFIG_USB_SERIAL_FTDI_SIO is not set | 1297 | # CONFIG_USB_SERIAL_FTDI_SIO is not set |
@@ -1268,10 +1320,12 @@ CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y | |||
1268 | # CONFIG_USB_SERIAL_KOBIL_SCT is not set | 1320 | # CONFIG_USB_SERIAL_KOBIL_SCT is not set |
1269 | # CONFIG_USB_SERIAL_MCT_U232 is not set | 1321 | # CONFIG_USB_SERIAL_MCT_U232 is not set |
1270 | # CONFIG_USB_SERIAL_PL2303 is not set | 1322 | # CONFIG_USB_SERIAL_PL2303 is not set |
1323 | # CONFIG_USB_SERIAL_HP4X is not set | ||
1271 | # CONFIG_USB_SERIAL_SAFE is not set | 1324 | # CONFIG_USB_SERIAL_SAFE is not set |
1272 | # CONFIG_USB_SERIAL_TI is not set | 1325 | # CONFIG_USB_SERIAL_TI is not set |
1273 | # CONFIG_USB_SERIAL_CYBERJACK is not set | 1326 | # CONFIG_USB_SERIAL_CYBERJACK is not set |
1274 | # CONFIG_USB_SERIAL_XIRCOM is not set | 1327 | # CONFIG_USB_SERIAL_XIRCOM is not set |
1328 | # CONFIG_USB_SERIAL_OPTION is not set | ||
1275 | # CONFIG_USB_SERIAL_OMNINET is not set | 1329 | # CONFIG_USB_SERIAL_OMNINET is not set |
1276 | CONFIG_USB_EZUSB=y | 1330 | CONFIG_USB_EZUSB=y |
1277 | 1331 | ||
@@ -1289,10 +1343,11 @@ CONFIG_USB_EZUSB=y | |||
1289 | # CONFIG_USB_PHIDGETKIT is not set | 1343 | # CONFIG_USB_PHIDGETKIT is not set |
1290 | # CONFIG_USB_PHIDGETSERVO is not set | 1344 | # CONFIG_USB_PHIDGETSERVO is not set |
1291 | # CONFIG_USB_IDMOUSE is not set | 1345 | # CONFIG_USB_IDMOUSE is not set |
1346 | # CONFIG_USB_LD is not set | ||
1292 | # CONFIG_USB_TEST is not set | 1347 | # CONFIG_USB_TEST is not set |
1293 | 1348 | ||
1294 | # | 1349 | # |
1295 | # USB ATM/DSL drivers | 1350 | # USB DSL modem support |
1296 | # | 1351 | # |
1297 | 1352 | ||
1298 | # | 1353 | # |
@@ -1311,12 +1366,17 @@ CONFIG_USB_EZUSB=y | |||
1311 | # CONFIG_INFINIBAND is not set | 1366 | # CONFIG_INFINIBAND is not set |
1312 | 1367 | ||
1313 | # | 1368 | # |
1369 | # SN Devices | ||
1370 | # | ||
1371 | |||
1372 | # | ||
1314 | # File systems | 1373 | # File systems |
1315 | # | 1374 | # |
1316 | CONFIG_EXT2_FS=y | 1375 | CONFIG_EXT2_FS=y |
1317 | CONFIG_EXT2_FS_XATTR=y | 1376 | CONFIG_EXT2_FS_XATTR=y |
1318 | # CONFIG_EXT2_FS_POSIX_ACL is not set | 1377 | # CONFIG_EXT2_FS_POSIX_ACL is not set |
1319 | # CONFIG_EXT2_FS_SECURITY is not set | 1378 | # CONFIG_EXT2_FS_SECURITY is not set |
1379 | # CONFIG_EXT2_FS_XIP is not set | ||
1320 | CONFIG_EXT3_FS=y | 1380 | CONFIG_EXT3_FS=y |
1321 | CONFIG_EXT3_FS_XATTR=y | 1381 | CONFIG_EXT3_FS_XATTR=y |
1322 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1382 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
@@ -1326,6 +1386,7 @@ CONFIG_JBD=y | |||
1326 | CONFIG_FS_MBCACHE=y | 1386 | CONFIG_FS_MBCACHE=y |
1327 | # CONFIG_REISERFS_FS is not set | 1387 | # CONFIG_REISERFS_FS is not set |
1328 | # CONFIG_JFS_FS is not set | 1388 | # CONFIG_JFS_FS is not set |
1389 | CONFIG_FS_POSIX_ACL=y | ||
1329 | 1390 | ||
1330 | # | 1391 | # |
1331 | # XFS support | 1392 | # XFS support |
@@ -1333,6 +1394,7 @@ CONFIG_FS_MBCACHE=y | |||
1333 | # CONFIG_XFS_FS is not set | 1394 | # CONFIG_XFS_FS is not set |
1334 | # CONFIG_MINIX_FS is not set | 1395 | # CONFIG_MINIX_FS is not set |
1335 | # CONFIG_ROMFS_FS is not set | 1396 | # CONFIG_ROMFS_FS is not set |
1397 | CONFIG_INOTIFY=y | ||
1336 | # CONFIG_QUOTA is not set | 1398 | # CONFIG_QUOTA is not set |
1337 | CONFIG_DNOTIFY=y | 1399 | CONFIG_DNOTIFY=y |
1338 | # CONFIG_AUTOFS_FS is not set | 1400 | # CONFIG_AUTOFS_FS is not set |
@@ -1363,7 +1425,6 @@ CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | |||
1363 | CONFIG_PROC_FS=y | 1425 | CONFIG_PROC_FS=y |
1364 | CONFIG_PROC_KCORE=y | 1426 | CONFIG_PROC_KCORE=y |
1365 | CONFIG_SYSFS=y | 1427 | CONFIG_SYSFS=y |
1366 | # CONFIG_DEVFS_FS is not set | ||
1367 | CONFIG_DEVPTS_FS_XATTR=y | 1428 | CONFIG_DEVPTS_FS_XATTR=y |
1368 | CONFIG_DEVPTS_FS_SECURITY=y | 1429 | CONFIG_DEVPTS_FS_SECURITY=y |
1369 | CONFIG_TMPFS=y | 1430 | CONFIG_TMPFS=y |
@@ -1394,15 +1455,20 @@ CONFIG_CRAMFS=m | |||
1394 | # | 1455 | # |
1395 | CONFIG_NFS_FS=y | 1456 | CONFIG_NFS_FS=y |
1396 | CONFIG_NFS_V3=y | 1457 | CONFIG_NFS_V3=y |
1458 | CONFIG_NFS_V3_ACL=y | ||
1397 | # CONFIG_NFS_V4 is not set | 1459 | # CONFIG_NFS_V4 is not set |
1398 | # CONFIG_NFS_DIRECTIO is not set | 1460 | # CONFIG_NFS_DIRECTIO is not set |
1399 | CONFIG_NFSD=y | 1461 | CONFIG_NFSD=y |
1462 | CONFIG_NFSD_V2_ACL=y | ||
1400 | CONFIG_NFSD_V3=y | 1463 | CONFIG_NFSD_V3=y |
1464 | CONFIG_NFSD_V3_ACL=y | ||
1401 | # CONFIG_NFSD_V4 is not set | 1465 | # CONFIG_NFSD_V4 is not set |
1402 | CONFIG_NFSD_TCP=y | 1466 | CONFIG_NFSD_TCP=y |
1403 | CONFIG_LOCKD=y | 1467 | CONFIG_LOCKD=y |
1404 | CONFIG_LOCKD_V4=y | 1468 | CONFIG_LOCKD_V4=y |
1405 | CONFIG_EXPORTFS=y | 1469 | CONFIG_EXPORTFS=y |
1470 | CONFIG_NFS_ACL_SUPPORT=y | ||
1471 | CONFIG_NFS_COMMON=y | ||
1406 | CONFIG_SUNRPC=y | 1472 | CONFIG_SUNRPC=y |
1407 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1473 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
1408 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1474 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
@@ -1494,8 +1560,10 @@ CONFIG_ZLIB_DEFLATE=y | |||
1494 | # | 1560 | # |
1495 | # Kernel hacking | 1561 | # Kernel hacking |
1496 | # | 1562 | # |
1563 | # CONFIG_PRINTK_TIME is not set | ||
1497 | CONFIG_DEBUG_KERNEL=y | 1564 | CONFIG_DEBUG_KERNEL=y |
1498 | CONFIG_MAGIC_SYSRQ=y | 1565 | CONFIG_MAGIC_SYSRQ=y |
1566 | CONFIG_LOG_BUF_SHIFT=16 | ||
1499 | # CONFIG_SCHEDSTATS is not set | 1567 | # CONFIG_SCHEDSTATS is not set |
1500 | # CONFIG_DEBUG_SLAB is not set | 1568 | # CONFIG_DEBUG_SLAB is not set |
1501 | # CONFIG_DEBUG_SPINLOCK is not set | 1569 | # CONFIG_DEBUG_SPINLOCK is not set |
diff --git a/arch/ppc/configs/radstone_ppc7d_defconfig b/arch/ppc/configs/radstone_ppc7d_defconfig index 7f6467e77949..ca4d1fd0ca05 100644 --- a/arch/ppc/configs/radstone_ppc7d_defconfig +++ b/arch/ppc/configs/radstone_ppc7d_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.11 | 3 | # Linux kernel version: 2.6.13-rc3 |
4 | # Tue Mar 15 14:31:19 2005 | 4 | # Tue Jul 26 00:02:09 2005 |
5 | # | 5 | # |
6 | CONFIG_MMU=y | 6 | CONFIG_MMU=y |
7 | CONFIG_GENERIC_HARDIRQS=y | 7 | CONFIG_GENERIC_HARDIRQS=y |
@@ -11,6 +11,7 @@ CONFIG_HAVE_DEC_LOCK=y | |||
11 | CONFIG_PPC=y | 11 | CONFIG_PPC=y |
12 | CONFIG_PPC32=y | 12 | CONFIG_PPC32=y |
13 | CONFIG_GENERIC_NVRAM=y | 13 | CONFIG_GENERIC_NVRAM=y |
14 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
14 | 15 | ||
15 | # | 16 | # |
16 | # Code maturity level options | 17 | # Code maturity level options |
@@ -18,6 +19,7 @@ CONFIG_GENERIC_NVRAM=y | |||
18 | CONFIG_EXPERIMENTAL=y | 19 | CONFIG_EXPERIMENTAL=y |
19 | CONFIG_CLEAN_COMPILE=y | 20 | CONFIG_CLEAN_COMPILE=y |
20 | CONFIG_BROKEN_ON_SMP=y | 21 | CONFIG_BROKEN_ON_SMP=y |
22 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
21 | 23 | ||
22 | # | 24 | # |
23 | # General setup | 25 | # General setup |
@@ -35,6 +37,8 @@ CONFIG_KOBJECT_UEVENT=y | |||
35 | CONFIG_EMBEDDED=y | 37 | CONFIG_EMBEDDED=y |
36 | CONFIG_KALLSYMS=y | 38 | CONFIG_KALLSYMS=y |
37 | CONFIG_KALLSYMS_EXTRA_PASS=y | 39 | CONFIG_KALLSYMS_EXTRA_PASS=y |
40 | CONFIG_PRINTK=y | ||
41 | CONFIG_BUG=y | ||
38 | CONFIG_BASE_FULL=y | 42 | CONFIG_BASE_FULL=y |
39 | CONFIG_FUTEX=y | 43 | CONFIG_FUTEX=y |
40 | CONFIG_EPOLL=y | 44 | CONFIG_EPOLL=y |
@@ -67,9 +71,12 @@ CONFIG_6xx=y | |||
67 | # CONFIG_POWER3 is not set | 71 | # CONFIG_POWER3 is not set |
68 | # CONFIG_POWER4 is not set | 72 | # CONFIG_POWER4 is not set |
69 | # CONFIG_8xx is not set | 73 | # CONFIG_8xx is not set |
74 | # CONFIG_E200 is not set | ||
70 | # CONFIG_E500 is not set | 75 | # CONFIG_E500 is not set |
76 | CONFIG_PPC_FPU=y | ||
71 | CONFIG_ALTIVEC=y | 77 | CONFIG_ALTIVEC=y |
72 | # CONFIG_TAU is not set | 78 | # CONFIG_TAU is not set |
79 | # CONFIG_KEXEC is not set | ||
73 | # CONFIG_CPU_FREQ is not set | 80 | # CONFIG_CPU_FREQ is not set |
74 | CONFIG_PPC_GEN550=y | 81 | CONFIG_PPC_GEN550=y |
75 | # CONFIG_PM is not set | 82 | # CONFIG_PM is not set |
@@ -84,21 +91,18 @@ CONFIG_PPC_STD_MMU=y | |||
84 | # CONFIG_KATANA is not set | 91 | # CONFIG_KATANA is not set |
85 | # CONFIG_WILLOW is not set | 92 | # CONFIG_WILLOW is not set |
86 | # CONFIG_CPCI690 is not set | 93 | # CONFIG_CPCI690 is not set |
87 | # CONFIG_PCORE is not set | ||
88 | # CONFIG_POWERPMC250 is not set | 94 | # CONFIG_POWERPMC250 is not set |
89 | # CONFIG_CHESTNUT is not set | 95 | # CONFIG_CHESTNUT is not set |
90 | # CONFIG_SPRUCE is not set | 96 | # CONFIG_SPRUCE is not set |
97 | # CONFIG_HDPU is not set | ||
91 | # CONFIG_EV64260 is not set | 98 | # CONFIG_EV64260 is not set |
92 | # CONFIG_LOPEC is not set | 99 | # CONFIG_LOPEC is not set |
93 | # CONFIG_MCPN765 is not set | ||
94 | # CONFIG_MVME5100 is not set | 100 | # CONFIG_MVME5100 is not set |
95 | # CONFIG_PPLUS is not set | 101 | # CONFIG_PPLUS is not set |
96 | # CONFIG_PRPMC750 is not set | 102 | # CONFIG_PRPMC750 is not set |
97 | # CONFIG_PRPMC800 is not set | 103 | # CONFIG_PRPMC800 is not set |
98 | # CONFIG_SANDPOINT is not set | 104 | # CONFIG_SANDPOINT is not set |
99 | CONFIG_RADSTONE_PPC7D=y | 105 | CONFIG_RADSTONE_PPC7D=y |
100 | # CONFIG_ADIR is not set | ||
101 | # CONFIG_K2 is not set | ||
102 | # CONFIG_PAL4 is not set | 106 | # CONFIG_PAL4 is not set |
103 | # CONFIG_GEMINI is not set | 107 | # CONFIG_GEMINI is not set |
104 | # CONFIG_EST8260 is not set | 108 | # CONFIG_EST8260 is not set |
@@ -121,10 +125,18 @@ CONFIG_MV64X60_NEW_BASE=0xfef00000 | |||
121 | # CONFIG_SMP is not set | 125 | # CONFIG_SMP is not set |
122 | # CONFIG_PREEMPT is not set | 126 | # CONFIG_PREEMPT is not set |
123 | # CONFIG_HIGHMEM is not set | 127 | # CONFIG_HIGHMEM is not set |
128 | CONFIG_SELECT_MEMORY_MODEL=y | ||
129 | CONFIG_FLATMEM_MANUAL=y | ||
130 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
131 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
132 | CONFIG_FLATMEM=y | ||
133 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
124 | CONFIG_BINFMT_ELF=y | 134 | CONFIG_BINFMT_ELF=y |
125 | CONFIG_BINFMT_MISC=y | 135 | CONFIG_BINFMT_MISC=y |
126 | CONFIG_CMDLINE_BOOL=y | 136 | CONFIG_CMDLINE_BOOL=y |
127 | CONFIG_CMDLINE="console=ttyS0,9600" | 137 | CONFIG_CMDLINE="console=ttyS0,9600" |
138 | CONFIG_SECCOMP=y | ||
139 | CONFIG_ISA_DMA_API=y | ||
128 | 140 | ||
129 | # | 141 | # |
130 | # Bus options | 142 | # Bus options |
@@ -155,6 +167,69 @@ CONFIG_TASK_SIZE=0x80000000 | |||
155 | CONFIG_BOOT_LOAD=0x00800000 | 167 | CONFIG_BOOT_LOAD=0x00800000 |
156 | 168 | ||
157 | # | 169 | # |
170 | # Networking | ||
171 | # | ||
172 | CONFIG_NET=y | ||
173 | |||
174 | # | ||
175 | # Networking options | ||
176 | # | ||
177 | CONFIG_PACKET=y | ||
178 | # CONFIG_PACKET_MMAP is not set | ||
179 | CONFIG_UNIX=y | ||
180 | # CONFIG_NET_KEY is not set | ||
181 | CONFIG_INET=y | ||
182 | CONFIG_IP_MULTICAST=y | ||
183 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
184 | CONFIG_IP_FIB_HASH=y | ||
185 | CONFIG_IP_PNP=y | ||
186 | CONFIG_IP_PNP_DHCP=y | ||
187 | CONFIG_IP_PNP_BOOTP=y | ||
188 | # CONFIG_IP_PNP_RARP is not set | ||
189 | # CONFIG_NET_IPIP is not set | ||
190 | # CONFIG_NET_IPGRE is not set | ||
191 | # CONFIG_IP_MROUTE is not set | ||
192 | # CONFIG_ARPD is not set | ||
193 | CONFIG_SYN_COOKIES=y | ||
194 | # CONFIG_INET_AH is not set | ||
195 | # CONFIG_INET_ESP is not set | ||
196 | # CONFIG_INET_IPCOMP is not set | ||
197 | # CONFIG_INET_TUNNEL is not set | ||
198 | CONFIG_IP_TCPDIAG=y | ||
199 | # CONFIG_IP_TCPDIAG_IPV6 is not set | ||
200 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
201 | CONFIG_TCP_CONG_BIC=y | ||
202 | # CONFIG_IPV6 is not set | ||
203 | # CONFIG_NETFILTER is not set | ||
204 | |||
205 | # | ||
206 | # SCTP Configuration (EXPERIMENTAL) | ||
207 | # | ||
208 | # CONFIG_IP_SCTP is not set | ||
209 | # CONFIG_ATM is not set | ||
210 | CONFIG_BRIDGE=y | ||
211 | # CONFIG_VLAN_8021Q is not set | ||
212 | # CONFIG_DECNET is not set | ||
213 | # CONFIG_LLC2 is not set | ||
214 | # CONFIG_IPX is not set | ||
215 | # CONFIG_ATALK is not set | ||
216 | # CONFIG_X25 is not set | ||
217 | # CONFIG_LAPB is not set | ||
218 | # CONFIG_NET_DIVERT is not set | ||
219 | # CONFIG_ECONET is not set | ||
220 | # CONFIG_WAN_ROUTER is not set | ||
221 | # CONFIG_NET_SCHED is not set | ||
222 | # CONFIG_NET_CLS_ROUTE is not set | ||
223 | |||
224 | # | ||
225 | # Network testing | ||
226 | # | ||
227 | # CONFIG_NET_PKTGEN is not set | ||
228 | # CONFIG_HAMRADIO is not set | ||
229 | # CONFIG_IRDA is not set | ||
230 | # CONFIG_BT is not set | ||
231 | |||
232 | # | ||
158 | # Device Drivers | 233 | # Device Drivers |
159 | # | 234 | # |
160 | 235 | ||
@@ -203,6 +278,7 @@ CONFIG_MTD_CFI_I1=y | |||
203 | CONFIG_MTD_CFI_I2=y | 278 | CONFIG_MTD_CFI_I2=y |
204 | # CONFIG_MTD_CFI_I4 is not set | 279 | # CONFIG_MTD_CFI_I4 is not set |
205 | # CONFIG_MTD_CFI_I8 is not set | 280 | # CONFIG_MTD_CFI_I8 is not set |
281 | # CONFIG_MTD_OTP is not set | ||
206 | CONFIG_MTD_CFI_INTELEXT=y | 282 | CONFIG_MTD_CFI_INTELEXT=y |
207 | # CONFIG_MTD_CFI_AMDSTD is not set | 283 | # CONFIG_MTD_CFI_AMDSTD is not set |
208 | # CONFIG_MTD_CFI_STAA is not set | 284 | # CONFIG_MTD_CFI_STAA is not set |
@@ -210,13 +286,13 @@ CONFIG_MTD_CFI_UTIL=y | |||
210 | # CONFIG_MTD_RAM is not set | 286 | # CONFIG_MTD_RAM is not set |
211 | # CONFIG_MTD_ROM is not set | 287 | # CONFIG_MTD_ROM is not set |
212 | # CONFIG_MTD_ABSENT is not set | 288 | # CONFIG_MTD_ABSENT is not set |
213 | # CONFIG_MTD_XIP is not set | ||
214 | 289 | ||
215 | # | 290 | # |
216 | # Mapping drivers for chip access | 291 | # Mapping drivers for chip access |
217 | # | 292 | # |
218 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 293 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
219 | # CONFIG_MTD_PHYSMAP is not set | 294 | # CONFIG_MTD_PHYSMAP is not set |
295 | # CONFIG_MTD_PLATRAM is not set | ||
220 | 296 | ||
221 | # | 297 | # |
222 | # Self-contained MTD device drivers | 298 | # Self-contained MTD device drivers |
@@ -299,6 +375,7 @@ CONFIG_BLK_DEV_SD=y | |||
299 | CONFIG_BLK_DEV_SR=y | 375 | CONFIG_BLK_DEV_SR=y |
300 | CONFIG_BLK_DEV_SR_VENDOR=y | 376 | CONFIG_BLK_DEV_SR_VENDOR=y |
301 | CONFIG_CHR_DEV_SG=y | 377 | CONFIG_CHR_DEV_SG=y |
378 | # CONFIG_CHR_DEV_SCH is not set | ||
302 | 379 | ||
303 | # | 380 | # |
304 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | 381 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs |
@@ -331,7 +408,6 @@ CONFIG_SCSI_SPI_ATTRS=y | |||
331 | # CONFIG_SCSI_BUSLOGIC is not set | 408 | # CONFIG_SCSI_BUSLOGIC is not set |
332 | # CONFIG_SCSI_DMX3191D is not set | 409 | # CONFIG_SCSI_DMX3191D is not set |
333 | # CONFIG_SCSI_EATA is not set | 410 | # CONFIG_SCSI_EATA is not set |
334 | # CONFIG_SCSI_EATA_PIO is not set | ||
335 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 411 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
336 | # CONFIG_SCSI_GDTH is not set | 412 | # CONFIG_SCSI_GDTH is not set |
337 | # CONFIG_SCSI_IPS is not set | 413 | # CONFIG_SCSI_IPS is not set |
@@ -343,7 +419,6 @@ CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 | |||
343 | CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 | 419 | CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 |
344 | # CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set | 420 | # CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set |
345 | # CONFIG_SCSI_IPR is not set | 421 | # CONFIG_SCSI_IPR is not set |
346 | # CONFIG_SCSI_QLOGIC_ISP is not set | ||
347 | # CONFIG_SCSI_QLOGIC_FC is not set | 422 | # CONFIG_SCSI_QLOGIC_FC is not set |
348 | # CONFIG_SCSI_QLOGIC_1280 is not set | 423 | # CONFIG_SCSI_QLOGIC_1280 is not set |
349 | CONFIG_SCSI_QLA2XXX=y | 424 | CONFIG_SCSI_QLA2XXX=y |
@@ -352,6 +427,7 @@ CONFIG_SCSI_QLA2XXX=y | |||
352 | # CONFIG_SCSI_QLA2300 is not set | 427 | # CONFIG_SCSI_QLA2300 is not set |
353 | # CONFIG_SCSI_QLA2322 is not set | 428 | # CONFIG_SCSI_QLA2322 is not set |
354 | # CONFIG_SCSI_QLA6312 is not set | 429 | # CONFIG_SCSI_QLA6312 is not set |
430 | # CONFIG_SCSI_LPFC is not set | ||
355 | # CONFIG_SCSI_DC395x is not set | 431 | # CONFIG_SCSI_DC395x is not set |
356 | # CONFIG_SCSI_DC390T is not set | 432 | # CONFIG_SCSI_DC390T is not set |
357 | # CONFIG_SCSI_NSP32 is not set | 433 | # CONFIG_SCSI_NSP32 is not set |
@@ -366,6 +442,8 @@ CONFIG_SCSI_QLA2XXX=y | |||
366 | # Fusion MPT device support | 442 | # Fusion MPT device support |
367 | # | 443 | # |
368 | # CONFIG_FUSION is not set | 444 | # CONFIG_FUSION is not set |
445 | # CONFIG_FUSION_SPI is not set | ||
446 | # CONFIG_FUSION_FC is not set | ||
369 | 447 | ||
370 | # | 448 | # |
371 | # IEEE 1394 (FireWire) support | 449 | # IEEE 1394 (FireWire) support |
@@ -382,71 +460,8 @@ CONFIG_SCSI_QLA2XXX=y | |||
382 | # | 460 | # |
383 | 461 | ||
384 | # | 462 | # |
385 | # Networking support | 463 | # Network device support |
386 | # | 464 | # |
387 | CONFIG_NET=y | ||
388 | |||
389 | # | ||
390 | # Networking options | ||
391 | # | ||
392 | CONFIG_PACKET=y | ||
393 | # CONFIG_PACKET_MMAP is not set | ||
394 | # CONFIG_NETLINK_DEV is not set | ||
395 | CONFIG_UNIX=y | ||
396 | # CONFIG_NET_KEY is not set | ||
397 | CONFIG_INET=y | ||
398 | CONFIG_IP_MULTICAST=y | ||
399 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
400 | CONFIG_IP_PNP=y | ||
401 | CONFIG_IP_PNP_DHCP=y | ||
402 | CONFIG_IP_PNP_BOOTP=y | ||
403 | # CONFIG_IP_PNP_RARP is not set | ||
404 | # CONFIG_NET_IPIP is not set | ||
405 | # CONFIG_NET_IPGRE is not set | ||
406 | # CONFIG_IP_MROUTE is not set | ||
407 | # CONFIG_ARPD is not set | ||
408 | CONFIG_SYN_COOKIES=y | ||
409 | # CONFIG_INET_AH is not set | ||
410 | # CONFIG_INET_ESP is not set | ||
411 | # CONFIG_INET_IPCOMP is not set | ||
412 | # CONFIG_INET_TUNNEL is not set | ||
413 | CONFIG_IP_TCPDIAG=y | ||
414 | # CONFIG_IP_TCPDIAG_IPV6 is not set | ||
415 | # CONFIG_IPV6 is not set | ||
416 | # CONFIG_NETFILTER is not set | ||
417 | |||
418 | # | ||
419 | # SCTP Configuration (EXPERIMENTAL) | ||
420 | # | ||
421 | # CONFIG_IP_SCTP is not set | ||
422 | # CONFIG_ATM is not set | ||
423 | CONFIG_BRIDGE=y | ||
424 | # CONFIG_VLAN_8021Q is not set | ||
425 | # CONFIG_DECNET is not set | ||
426 | # CONFIG_LLC2 is not set | ||
427 | # CONFIG_IPX is not set | ||
428 | # CONFIG_ATALK is not set | ||
429 | # CONFIG_X25 is not set | ||
430 | # CONFIG_LAPB is not set | ||
431 | # CONFIG_NET_DIVERT is not set | ||
432 | # CONFIG_ECONET is not set | ||
433 | # CONFIG_WAN_ROUTER is not set | ||
434 | |||
435 | # | ||
436 | # QoS and/or fair queueing | ||
437 | # | ||
438 | # CONFIG_NET_SCHED is not set | ||
439 | # CONFIG_NET_CLS_ROUTE is not set | ||
440 | |||
441 | # | ||
442 | # Network testing | ||
443 | # | ||
444 | # CONFIG_NET_PKTGEN is not set | ||
445 | # CONFIG_NETPOLL is not set | ||
446 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
447 | # CONFIG_HAMRADIO is not set | ||
448 | # CONFIG_IRDA is not set | ||
449 | # CONFIG_BT is not set | ||
450 | CONFIG_NETDEVICES=y | 465 | CONFIG_NETDEVICES=y |
451 | # CONFIG_DUMMY is not set | 466 | # CONFIG_DUMMY is not set |
452 | # CONFIG_BONDING is not set | 467 | # CONFIG_BONDING is not set |
@@ -511,9 +526,11 @@ CONFIG_E100=y | |||
511 | # CONFIG_YELLOWFIN is not set | 526 | # CONFIG_YELLOWFIN is not set |
512 | CONFIG_R8169=y | 527 | CONFIG_R8169=y |
513 | CONFIG_R8169_NAPI=y | 528 | CONFIG_R8169_NAPI=y |
529 | # CONFIG_SKGE is not set | ||
514 | CONFIG_SK98LIN=y | 530 | CONFIG_SK98LIN=y |
515 | # CONFIG_VIA_VELOCITY is not set | 531 | # CONFIG_VIA_VELOCITY is not set |
516 | CONFIG_TIGON3=y | 532 | CONFIG_TIGON3=y |
533 | # CONFIG_BNX2 is not set | ||
517 | CONFIG_MV643XX_ETH=y | 534 | CONFIG_MV643XX_ETH=y |
518 | CONFIG_MV643XX_ETH_0=y | 535 | CONFIG_MV643XX_ETH_0=y |
519 | CONFIG_MV643XX_ETH_1=y | 536 | CONFIG_MV643XX_ETH_1=y |
@@ -546,6 +563,8 @@ CONFIG_MV643XX_ETH_1=y | |||
546 | # CONFIG_NET_FC is not set | 563 | # CONFIG_NET_FC is not set |
547 | # CONFIG_SHAPER is not set | 564 | # CONFIG_SHAPER is not set |
548 | # CONFIG_NETCONSOLE is not set | 565 | # CONFIG_NETCONSOLE is not set |
566 | # CONFIG_NETPOLL is not set | ||
567 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
549 | 568 | ||
550 | # | 569 | # |
551 | # ISDN subsystem | 570 | # ISDN subsystem |
@@ -598,7 +617,6 @@ CONFIG_SERIO_SERPORT=y | |||
598 | CONFIG_SERIO_LIBPS2=y | 617 | CONFIG_SERIO_LIBPS2=y |
599 | # CONFIG_SERIO_RAW is not set | 618 | # CONFIG_SERIO_RAW is not set |
600 | # CONFIG_GAMEPORT is not set | 619 | # CONFIG_GAMEPORT is not set |
601 | CONFIG_SOUND_GAMEPORT=y | ||
602 | 620 | ||
603 | # | 621 | # |
604 | # Character devices | 622 | # Character devices |
@@ -623,6 +641,7 @@ CONFIG_SERIAL_MPSC=y | |||
623 | # CONFIG_SERIAL_MPSC_CONSOLE is not set | 641 | # CONFIG_SERIAL_MPSC_CONSOLE is not set |
624 | CONFIG_SERIAL_CORE=y | 642 | CONFIG_SERIAL_CORE=y |
625 | CONFIG_SERIAL_CORE_CONSOLE=y | 643 | CONFIG_SERIAL_CORE_CONSOLE=y |
644 | # CONFIG_SERIAL_JSM is not set | ||
626 | CONFIG_UNIX98_PTYS=y | 645 | CONFIG_UNIX98_PTYS=y |
627 | CONFIG_LEGACY_PTYS=y | 646 | CONFIG_LEGACY_PTYS=y |
628 | CONFIG_LEGACY_PTY_COUNT=256 | 647 | CONFIG_LEGACY_PTY_COUNT=256 |
@@ -690,11 +709,11 @@ CONFIG_I2C_CHARDEV=y | |||
690 | # CONFIG_I2C_AMD8111 is not set | 709 | # CONFIG_I2C_AMD8111 is not set |
691 | # CONFIG_I2C_I801 is not set | 710 | # CONFIG_I2C_I801 is not set |
692 | # CONFIG_I2C_I810 is not set | 711 | # CONFIG_I2C_I810 is not set |
712 | # CONFIG_I2C_PIIX4 is not set | ||
693 | # CONFIG_I2C_ISA is not set | 713 | # CONFIG_I2C_ISA is not set |
694 | # CONFIG_I2C_MPC is not set | 714 | # CONFIG_I2C_MPC is not set |
695 | # CONFIG_I2C_NFORCE2 is not set | 715 | # CONFIG_I2C_NFORCE2 is not set |
696 | # CONFIG_I2C_PARPORT_LIGHT is not set | 716 | # CONFIG_I2C_PARPORT_LIGHT is not set |
697 | # CONFIG_I2C_PIIX4 is not set | ||
698 | # CONFIG_I2C_PROSAVAGE is not set | 717 | # CONFIG_I2C_PROSAVAGE is not set |
699 | # CONFIG_I2C_SAVAGE4 is not set | 718 | # CONFIG_I2C_SAVAGE4 is not set |
700 | # CONFIG_SCx200_ACB is not set | 719 | # CONFIG_SCx200_ACB is not set |
@@ -707,16 +726,41 @@ CONFIG_I2C_CHARDEV=y | |||
707 | # CONFIG_I2C_VOODOO3 is not set | 726 | # CONFIG_I2C_VOODOO3 is not set |
708 | # CONFIG_I2C_PCA_ISA is not set | 727 | # CONFIG_I2C_PCA_ISA is not set |
709 | CONFIG_I2C_MV64XXX=y | 728 | CONFIG_I2C_MV64XXX=y |
729 | CONFIG_I2C_SENSOR=y | ||
710 | 730 | ||
711 | # | 731 | # |
712 | # Hardware Sensors Chip support | 732 | # Miscellaneous I2C Chip support |
713 | # | 733 | # |
714 | CONFIG_I2C_SENSOR=y | 734 | CONFIG_SENSORS_DS1337=y |
735 | # CONFIG_SENSORS_DS1374 is not set | ||
736 | # CONFIG_SENSORS_EEPROM is not set | ||
737 | # CONFIG_SENSORS_PCF8574 is not set | ||
738 | # CONFIG_SENSORS_PCA9539 is not set | ||
739 | # CONFIG_SENSORS_PCF8591 is not set | ||
740 | # CONFIG_SENSORS_RTC8564 is not set | ||
741 | # CONFIG_SENSORS_M41T00 is not set | ||
742 | # CONFIG_SENSORS_MAX6875 is not set | ||
743 | # CONFIG_I2C_DEBUG_CORE is not set | ||
744 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
745 | # CONFIG_I2C_DEBUG_BUS is not set | ||
746 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
747 | |||
748 | # | ||
749 | # Dallas's 1-wire bus | ||
750 | # | ||
751 | # CONFIG_W1 is not set | ||
752 | |||
753 | # | ||
754 | # Hardware Monitoring support | ||
755 | # | ||
756 | CONFIG_HWMON=y | ||
715 | # CONFIG_SENSORS_ADM1021 is not set | 757 | # CONFIG_SENSORS_ADM1021 is not set |
716 | # CONFIG_SENSORS_ADM1025 is not set | 758 | # CONFIG_SENSORS_ADM1025 is not set |
717 | # CONFIG_SENSORS_ADM1026 is not set | 759 | # CONFIG_SENSORS_ADM1026 is not set |
718 | # CONFIG_SENSORS_ADM1031 is not set | 760 | # CONFIG_SENSORS_ADM1031 is not set |
761 | # CONFIG_SENSORS_ADM9240 is not set | ||
719 | # CONFIG_SENSORS_ASB100 is not set | 762 | # CONFIG_SENSORS_ASB100 is not set |
763 | # CONFIG_SENSORS_ATXP1 is not set | ||
720 | # CONFIG_SENSORS_DS1621 is not set | 764 | # CONFIG_SENSORS_DS1621 is not set |
721 | # CONFIG_SENSORS_FSCHER is not set | 765 | # CONFIG_SENSORS_FSCHER is not set |
722 | # CONFIG_SENSORS_FSCPOS is not set | 766 | # CONFIG_SENSORS_FSCPOS is not set |
@@ -732,33 +776,18 @@ CONFIG_I2C_SENSOR=y | |||
732 | # CONFIG_SENSORS_LM85 is not set | 776 | # CONFIG_SENSORS_LM85 is not set |
733 | # CONFIG_SENSORS_LM87 is not set | 777 | # CONFIG_SENSORS_LM87 is not set |
734 | CONFIG_SENSORS_LM90=y | 778 | CONFIG_SENSORS_LM90=y |
779 | # CONFIG_SENSORS_LM92 is not set | ||
735 | # CONFIG_SENSORS_MAX1619 is not set | 780 | # CONFIG_SENSORS_MAX1619 is not set |
736 | # CONFIG_SENSORS_PC87360 is not set | 781 | # CONFIG_SENSORS_PC87360 is not set |
737 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
738 | # CONFIG_SENSORS_SIS5595 is not set | 782 | # CONFIG_SENSORS_SIS5595 is not set |
739 | # CONFIG_SENSORS_SMSC47M1 is not set | 783 | # CONFIG_SENSORS_SMSC47M1 is not set |
784 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
740 | # CONFIG_SENSORS_VIA686A is not set | 785 | # CONFIG_SENSORS_VIA686A is not set |
741 | # CONFIG_SENSORS_W83781D is not set | 786 | # CONFIG_SENSORS_W83781D is not set |
742 | # CONFIG_SENSORS_W83L785TS is not set | 787 | # CONFIG_SENSORS_W83L785TS is not set |
743 | # CONFIG_SENSORS_W83627HF is not set | 788 | # CONFIG_SENSORS_W83627HF is not set |
744 | 789 | # CONFIG_SENSORS_W83627EHF is not set | |
745 | # | 790 | # CONFIG_HWMON_DEBUG_CHIP is not set |
746 | # Other I2C Chip support | ||
747 | # | ||
748 | # CONFIG_SENSORS_EEPROM is not set | ||
749 | # CONFIG_SENSORS_PCF8574 is not set | ||
750 | # CONFIG_SENSORS_PCF8591 is not set | ||
751 | # CONFIG_SENSORS_RTC8564 is not set | ||
752 | # CONFIG_SENSORS_M41T00 is not set | ||
753 | # CONFIG_I2C_DEBUG_CORE is not set | ||
754 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
755 | # CONFIG_I2C_DEBUG_BUS is not set | ||
756 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
757 | |||
758 | # | ||
759 | # Dallas's 1-wire bus | ||
760 | # | ||
761 | # CONFIG_W1 is not set | ||
762 | 791 | ||
763 | # | 792 | # |
764 | # Misc devices | 793 | # Misc devices |
@@ -813,14 +842,20 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
813 | # CONFIG_INFINIBAND is not set | 842 | # CONFIG_INFINIBAND is not set |
814 | 843 | ||
815 | # | 844 | # |
845 | # SN Devices | ||
846 | # | ||
847 | |||
848 | # | ||
816 | # File systems | 849 | # File systems |
817 | # | 850 | # |
818 | CONFIG_EXT2_FS=y | 851 | CONFIG_EXT2_FS=y |
819 | # CONFIG_EXT2_FS_XATTR is not set | 852 | # CONFIG_EXT2_FS_XATTR is not set |
853 | # CONFIG_EXT2_FS_XIP is not set | ||
820 | # CONFIG_EXT3_FS is not set | 854 | # CONFIG_EXT3_FS is not set |
821 | # CONFIG_JBD is not set | 855 | # CONFIG_JBD is not set |
822 | # CONFIG_REISERFS_FS is not set | 856 | # CONFIG_REISERFS_FS is not set |
823 | # CONFIG_JFS_FS is not set | 857 | # CONFIG_JFS_FS is not set |
858 | # CONFIG_FS_POSIX_ACL is not set | ||
824 | 859 | ||
825 | # | 860 | # |
826 | # XFS support | 861 | # XFS support |
@@ -828,6 +863,7 @@ CONFIG_EXT2_FS=y | |||
828 | # CONFIG_XFS_FS is not set | 863 | # CONFIG_XFS_FS is not set |
829 | # CONFIG_MINIX_FS is not set | 864 | # CONFIG_MINIX_FS is not set |
830 | # CONFIG_ROMFS_FS is not set | 865 | # CONFIG_ROMFS_FS is not set |
866 | CONFIG_INOTIFY=y | ||
831 | # CONFIG_QUOTA is not set | 867 | # CONFIG_QUOTA is not set |
832 | CONFIG_DNOTIFY=y | 868 | CONFIG_DNOTIFY=y |
833 | # CONFIG_AUTOFS_FS is not set | 869 | # CONFIG_AUTOFS_FS is not set |
@@ -854,7 +890,6 @@ CONFIG_ISO9660_FS=y | |||
854 | CONFIG_PROC_FS=y | 890 | CONFIG_PROC_FS=y |
855 | CONFIG_PROC_KCORE=y | 891 | CONFIG_PROC_KCORE=y |
856 | CONFIG_SYSFS=y | 892 | CONFIG_SYSFS=y |
857 | # CONFIG_DEVFS_FS is not set | ||
858 | # CONFIG_DEVPTS_FS_XATTR is not set | 893 | # CONFIG_DEVPTS_FS_XATTR is not set |
859 | CONFIG_TMPFS=y | 894 | CONFIG_TMPFS=y |
860 | # CONFIG_TMPFS_XATTR is not set | 895 | # CONFIG_TMPFS_XATTR is not set |
@@ -874,8 +909,7 @@ CONFIG_RAMFS=y | |||
874 | # CONFIG_JFFS_FS is not set | 909 | # CONFIG_JFFS_FS is not set |
875 | CONFIG_JFFS2_FS=y | 910 | CONFIG_JFFS2_FS=y |
876 | CONFIG_JFFS2_FS_DEBUG=0 | 911 | CONFIG_JFFS2_FS_DEBUG=0 |
877 | # CONFIG_JFFS2_FS_NAND is not set | 912 | CONFIG_JFFS2_FS_WRITEBUFFER=y |
878 | # CONFIG_JFFS2_FS_NOR_ECC is not set | ||
879 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | 913 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set |
880 | CONFIG_JFFS2_ZLIB=y | 914 | CONFIG_JFFS2_ZLIB=y |
881 | CONFIG_JFFS2_RTIME=y | 915 | CONFIG_JFFS2_RTIME=y |
@@ -892,12 +926,14 @@ CONFIG_JFFS2_RTIME=y | |||
892 | # | 926 | # |
893 | CONFIG_NFS_FS=y | 927 | CONFIG_NFS_FS=y |
894 | CONFIG_NFS_V3=y | 928 | CONFIG_NFS_V3=y |
929 | # CONFIG_NFS_V3_ACL is not set | ||
895 | # CONFIG_NFS_V4 is not set | 930 | # CONFIG_NFS_V4 is not set |
896 | # CONFIG_NFS_DIRECTIO is not set | 931 | # CONFIG_NFS_DIRECTIO is not set |
897 | # CONFIG_NFSD is not set | 932 | # CONFIG_NFSD is not set |
898 | CONFIG_ROOT_NFS=y | 933 | CONFIG_ROOT_NFS=y |
899 | CONFIG_LOCKD=y | 934 | CONFIG_LOCKD=y |
900 | CONFIG_LOCKD_V4=y | 935 | CONFIG_LOCKD_V4=y |
936 | CONFIG_NFS_COMMON=y | ||
901 | CONFIG_SUNRPC=y | 937 | CONFIG_SUNRPC=y |
902 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 938 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
903 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 939 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
diff --git a/arch/ppc/configs/sandpoint_defconfig b/arch/ppc/configs/sandpoint_defconfig index 0f4393a07f82..fb493a67c60d 100644 --- a/arch/ppc/configs/sandpoint_defconfig +++ b/arch/ppc/configs/sandpoint_defconfig | |||
@@ -437,7 +437,7 @@ CONFIG_SOUND_GAMEPORT=y | |||
437 | # | 437 | # |
438 | CONFIG_SERIAL_8250=y | 438 | CONFIG_SERIAL_8250=y |
439 | CONFIG_SERIAL_8250_CONSOLE=y | 439 | CONFIG_SERIAL_8250_CONSOLE=y |
440 | CONFIG_SERIAL_8250_NR_UARTS=2 | 440 | CONFIG_SERIAL_8250_NR_UARTS=4 |
441 | # CONFIG_SERIAL_8250_EXTENDED is not set | 441 | # CONFIG_SERIAL_8250_EXTENDED is not set |
442 | 442 | ||
443 | # | 443 | # |
diff --git a/arch/ppc/kernel/cputable.c b/arch/ppc/kernel/cputable.c index 50936cda0af9..8a3d74f2531e 100644 --- a/arch/ppc/kernel/cputable.c +++ b/arch/ppc/kernel/cputable.c | |||
@@ -852,6 +852,26 @@ struct cpu_spec cpu_specs[] = { | |||
852 | 852 | ||
853 | #endif /* CONFIG_40x */ | 853 | #endif /* CONFIG_40x */ |
854 | #ifdef CONFIG_44x | 854 | #ifdef CONFIG_44x |
855 | { | ||
856 | .pvr_mask = 0xf0000fff, | ||
857 | .pvr_value = 0x40000850, | ||
858 | .cpu_name = "440EP Rev. A", | ||
859 | .cpu_features = CPU_FTR_SPLIT_ID_CACHE | | ||
860 | CPU_FTR_USE_TB, | ||
861 | .cpu_user_features = COMMON_PPC, /* 440EP has an FPU */ | ||
862 | .icache_bsize = 32, | ||
863 | .dcache_bsize = 32, | ||
864 | }, | ||
865 | { | ||
866 | .pvr_mask = 0xf0000fff, | ||
867 | .pvr_value = 0x400008d3, | ||
868 | .cpu_name = "440EP Rev. B", | ||
869 | .cpu_features = CPU_FTR_SPLIT_ID_CACHE | | ||
870 | CPU_FTR_USE_TB, | ||
871 | .cpu_user_features = COMMON_PPC, /* 440EP has an FPU */ | ||
872 | .icache_bsize = 32, | ||
873 | .dcache_bsize = 32, | ||
874 | }, | ||
855 | { /* 440GP Rev. B */ | 875 | { /* 440GP Rev. B */ |
856 | .pvr_mask = 0xf0000fff, | 876 | .pvr_mask = 0xf0000fff, |
857 | .pvr_value = 0x40000440, | 877 | .pvr_value = 0x40000440, |
diff --git a/arch/ppc/kernel/entry.S b/arch/ppc/kernel/entry.S index d4df68629cc6..cb83045e2edf 100644 --- a/arch/ppc/kernel/entry.S +++ b/arch/ppc/kernel/entry.S | |||
@@ -215,6 +215,7 @@ syscall_dotrace_cont: | |||
215 | lwzx r10,r10,r0 /* Fetch system call handler [ptr] */ | 215 | lwzx r10,r10,r0 /* Fetch system call handler [ptr] */ |
216 | mtlr r10 | 216 | mtlr r10 |
217 | addi r9,r1,STACK_FRAME_OVERHEAD | 217 | addi r9,r1,STACK_FRAME_OVERHEAD |
218 | PPC440EP_ERR42 | ||
218 | blrl /* Call handler */ | 219 | blrl /* Call handler */ |
219 | .globl ret_from_syscall | 220 | .globl ret_from_syscall |
220 | ret_from_syscall: | 221 | ret_from_syscall: |
diff --git a/arch/ppc/kernel/head_44x.S b/arch/ppc/kernel/head_44x.S index 6c7ae6052464..69ff3a9961e8 100644 --- a/arch/ppc/kernel/head_44x.S +++ b/arch/ppc/kernel/head_44x.S | |||
@@ -179,24 +179,26 @@ skpinv: addi r4,r4,1 /* Increment */ | |||
179 | 4: | 179 | 4: |
180 | #ifdef CONFIG_SERIAL_TEXT_DEBUG | 180 | #ifdef CONFIG_SERIAL_TEXT_DEBUG |
181 | /* | 181 | /* |
182 | * Add temporary UART mapping for early debug. This | 182 | * Add temporary UART mapping for early debug. |
183 | * mapping must be identical to that used by the early | 183 | * We can map UART registers wherever we want as long as they don't |
184 | * bootloader code since the same asm/serial.h parameters | 184 | * interfere with other system mappings (e.g. with pinned entries). |
185 | * are used for polled operation. | 185 | * For an example of how we handle this - see ocotea.h. --ebs |
186 | */ | 186 | */ |
187 | /* pageid fields */ | 187 | /* pageid fields */ |
188 | lis r3,UART0_IO_BASE@h | 188 | lis r3,UART0_IO_BASE@h |
189 | ori r3,r3,PPC44x_TLB_VALID | PPC44x_TLB_256M | 189 | ori r3,r3,PPC44x_TLB_VALID | PPC44x_TLB_4K |
190 | 190 | ||
191 | /* xlat fields */ | 191 | /* xlat fields */ |
192 | lis r4,UART0_PHYS_IO_BASE@h /* RPN depends on SoC */ | 192 | lis r4,UART0_PHYS_IO_BASE@h /* RPN depends on SoC */ |
193 | #ifndef CONFIG_440EP | ||
193 | ori r4,r4,0x0001 /* ERPN is 1 for second 4GB page */ | 194 | ori r4,r4,0x0001 /* ERPN is 1 for second 4GB page */ |
195 | #endif | ||
194 | 196 | ||
195 | /* attrib fields */ | 197 | /* attrib fields */ |
196 | li r5,0 | 198 | li r5,0 |
197 | ori r5,r5,(PPC44x_TLB_SW | PPC44x_TLB_SR | PPC44x_TLB_I | PPC44x_TLB_G) | 199 | ori r5,r5,(PPC44x_TLB_SW | PPC44x_TLB_SR | PPC44x_TLB_I | PPC44x_TLB_G) |
198 | 200 | ||
199 | li r0,1 /* TLB slot 1 */ | 201 | li r0,0 /* TLB slot 0 */ |
200 | 202 | ||
201 | tlbwe r3,r0,PPC44x_TLB_PAGEID /* Load the pageid fields */ | 203 | tlbwe r3,r0,PPC44x_TLB_PAGEID /* Load the pageid fields */ |
202 | tlbwe r4,r0,PPC44x_TLB_XLAT /* Load the translation fields */ | 204 | tlbwe r4,r0,PPC44x_TLB_XLAT /* Load the translation fields */ |
@@ -228,6 +230,16 @@ skpinv: addi r4,r4,1 /* Increment */ | |||
228 | lis r4,interrupt_base@h /* IVPR only uses the high 16-bits */ | 230 | lis r4,interrupt_base@h /* IVPR only uses the high 16-bits */ |
229 | mtspr SPRN_IVPR,r4 | 231 | mtspr SPRN_IVPR,r4 |
230 | 232 | ||
233 | #ifdef CONFIG_440EP | ||
234 | /* Clear DAPUIB flag in CCR0 (enable APU between CPU and FPU) */ | ||
235 | mfspr r2,SPRN_CCR0 | ||
236 | lis r3,0xffef | ||
237 | ori r3,r3,0xffff | ||
238 | and r2,r2,r3 | ||
239 | mtspr SPRN_CCR0,r2 | ||
240 | isync | ||
241 | #endif | ||
242 | |||
231 | /* | 243 | /* |
232 | * This is where the main kernel code starts. | 244 | * This is where the main kernel code starts. |
233 | */ | 245 | */ |
diff --git a/arch/ppc/kernel/head_8xx.S b/arch/ppc/kernel/head_8xx.S index 5a7a64e91fc5..eb18cadb3755 100644 --- a/arch/ppc/kernel/head_8xx.S +++ b/arch/ppc/kernel/head_8xx.S | |||
@@ -288,13 +288,11 @@ SystemCall: | |||
288 | * For the MPC8xx, this is a software tablewalk to load the instruction | 288 | * For the MPC8xx, this is a software tablewalk to load the instruction |
289 | * TLB. It is modelled after the example in the Motorola manual. The task | 289 | * TLB. It is modelled after the example in the Motorola manual. The task |
290 | * switch loads the M_TWB register with the pointer to the first level table. | 290 | * switch loads the M_TWB register with the pointer to the first level table. |
291 | * If we discover there is no second level table (the value is zero), the | 291 | * If we discover there is no second level table (value is zero) or if there |
292 | * plan was to load that into the TLB, which causes another fault into the | 292 | * is an invalid pte, we load that into the TLB, which causes another fault |
293 | * TLB Error interrupt where we can handle such problems. However, that did | 293 | * into the TLB Error interrupt where we can handle such problems. |
294 | * not work, so if we discover there is no second level table, we restore | 294 | * We have to use the MD_xxx registers for the tablewalk because the |
295 | * registers and branch to the error exception. We have to use the MD_xxx | 295 | * equivalent MI_xxx registers only perform the attribute functions. |
296 | * registers for the tablewalk because the equivalent MI_xxx registers | ||
297 | * only perform the attribute functions. | ||
298 | */ | 296 | */ |
299 | InstructionTLBMiss: | 297 | InstructionTLBMiss: |
300 | #ifdef CONFIG_8xx_CPU6 | 298 | #ifdef CONFIG_8xx_CPU6 |
diff --git a/arch/ppc/kernel/misc.S b/arch/ppc/kernel/misc.S index 191a8def3bdb..ce71b4a01585 100644 --- a/arch/ppc/kernel/misc.S +++ b/arch/ppc/kernel/misc.S | |||
@@ -1145,6 +1145,7 @@ _GLOBAL(kernel_thread) | |||
1145 | stwu r0,-16(r1) | 1145 | stwu r0,-16(r1) |
1146 | mtlr r30 /* fn addr in lr */ | 1146 | mtlr r30 /* fn addr in lr */ |
1147 | mr r3,r31 /* load arg and call fn */ | 1147 | mr r3,r31 /* load arg and call fn */ |
1148 | PPC440EP_ERR42 | ||
1148 | blrl | 1149 | blrl |
1149 | li r0,__NR_exit /* exit if function returns */ | 1150 | li r0,__NR_exit /* exit if function returns */ |
1150 | li r3,0 | 1151 | li r3,0 |
@@ -1451,3 +1452,6 @@ _GLOBAL(sys_call_table) | |||
1451 | .long sys_waitid | 1452 | .long sys_waitid |
1452 | .long sys_ioprio_set | 1453 | .long sys_ioprio_set |
1453 | .long sys_ioprio_get | 1454 | .long sys_ioprio_get |
1455 | .long sys_inotify_init /* 275 */ | ||
1456 | .long sys_inotify_add_watch | ||
1457 | .long sys_inotify_rm_watch | ||
diff --git a/arch/ppc/kernel/pci.c b/arch/ppc/kernel/pci.c index 70cfb6ffd877..7b3586a3bf30 100644 --- a/arch/ppc/kernel/pci.c +++ b/arch/ppc/kernel/pci.c | |||
@@ -160,6 +160,21 @@ void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region, | |||
160 | } | 160 | } |
161 | EXPORT_SYMBOL(pcibios_resource_to_bus); | 161 | EXPORT_SYMBOL(pcibios_resource_to_bus); |
162 | 162 | ||
163 | void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res, | ||
164 | struct pci_bus_region *region) | ||
165 | { | ||
166 | unsigned long offset = 0; | ||
167 | struct pci_controller *hose = dev->sysdata; | ||
168 | |||
169 | if (hose && res->flags & IORESOURCE_IO) | ||
170 | offset = (unsigned long)hose->io_base_virt - isa_io_base; | ||
171 | else if (hose && res->flags & IORESOURCE_MEM) | ||
172 | offset = hose->pci_mem_offset; | ||
173 | res->start = region->start + offset; | ||
174 | res->end = region->end + offset; | ||
175 | } | ||
176 | EXPORT_SYMBOL(pcibios_bus_to_resource); | ||
177 | |||
163 | /* | 178 | /* |
164 | * We need to avoid collisions with `mirrored' VGA ports | 179 | * We need to avoid collisions with `mirrored' VGA ports |
165 | * and other strange ISA hardware, so we always want the | 180 | * and other strange ISA hardware, so we always want the |
diff --git a/arch/ppc/kernel/ppc_ksyms.c b/arch/ppc/kernel/ppc_ksyms.c index d59ad07de8e7..e7d40cc6c1b6 100644 --- a/arch/ppc/kernel/ppc_ksyms.c +++ b/arch/ppc/kernel/ppc_ksyms.c | |||
@@ -324,7 +324,7 @@ EXPORT_SYMBOL(__res); | |||
324 | 324 | ||
325 | EXPORT_SYMBOL(next_mmu_context); | 325 | EXPORT_SYMBOL(next_mmu_context); |
326 | EXPORT_SYMBOL(set_context); | 326 | EXPORT_SYMBOL(set_context); |
327 | EXPORT_SYMBOL(handle_mm_fault); /* For MOL */ | 327 | EXPORT_SYMBOL_GPL(__handle_mm_fault); /* For MOL */ |
328 | EXPORT_SYMBOL(disarm_decr); | 328 | EXPORT_SYMBOL(disarm_decr); |
329 | #ifdef CONFIG_PPC_STD_MMU | 329 | #ifdef CONFIG_PPC_STD_MMU |
330 | extern long mol_trampoline; | 330 | extern long mol_trampoline; |
diff --git a/arch/ppc/mm/init.c b/arch/ppc/mm/init.c index 6164a2b34733..33ada72c7330 100644 --- a/arch/ppc/mm/init.c +++ b/arch/ppc/mm/init.c | |||
@@ -562,6 +562,9 @@ void flush_dcache_icache_page(struct page *page) | |||
562 | #ifdef CONFIG_BOOKE | 562 | #ifdef CONFIG_BOOKE |
563 | __flush_dcache_icache(kmap(page)); | 563 | __flush_dcache_icache(kmap(page)); |
564 | kunmap(page); | 564 | kunmap(page); |
565 | #elif CONFIG_8xx | ||
566 | /* On 8xx there is no need to kmap since highmem is not supported */ | ||
567 | __flush_dcache_icache(page_address(page)); | ||
565 | #else | 568 | #else |
566 | __flush_dcache_icache_phys(page_to_pfn(page) << PAGE_SHIFT); | 569 | __flush_dcache_icache_phys(page_to_pfn(page) << PAGE_SHIFT); |
567 | #endif | 570 | #endif |
diff --git a/arch/ppc/platforms/4xx/Kconfig b/arch/ppc/platforms/4xx/Kconfig index a0612a86455a..f7c045764e04 100644 --- a/arch/ppc/platforms/4xx/Kconfig +++ b/arch/ppc/platforms/4xx/Kconfig | |||
@@ -68,6 +68,11 @@ choice | |||
68 | depends on 44x | 68 | depends on 44x |
69 | default EBONY | 69 | default EBONY |
70 | 70 | ||
71 | config BAMBOO | ||
72 | bool "Bamboo" | ||
73 | help | ||
74 | This option enables support for the IBM PPC440EP evaluation board. | ||
75 | |||
71 | config EBONY | 76 | config EBONY |
72 | bool "Ebony" | 77 | bool "Ebony" |
73 | help | 78 | help |
@@ -98,6 +103,12 @@ config NP405H | |||
98 | depends on ASH | 103 | depends on ASH |
99 | default y | 104 | default y |
100 | 105 | ||
106 | config 440EP | ||
107 | bool | ||
108 | depends on BAMBOO | ||
109 | select PPC_FPU | ||
110 | default y | ||
111 | |||
101 | config 440GP | 112 | config 440GP |
102 | bool | 113 | bool |
103 | depends on EBONY | 114 | depends on EBONY |
@@ -115,7 +126,7 @@ config 440SP | |||
115 | 126 | ||
116 | config 440 | 127 | config 440 |
117 | bool | 128 | bool |
118 | depends on 440GP || 440SP | 129 | depends on 440GP || 440SP || 440EP |
119 | default y | 130 | default y |
120 | 131 | ||
121 | config 440A | 132 | config 440A |
@@ -123,6 +134,11 @@ config 440A | |||
123 | depends on 440GX | 134 | depends on 440GX |
124 | default y | 135 | default y |
125 | 136 | ||
137 | config IBM440EP_ERR42 | ||
138 | bool | ||
139 | depends on 440EP | ||
140 | default y | ||
141 | |||
126 | # All 405-based cores up until the 405GPR and 405EP have this errata. | 142 | # All 405-based cores up until the 405GPR and 405EP have this errata. |
127 | config IBM405_ERR77 | 143 | config IBM405_ERR77 |
128 | bool | 144 | bool |
@@ -142,7 +158,7 @@ config BOOKE | |||
142 | 158 | ||
143 | config IBM_OCP | 159 | config IBM_OCP |
144 | bool | 160 | bool |
145 | depends on ASH || BUBINGA || CPCI405 || EBONY || EP405 || LUAN || OCOTEA || REDWOOD_5 || REDWOOD_6 || SYCAMORE || WALNUT | 161 | depends on ASH || BAMBOO || BUBINGA || CPCI405 || EBONY || EP405 || LUAN || OCOTEA || REDWOOD_5 || REDWOOD_6 || SYCAMORE || WALNUT |
146 | default y | 162 | default y |
147 | 163 | ||
148 | config XILINX_OCP | 164 | config XILINX_OCP |
diff --git a/arch/ppc/platforms/4xx/Makefile b/arch/ppc/platforms/4xx/Makefile index ea470c6adbb6..844c3b5066e8 100644 --- a/arch/ppc/platforms/4xx/Makefile +++ b/arch/ppc/platforms/4xx/Makefile | |||
@@ -2,6 +2,7 @@ | |||
2 | # Makefile for the PowerPC 4xx linux kernel. | 2 | # Makefile for the PowerPC 4xx linux kernel. |
3 | 3 | ||
4 | obj-$(CONFIG_ASH) += ash.o | 4 | obj-$(CONFIG_ASH) += ash.o |
5 | obj-$(CONFIG_BAMBOO) += bamboo.o | ||
5 | obj-$(CONFIG_CPCI405) += cpci405.o | 6 | obj-$(CONFIG_CPCI405) += cpci405.o |
6 | obj-$(CONFIG_EBONY) += ebony.o | 7 | obj-$(CONFIG_EBONY) += ebony.o |
7 | obj-$(CONFIG_EP405) += ep405.o | 8 | obj-$(CONFIG_EP405) += ep405.o |
@@ -19,6 +20,7 @@ obj-$(CONFIG_405GP) += ibm405gp.o | |||
19 | obj-$(CONFIG_REDWOOD_5) += ibmstb4.o | 20 | obj-$(CONFIG_REDWOOD_5) += ibmstb4.o |
20 | obj-$(CONFIG_NP405H) += ibmnp405h.o | 21 | obj-$(CONFIG_NP405H) += ibmnp405h.o |
21 | obj-$(CONFIG_REDWOOD_6) += ibmstbx25.o | 22 | obj-$(CONFIG_REDWOOD_6) += ibmstbx25.o |
23 | obj-$(CONFIG_440EP) += ibm440ep.o | ||
22 | obj-$(CONFIG_440GP) += ibm440gp.o | 24 | obj-$(CONFIG_440GP) += ibm440gp.o |
23 | obj-$(CONFIG_440GX) += ibm440gx.o | 25 | obj-$(CONFIG_440GX) += ibm440gx.o |
24 | obj-$(CONFIG_440SP) += ibm440sp.o | 26 | obj-$(CONFIG_440SP) += ibm440sp.o |
diff --git a/arch/ppc/platforms/4xx/bamboo.c b/arch/ppc/platforms/4xx/bamboo.c new file mode 100644 index 000000000000..f116787b0b76 --- /dev/null +++ b/arch/ppc/platforms/4xx/bamboo.c | |||
@@ -0,0 +1,427 @@ | |||
1 | /* | ||
2 | * arch/ppc/platforms/4xx/bamboo.c | ||
3 | * | ||
4 | * Bamboo board specific routines | ||
5 | * | ||
6 | * Wade Farnsworth <wfarnsworth@mvista.com> | ||
7 | * Copyright 2004 MontaVista Software Inc. | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License as published by the | ||
11 | * Free Software Foundation; either version 2 of the License, or (at your | ||
12 | * option) any later version. | ||
13 | */ | ||
14 | |||
15 | #include <linux/config.h> | ||
16 | #include <linux/stddef.h> | ||
17 | #include <linux/kernel.h> | ||
18 | #include <linux/init.h> | ||
19 | #include <linux/errno.h> | ||
20 | #include <linux/reboot.h> | ||
21 | #include <linux/pci.h> | ||
22 | #include <linux/kdev_t.h> | ||
23 | #include <linux/types.h> | ||
24 | #include <linux/major.h> | ||
25 | #include <linux/blkdev.h> | ||
26 | #include <linux/console.h> | ||
27 | #include <linux/delay.h> | ||
28 | #include <linux/ide.h> | ||
29 | #include <linux/initrd.h> | ||
30 | #include <linux/irq.h> | ||
31 | #include <linux/seq_file.h> | ||
32 | #include <linux/root_dev.h> | ||
33 | #include <linux/tty.h> | ||
34 | #include <linux/serial.h> | ||
35 | #include <linux/serial_core.h> | ||
36 | #include <linux/ethtool.h> | ||
37 | |||
38 | #include <asm/system.h> | ||
39 | #include <asm/pgtable.h> | ||
40 | #include <asm/page.h> | ||
41 | #include <asm/dma.h> | ||
42 | #include <asm/io.h> | ||
43 | #include <asm/machdep.h> | ||
44 | #include <asm/ocp.h> | ||
45 | #include <asm/pci-bridge.h> | ||
46 | #include <asm/time.h> | ||
47 | #include <asm/todc.h> | ||
48 | #include <asm/bootinfo.h> | ||
49 | #include <asm/ppc4xx_pic.h> | ||
50 | #include <asm/ppcboot.h> | ||
51 | |||
52 | #include <syslib/gen550.h> | ||
53 | #include <syslib/ibm440gx_common.h> | ||
54 | |||
55 | /* | ||
56 | * This is a horrible kludge, we eventually need to abstract this | ||
57 | * generic PHY stuff, so the standard phy mode defines can be | ||
58 | * easily used from arch code. | ||
59 | */ | ||
60 | #include "../../../../drivers/net/ibm_emac/ibm_emac_phy.h" | ||
61 | |||
62 | bd_t __res; | ||
63 | |||
64 | static struct ibm44x_clocks clocks __initdata; | ||
65 | |||
66 | /* | ||
67 | * Bamboo external IRQ triggering/polarity settings | ||
68 | */ | ||
69 | unsigned char ppc4xx_uic_ext_irq_cfg[] __initdata = { | ||
70 | (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* IRQ0: Ethernet transceiver */ | ||
71 | (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* IRQ1: Expansion connector */ | ||
72 | (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* IRQ2: PCI slot 0 */ | ||
73 | (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* IRQ3: PCI slot 1 */ | ||
74 | (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* IRQ4: PCI slot 2 */ | ||
75 | (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* IRQ5: PCI slot 3 */ | ||
76 | (IRQ_SENSE_EDGE | IRQ_POLARITY_NEGATIVE), /* IRQ6: SMI pushbutton */ | ||
77 | (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* IRQ7: EXT */ | ||
78 | (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* IRQ8: EXT */ | ||
79 | (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* IRQ9: EXT */ | ||
80 | }; | ||
81 | |||
82 | static void __init | ||
83 | bamboo_calibrate_decr(void) | ||
84 | { | ||
85 | unsigned int freq; | ||
86 | |||
87 | if (mfspr(SPRN_CCR1) & CCR1_TCS) | ||
88 | freq = BAMBOO_TMRCLK; | ||
89 | else | ||
90 | freq = clocks.cpu; | ||
91 | |||
92 | ibm44x_calibrate_decr(freq); | ||
93 | |||
94 | } | ||
95 | |||
96 | static int | ||
97 | bamboo_show_cpuinfo(struct seq_file *m) | ||
98 | { | ||
99 | seq_printf(m, "vendor\t\t: IBM\n"); | ||
100 | seq_printf(m, "machine\t\t: PPC440EP EVB (Bamboo)\n"); | ||
101 | |||
102 | return 0; | ||
103 | } | ||
104 | |||
105 | static inline int | ||
106 | bamboo_map_irq(struct pci_dev *dev, unsigned char idsel, unsigned char pin) | ||
107 | { | ||
108 | static char pci_irq_table[][4] = | ||
109 | /* | ||
110 | * PCI IDSEL/INTPIN->INTLINE | ||
111 | * A B C D | ||
112 | */ | ||
113 | { | ||
114 | { 28, 28, 28, 28 }, /* IDSEL 1 - PCI Slot 0 */ | ||
115 | { 27, 27, 27, 27 }, /* IDSEL 2 - PCI Slot 1 */ | ||
116 | { 26, 26, 26, 26 }, /* IDSEL 3 - PCI Slot 2 */ | ||
117 | { 25, 25, 25, 25 }, /* IDSEL 4 - PCI Slot 3 */ | ||
118 | }; | ||
119 | |||
120 | const long min_idsel = 1, max_idsel = 4, irqs_per_slot = 4; | ||
121 | return PCI_IRQ_TABLE_LOOKUP; | ||
122 | } | ||
123 | |||
124 | static void __init bamboo_set_emacdata(void) | ||
125 | { | ||
126 | unsigned char * selection1_base; | ||
127 | struct ocp_def *def; | ||
128 | struct ocp_func_emac_data *emacdata; | ||
129 | u8 selection1_val; | ||
130 | int mode; | ||
131 | |||
132 | selection1_base = ioremap64(BAMBOO_FPGA_SELECTION1_REG_ADDR, 16); | ||
133 | selection1_val = readb(selection1_base); | ||
134 | iounmap((void *) selection1_base); | ||
135 | if (BAMBOO_SEL_MII(selection1_val)) | ||
136 | mode = PHY_MODE_MII; | ||
137 | else if (BAMBOO_SEL_RMII(selection1_val)) | ||
138 | mode = PHY_MODE_RMII; | ||
139 | else | ||
140 | mode = PHY_MODE_SMII; | ||
141 | |||
142 | /* Set mac_addr and phy mode for each EMAC */ | ||
143 | |||
144 | def = ocp_get_one_device(OCP_VENDOR_IBM, OCP_FUNC_EMAC, 0); | ||
145 | emacdata = def->additions; | ||
146 | memcpy(emacdata->mac_addr, __res.bi_enetaddr, 6); | ||
147 | emacdata->phy_mode = mode; | ||
148 | |||
149 | def = ocp_get_one_device(OCP_VENDOR_IBM, OCP_FUNC_EMAC, 1); | ||
150 | emacdata = def->additions; | ||
151 | memcpy(emacdata->mac_addr, __res.bi_enet1addr, 6); | ||
152 | emacdata->phy_mode = mode; | ||
153 | } | ||
154 | |||
155 | static int | ||
156 | bamboo_exclude_device(unsigned char bus, unsigned char devfn) | ||
157 | { | ||
158 | return (bus == 0 && devfn == 0); | ||
159 | } | ||
160 | |||
161 | #define PCI_READW(offset) \ | ||
162 | (readw((void *)((u32)pci_reg_base+offset))) | ||
163 | |||
164 | #define PCI_WRITEW(value, offset) \ | ||
165 | (writew(value, (void *)((u32)pci_reg_base+offset))) | ||
166 | |||
167 | #define PCI_WRITEL(value, offset) \ | ||
168 | (writel(value, (void *)((u32)pci_reg_base+offset))) | ||
169 | |||
170 | static void __init | ||
171 | bamboo_setup_pci(void) | ||
172 | { | ||
173 | void *pci_reg_base; | ||
174 | unsigned long memory_size; | ||
175 | memory_size = ppc_md.find_end_of_memory(); | ||
176 | |||
177 | pci_reg_base = ioremap64(BAMBOO_PCIL0_BASE, BAMBOO_PCIL0_SIZE); | ||
178 | |||
179 | /* Enable PCI I/O, Mem, and Busmaster cycles */ | ||
180 | PCI_WRITEW(PCI_READW(PCI_COMMAND) | | ||
181 | PCI_COMMAND_MEMORY | | ||
182 | PCI_COMMAND_MASTER, PCI_COMMAND); | ||
183 | |||
184 | /* Disable region first */ | ||
185 | PCI_WRITEL(0, BAMBOO_PCIL0_PMM0MA); | ||
186 | |||
187 | /* PLB starting addr: 0x00000000A0000000 */ | ||
188 | PCI_WRITEL(BAMBOO_PCI_PHY_MEM_BASE, BAMBOO_PCIL0_PMM0LA); | ||
189 | |||
190 | /* PCI start addr, 0xA0000000 (PCI Address) */ | ||
191 | PCI_WRITEL(BAMBOO_PCI_MEM_BASE, BAMBOO_PCIL0_PMM0PCILA); | ||
192 | PCI_WRITEL(0, BAMBOO_PCIL0_PMM0PCIHA); | ||
193 | |||
194 | /* Enable no pre-fetch, enable region */ | ||
195 | PCI_WRITEL(((0xffffffff - | ||
196 | (BAMBOO_PCI_UPPER_MEM - BAMBOO_PCI_MEM_BASE)) | 0x01), | ||
197 | BAMBOO_PCIL0_PMM0MA); | ||
198 | |||
199 | /* Disable region one */ | ||
200 | PCI_WRITEL(0, BAMBOO_PCIL0_PMM1MA); | ||
201 | PCI_WRITEL(0, BAMBOO_PCIL0_PMM1LA); | ||
202 | PCI_WRITEL(0, BAMBOO_PCIL0_PMM1PCILA); | ||
203 | PCI_WRITEL(0, BAMBOO_PCIL0_PMM1PCIHA); | ||
204 | PCI_WRITEL(0, BAMBOO_PCIL0_PMM1MA); | ||
205 | |||
206 | /* Disable region two */ | ||
207 | PCI_WRITEL(0, BAMBOO_PCIL0_PMM2MA); | ||
208 | PCI_WRITEL(0, BAMBOO_PCIL0_PMM2LA); | ||
209 | PCI_WRITEL(0, BAMBOO_PCIL0_PMM2PCILA); | ||
210 | PCI_WRITEL(0, BAMBOO_PCIL0_PMM2PCIHA); | ||
211 | PCI_WRITEL(0, BAMBOO_PCIL0_PMM2MA); | ||
212 | |||
213 | /* Now configure the PCI->PLB windows, we only use PTM1 | ||
214 | * | ||
215 | * For Inbound flow, set the window size to all available memory | ||
216 | * This is required because if size is smaller, | ||
217 | * then Eth/PCI DD would fail as PCI card not able to access | ||
218 | * the memory allocated by DD. | ||
219 | */ | ||
220 | |||
221 | PCI_WRITEL(0, BAMBOO_PCIL0_PTM1MS); /* disabled region 1 */ | ||
222 | PCI_WRITEL(0, BAMBOO_PCIL0_PTM1LA); /* begin of address map */ | ||
223 | |||
224 | memory_size = 1 << fls(memory_size - 1); | ||
225 | |||
226 | /* Size low + Enabled */ | ||
227 | PCI_WRITEL((0xffffffff - (memory_size - 1)) | 0x1, BAMBOO_PCIL0_PTM1MS); | ||
228 | |||
229 | eieio(); | ||
230 | iounmap(pci_reg_base); | ||
231 | } | ||
232 | |||
233 | static void __init | ||
234 | bamboo_setup_hose(void) | ||
235 | { | ||
236 | unsigned int bar_response, bar; | ||
237 | struct pci_controller *hose; | ||
238 | |||
239 | bamboo_setup_pci(); | ||
240 | |||
241 | hose = pcibios_alloc_controller(); | ||
242 | |||
243 | if (!hose) | ||
244 | return; | ||
245 | |||
246 | hose->first_busno = 0; | ||
247 | hose->last_busno = 0xff; | ||
248 | |||
249 | hose->pci_mem_offset = BAMBOO_PCI_MEM_OFFSET; | ||
250 | |||
251 | pci_init_resource(&hose->io_resource, | ||
252 | BAMBOO_PCI_LOWER_IO, | ||
253 | BAMBOO_PCI_UPPER_IO, | ||
254 | IORESOURCE_IO, | ||
255 | "PCI host bridge"); | ||
256 | |||
257 | pci_init_resource(&hose->mem_resources[0], | ||
258 | BAMBOO_PCI_LOWER_MEM, | ||
259 | BAMBOO_PCI_UPPER_MEM, | ||
260 | IORESOURCE_MEM, | ||
261 | "PCI host bridge"); | ||
262 | |||
263 | ppc_md.pci_exclude_device = bamboo_exclude_device; | ||
264 | |||
265 | hose->io_space.start = BAMBOO_PCI_LOWER_IO; | ||
266 | hose->io_space.end = BAMBOO_PCI_UPPER_IO; | ||
267 | hose->mem_space.start = BAMBOO_PCI_LOWER_MEM; | ||
268 | hose->mem_space.end = BAMBOO_PCI_UPPER_MEM; | ||
269 | isa_io_base = | ||
270 | (unsigned long)ioremap64(BAMBOO_PCI_IO_BASE, BAMBOO_PCI_IO_SIZE); | ||
271 | hose->io_base_virt = (void *)isa_io_base; | ||
272 | |||
273 | setup_indirect_pci(hose, | ||
274 | BAMBOO_PCI_CFGA_PLB32, | ||
275 | BAMBOO_PCI_CFGD_PLB32); | ||
276 | hose->set_cfg_type = 1; | ||
277 | |||
278 | /* Zero config bars */ | ||
279 | for (bar = PCI_BASE_ADDRESS_1; bar <= PCI_BASE_ADDRESS_2; bar += 4) { | ||
280 | early_write_config_dword(hose, hose->first_busno, | ||
281 | PCI_FUNC(hose->first_busno), bar, | ||
282 | 0x00000000); | ||
283 | early_read_config_dword(hose, hose->first_busno, | ||
284 | PCI_FUNC(hose->first_busno), bar, | ||
285 | &bar_response); | ||
286 | } | ||
287 | |||
288 | hose->last_busno = pciauto_bus_scan(hose, hose->first_busno); | ||
289 | |||
290 | ppc_md.pci_swizzle = common_swizzle; | ||
291 | ppc_md.pci_map_irq = bamboo_map_irq; | ||
292 | } | ||
293 | |||
294 | TODC_ALLOC(); | ||
295 | |||
296 | static void __init | ||
297 | bamboo_early_serial_map(void) | ||
298 | { | ||
299 | struct uart_port port; | ||
300 | |||
301 | /* Setup ioremapped serial port access */ | ||
302 | memset(&port, 0, sizeof(port)); | ||
303 | port.membase = ioremap64(PPC440EP_UART0_ADDR, 8); | ||
304 | port.irq = 0; | ||
305 | port.uartclk = clocks.uart0; | ||
306 | port.regshift = 0; | ||
307 | port.iotype = SERIAL_IO_MEM; | ||
308 | port.flags = ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST; | ||
309 | port.line = 0; | ||
310 | |||
311 | if (early_serial_setup(&port) != 0) { | ||
312 | printk("Early serial init of port 0 failed\n"); | ||
313 | } | ||
314 | |||
315 | #if defined(CONFIG_SERIAL_TEXT_DEBUG) || defined(CONFIG_KGDB) | ||
316 | /* Configure debug serial access */ | ||
317 | gen550_init(0, &port); | ||
318 | #endif | ||
319 | |||
320 | port.membase = ioremap64(PPC440EP_UART1_ADDR, 8); | ||
321 | port.irq = 1; | ||
322 | port.uartclk = clocks.uart1; | ||
323 | port.line = 1; | ||
324 | |||
325 | if (early_serial_setup(&port) != 0) { | ||
326 | printk("Early serial init of port 1 failed\n"); | ||
327 | } | ||
328 | |||
329 | #if defined(CONFIG_SERIAL_TEXT_DEBUG) || defined(CONFIG_KGDB) | ||
330 | /* Configure debug serial access */ | ||
331 | gen550_init(1, &port); | ||
332 | #endif | ||
333 | |||
334 | port.membase = ioremap64(PPC440EP_UART2_ADDR, 8); | ||
335 | port.irq = 3; | ||
336 | port.uartclk = clocks.uart2; | ||
337 | port.line = 2; | ||
338 | |||
339 | if (early_serial_setup(&port) != 0) { | ||
340 | printk("Early serial init of port 2 failed\n"); | ||
341 | } | ||
342 | |||
343 | #if defined(CONFIG_SERIAL_TEXT_DEBUG) || defined(CONFIG_KGDB) | ||
344 | /* Configure debug serial access */ | ||
345 | gen550_init(2, &port); | ||
346 | #endif | ||
347 | |||
348 | port.membase = ioremap64(PPC440EP_UART3_ADDR, 8); | ||
349 | port.irq = 4; | ||
350 | port.uartclk = clocks.uart3; | ||
351 | port.line = 3; | ||
352 | |||
353 | if (early_serial_setup(&port) != 0) { | ||
354 | printk("Early serial init of port 3 failed\n"); | ||
355 | } | ||
356 | } | ||
357 | |||
358 | static void __init | ||
359 | bamboo_setup_arch(void) | ||
360 | { | ||
361 | |||
362 | bamboo_set_emacdata(); | ||
363 | |||
364 | ibm440gx_get_clocks(&clocks, 33333333, 6 * 1843200); | ||
365 | ocp_sys_info.opb_bus_freq = clocks.opb; | ||
366 | |||
367 | /* Setup TODC access */ | ||
368 | TODC_INIT(TODC_TYPE_DS1743, | ||
369 | 0, | ||
370 | 0, | ||
371 | ioremap64(BAMBOO_RTC_ADDR, BAMBOO_RTC_SIZE), | ||
372 | 8); | ||
373 | |||
374 | /* init to some ~sane value until calibrate_delay() runs */ | ||
375 | loops_per_jiffy = 50000000/HZ; | ||
376 | |||
377 | /* Setup PCI host bridge */ | ||
378 | bamboo_setup_hose(); | ||
379 | |||
380 | #ifdef CONFIG_BLK_DEV_INITRD | ||
381 | if (initrd_start) | ||
382 | ROOT_DEV = Root_RAM0; | ||
383 | else | ||
384 | #endif | ||
385 | #ifdef CONFIG_ROOT_NFS | ||
386 | ROOT_DEV = Root_NFS; | ||
387 | #else | ||
388 | ROOT_DEV = Root_HDA1; | ||
389 | #endif | ||
390 | |||
391 | bamboo_early_serial_map(); | ||
392 | |||
393 | /* Identify the system */ | ||
394 | printk("IBM Bamboo port (MontaVista Software, Inc. (source@mvista.com))\n"); | ||
395 | } | ||
396 | |||
397 | void __init platform_init(unsigned long r3, unsigned long r4, | ||
398 | unsigned long r5, unsigned long r6, unsigned long r7) | ||
399 | { | ||
400 | parse_bootinfo(find_bootinfo()); | ||
401 | |||
402 | /* | ||
403 | * If we were passed in a board information, copy it into the | ||
404 | * residual data area. | ||
405 | */ | ||
406 | if (r3) | ||
407 | __res = *(bd_t *)(r3 + KERNELBASE); | ||
408 | |||
409 | |||
410 | ibm44x_platform_init(); | ||
411 | |||
412 | ppc_md.setup_arch = bamboo_setup_arch; | ||
413 | ppc_md.show_cpuinfo = bamboo_show_cpuinfo; | ||
414 | ppc_md.get_irq = NULL; /* Set in ppc4xx_pic_init() */ | ||
415 | |||
416 | ppc_md.calibrate_decr = bamboo_calibrate_decr; | ||
417 | ppc_md.time_init = todc_time_init; | ||
418 | ppc_md.set_rtc_time = todc_set_rtc_time; | ||
419 | ppc_md.get_rtc_time = todc_get_rtc_time; | ||
420 | |||
421 | ppc_md.nvram_read_val = todc_direct_read_val; | ||
422 | ppc_md.nvram_write_val = todc_direct_write_val; | ||
423 | #ifdef CONFIG_KGDB | ||
424 | ppc_md.early_serial_map = bamboo_early_serial_map; | ||
425 | #endif | ||
426 | } | ||
427 | |||
diff --git a/arch/ppc/platforms/4xx/bamboo.h b/arch/ppc/platforms/4xx/bamboo.h new file mode 100644 index 000000000000..63d714504148 --- /dev/null +++ b/arch/ppc/platforms/4xx/bamboo.h | |||
@@ -0,0 +1,136 @@ | |||
1 | /* | ||
2 | * arch/ppc/platforms/bamboo.h | ||
3 | * | ||
4 | * Bamboo board definitions | ||
5 | * | ||
6 | * Wade Farnsworth <wfarnsworth@mvista.com> | ||
7 | * | ||
8 | * Copyright 2004 MontaVista Software Inc. | ||
9 | * | ||
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 | ||
12 | * Free Software Foundation; either version 2 of the License, or (at your | ||
13 | * option) any later version. | ||
14 | */ | ||
15 | |||
16 | #ifdef __KERNEL__ | ||
17 | #ifndef __ASM_BAMBOO_H__ | ||
18 | #define __ASM_BAMBOO_H__ | ||
19 | |||
20 | #include <linux/config.h> | ||
21 | #include <platforms/4xx/ibm440ep.h> | ||
22 | |||
23 | /* F/W TLB mapping used in bootloader glue to reset EMAC */ | ||
24 | #define PPC44x_EMAC0_MR0 0x0EF600E00 | ||
25 | |||
26 | /* Location of MAC addresses in PIBS image */ | ||
27 | #define PIBS_FLASH_BASE 0xfff00000 | ||
28 | #define PIBS_MAC_BASE (PIBS_FLASH_BASE+0xc0400) | ||
29 | #define PIBS_MAC_SIZE 0x200 | ||
30 | #define PIBS_MAC_OFFSET 0x100 | ||
31 | |||
32 | /* Default clock rate */ | ||
33 | #define BAMBOO_TMRCLK 25000000 | ||
34 | |||
35 | /* RTC/NVRAM location */ | ||
36 | #define BAMBOO_RTC_ADDR 0x080000000ULL | ||
37 | #define BAMBOO_RTC_SIZE 0x2000 | ||
38 | |||
39 | /* FPGA Registers */ | ||
40 | #define BAMBOO_FPGA_ADDR 0x080002000ULL | ||
41 | |||
42 | #define BAMBOO_FPGA_CONFIG2_REG_ADDR (BAMBOO_FPGA_ADDR + 0x1) | ||
43 | #define BAMBOO_FULL_DUPLEX_EN(x) (x & 0x08) | ||
44 | #define BAMBOO_FORCE_100Mbps(x) (x & 0x04) | ||
45 | #define BAMBOO_AUTONEGOTIATE(x) (x & 0x02) | ||
46 | |||
47 | #define BAMBOO_FPGA_SETTING_REG_ADDR (BAMBOO_FPGA_ADDR + 0x3) | ||
48 | #define BAMBOO_BOOT_SMALL_FLASH(x) (!(x & 0x80)) | ||
49 | #define BAMBOO_LARGE_FLASH_EN(x) (!(x & 0x40)) | ||
50 | #define BAMBOO_BOOT_NAND_FLASH(x) (!(x & 0x20)) | ||
51 | |||
52 | #define BAMBOO_FPGA_SELECTION1_REG_ADDR (BAMBOO_FPGA_ADDR + 0x4) | ||
53 | #define BAMBOO_SEL_MII(x) (x & 0x80) | ||
54 | #define BAMBOO_SEL_RMII(x) (x & 0x40) | ||
55 | #define BAMBOO_SEL_SMII(x) (x & 0x20) | ||
56 | |||
57 | /* Flash */ | ||
58 | #define BAMBOO_SMALL_FLASH_LOW 0x087f00000ULL | ||
59 | #define BAMBOO_SMALL_FLASH_HIGH 0x0fff00000ULL | ||
60 | #define BAMBOO_SMALL_FLASH_SIZE 0x100000 | ||
61 | #define BAMBOO_LARGE_FLASH_LOW 0x087800000ULL | ||
62 | #define BAMBOO_LARGE_FLASH_HIGH1 0x0ff800000ULL | ||
63 | #define BAMBOO_LARGE_FLASH_HIGH2 0x0ffc00000ULL | ||
64 | #define BAMBOO_LARGE_FLASH_SIZE 0x400000 | ||
65 | #define BAMBOO_SRAM_LOW 0x087f00000ULL | ||
66 | #define BAMBOO_SRAM_HIGH1 0x0fff00000ULL | ||
67 | #define BAMBOO_SRAM_HIGH2 0x0ff800000ULL | ||
68 | #define BAMBOO_SRAM_SIZE 0x100000 | ||
69 | #define BAMBOO_NAND_FLASH_REG_ADDR 0x090000000ULL | ||
70 | #define BAMBOO_NAND_FLASH_REG_SIZE 0x2000 | ||
71 | |||
72 | /* | ||
73 | * Serial port defines | ||
74 | */ | ||
75 | #define RS_TABLE_SIZE 4 | ||
76 | |||
77 | #define UART0_IO_BASE 0xEF600300 | ||
78 | #define UART1_IO_BASE 0xEF600400 | ||
79 | #define UART2_IO_BASE 0xEF600500 | ||
80 | #define UART3_IO_BASE 0xEF600600 | ||
81 | |||
82 | #define BASE_BAUD 33177600/3/16 | ||
83 | #define UART0_INT 0 | ||
84 | #define UART1_INT 1 | ||
85 | #define UART2_INT 3 | ||
86 | #define UART3_INT 4 | ||
87 | |||
88 | #define STD_UART_OP(num) \ | ||
89 | { 0, BASE_BAUD, 0, UART##num##_INT, \ | ||
90 | (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST), \ | ||
91 | iomem_base: UART##num##_IO_BASE, \ | ||
92 | io_type: SERIAL_IO_MEM}, | ||
93 | |||
94 | #define SERIAL_PORT_DFNS \ | ||
95 | STD_UART_OP(0) \ | ||
96 | STD_UART_OP(1) \ | ||
97 | STD_UART_OP(2) \ | ||
98 | STD_UART_OP(3) | ||
99 | |||
100 | /* PCI support */ | ||
101 | #define BAMBOO_PCI_CFGA_PLB32 0xeec00000 | ||
102 | #define BAMBOO_PCI_CFGD_PLB32 0xeec00004 | ||
103 | |||
104 | #define BAMBOO_PCI_IO_BASE 0x00000000e8000000ULL | ||
105 | #define BAMBOO_PCI_IO_SIZE 0x00010000 | ||
106 | #define BAMBOO_PCI_MEM_OFFSET 0x00000000 | ||
107 | #define BAMBOO_PCI_PHY_MEM_BASE 0x00000000a0000000ULL | ||
108 | |||
109 | #define BAMBOO_PCI_LOWER_IO 0x00000000 | ||
110 | #define BAMBOO_PCI_UPPER_IO 0x0000ffff | ||
111 | #define BAMBOO_PCI_LOWER_MEM 0xa0000000 | ||
112 | #define BAMBOO_PCI_UPPER_MEM 0xafffffff | ||
113 | #define BAMBOO_PCI_MEM_BASE 0xa0000000 | ||
114 | |||
115 | #define BAMBOO_PCIL0_BASE 0x00000000ef400000ULL | ||
116 | #define BAMBOO_PCIL0_SIZE 0x40 | ||
117 | |||
118 | #define BAMBOO_PCIL0_PMM0LA 0x000 | ||
119 | #define BAMBOO_PCIL0_PMM0MA 0x004 | ||
120 | #define BAMBOO_PCIL0_PMM0PCILA 0x008 | ||
121 | #define BAMBOO_PCIL0_PMM0PCIHA 0x00C | ||
122 | #define BAMBOO_PCIL0_PMM1LA 0x010 | ||
123 | #define BAMBOO_PCIL0_PMM1MA 0x014 | ||
124 | #define BAMBOO_PCIL0_PMM1PCILA 0x018 | ||
125 | #define BAMBOO_PCIL0_PMM1PCIHA 0x01C | ||
126 | #define BAMBOO_PCIL0_PMM2LA 0x020 | ||
127 | #define BAMBOO_PCIL0_PMM2MA 0x024 | ||
128 | #define BAMBOO_PCIL0_PMM2PCILA 0x028 | ||
129 | #define BAMBOO_PCIL0_PMM2PCIHA 0x02C | ||
130 | #define BAMBOO_PCIL0_PTM1MS 0x030 | ||
131 | #define BAMBOO_PCIL0_PTM1LA 0x034 | ||
132 | #define BAMBOO_PCIL0_PTM2MS 0x038 | ||
133 | #define BAMBOO_PCIL0_PTM2LA 0x03C | ||
134 | |||
135 | #endif /* __ASM_BAMBOO_H__ */ | ||
136 | #endif /* __KERNEL__ */ | ||
diff --git a/arch/ppc/platforms/4xx/ebony.c b/arch/ppc/platforms/4xx/ebony.c index cd11734ef7c5..509e69a095f0 100644 --- a/arch/ppc/platforms/4xx/ebony.c +++ b/arch/ppc/platforms/4xx/ebony.c | |||
@@ -7,7 +7,7 @@ | |||
7 | * Copyright 2002-2005 MontaVista Software Inc. | 7 | * Copyright 2002-2005 MontaVista Software Inc. |
8 | * | 8 | * |
9 | * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net> | 9 | * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net> |
10 | * Copyright (c) 2003, 2004 Zultys Technologies | 10 | * Copyright (c) 2003-2005 Zultys Technologies |
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 |
@@ -50,6 +50,7 @@ | |||
50 | #include <asm/bootinfo.h> | 50 | #include <asm/bootinfo.h> |
51 | #include <asm/ppc4xx_pic.h> | 51 | #include <asm/ppc4xx_pic.h> |
52 | #include <asm/ppcboot.h> | 52 | #include <asm/ppcboot.h> |
53 | #include <asm/tlbflush.h> | ||
53 | 54 | ||
54 | #include <syslib/gen550.h> | 55 | #include <syslib/gen550.h> |
55 | #include <syslib/ibm440gp_common.h> | 56 | #include <syslib/ibm440gp_common.h> |
@@ -248,6 +249,9 @@ ebony_early_serial_map(void) | |||
248 | #if defined(CONFIG_SERIAL_TEXT_DEBUG) || defined(CONFIG_KGDB) | 249 | #if defined(CONFIG_SERIAL_TEXT_DEBUG) || defined(CONFIG_KGDB) |
249 | /* Configure debug serial access */ | 250 | /* Configure debug serial access */ |
250 | gen550_init(0, &port); | 251 | gen550_init(0, &port); |
252 | |||
253 | /* Purge TLB entry added in head_44x.S for early serial access */ | ||
254 | _tlbie(UART0_IO_BASE); | ||
251 | #endif | 255 | #endif |
252 | 256 | ||
253 | port.membase = ioremap64(PPC440GP_UART1_ADDR, 8); | 257 | port.membase = ioremap64(PPC440GP_UART1_ADDR, 8); |
diff --git a/arch/ppc/platforms/4xx/ebony.h b/arch/ppc/platforms/4xx/ebony.h index 47c391c9174d..d08faa46a0ae 100644 --- a/arch/ppc/platforms/4xx/ebony.h +++ b/arch/ppc/platforms/4xx/ebony.h | |||
@@ -56,9 +56,18 @@ | |||
56 | * Serial port defines | 56 | * Serial port defines |
57 | */ | 57 | */ |
58 | 58 | ||
59 | /* OpenBIOS defined UART mappings, used before early_serial_setup */ | 59 | #if defined(__BOOTER__) |
60 | /* OpenBIOS defined UART mappings, used by bootloader shim */ | ||
60 | #define UART0_IO_BASE 0xE0000200 | 61 | #define UART0_IO_BASE 0xE0000200 |
61 | #define UART1_IO_BASE 0xE0000300 | 62 | #define UART1_IO_BASE 0xE0000300 |
63 | #else | ||
64 | /* head_44x.S created UART mapping, used before early_serial_setup. | ||
65 | * We cannot use default OpenBIOS UART mappings because they | ||
66 | * don't work for configurations with more than 512M RAM. --ebs | ||
67 | */ | ||
68 | #define UART0_IO_BASE 0xF0000200 | ||
69 | #define UART1_IO_BASE 0xF0000300 | ||
70 | #endif | ||
62 | 71 | ||
63 | /* external Epson SG-615P */ | 72 | /* external Epson SG-615P */ |
64 | #define BASE_BAUD 691200 | 73 | #define BASE_BAUD 691200 |
@@ -66,7 +75,7 @@ | |||
66 | #define STD_UART_OP(num) \ | 75 | #define STD_UART_OP(num) \ |
67 | { 0, BASE_BAUD, 0, UART##num##_INT, \ | 76 | { 0, BASE_BAUD, 0, UART##num##_INT, \ |
68 | (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST), \ | 77 | (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST), \ |
69 | iomem_base: UART##num##_IO_BASE, \ | 78 | iomem_base: (void*)UART##num##_IO_BASE, \ |
70 | io_type: SERIAL_IO_MEM}, | 79 | io_type: SERIAL_IO_MEM}, |
71 | 80 | ||
72 | #define SERIAL_PORT_DFNS \ | 81 | #define SERIAL_PORT_DFNS \ |
diff --git a/arch/ppc/platforms/4xx/ibm440ep.c b/arch/ppc/platforms/4xx/ibm440ep.c new file mode 100644 index 000000000000..284da01f1ffd --- /dev/null +++ b/arch/ppc/platforms/4xx/ibm440ep.c | |||
@@ -0,0 +1,220 @@ | |||
1 | /* | ||
2 | * arch/ppc/platforms/4xx/ibm440ep.c | ||
3 | * | ||
4 | * PPC440EP I/O descriptions | ||
5 | * | ||
6 | * Wade Farnsworth <wfarnsworth@mvista.com> | ||
7 | * Copyright 2004 MontaVista Software Inc. | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License as published by the | ||
11 | * Free Software Foundation; either version 2 of the License, or (at your | ||
12 | * option) any later version. | ||
13 | * | ||
14 | */ | ||
15 | #include <linux/init.h> | ||
16 | #include <linux/module.h> | ||
17 | #include <platforms/4xx/ibm440ep.h> | ||
18 | #include <asm/ocp.h> | ||
19 | #include <asm/ppc4xx_pic.h> | ||
20 | |||
21 | static struct ocp_func_emac_data ibm440ep_emac0_def = { | ||
22 | .rgmii_idx = -1, /* No RGMII */ | ||
23 | .rgmii_mux = -1, /* No RGMII */ | ||
24 | .zmii_idx = 0, /* ZMII device index */ | ||
25 | .zmii_mux = 0, /* ZMII input of this EMAC */ | ||
26 | .mal_idx = 0, /* MAL device index */ | ||
27 | .mal_rx_chan = 0, /* MAL rx channel number */ | ||
28 | .mal_tx_chan = 0, /* MAL tx channel number */ | ||
29 | .wol_irq = 61, /* WOL interrupt number */ | ||
30 | .mdio_idx = -1, /* No shared MDIO */ | ||
31 | .tah_idx = -1, /* No TAH */ | ||
32 | }; | ||
33 | |||
34 | static struct ocp_func_emac_data ibm440ep_emac1_def = { | ||
35 | .rgmii_idx = -1, /* No RGMII */ | ||
36 | .rgmii_mux = -1, /* No RGMII */ | ||
37 | .zmii_idx = 0, /* ZMII device index */ | ||
38 | .zmii_mux = 1, /* ZMII input of this EMAC */ | ||
39 | .mal_idx = 0, /* MAL device index */ | ||
40 | .mal_rx_chan = 1, /* MAL rx channel number */ | ||
41 | .mal_tx_chan = 2, /* MAL tx channel number */ | ||
42 | .wol_irq = 63, /* WOL interrupt number */ | ||
43 | .mdio_idx = -1, /* No shared MDIO */ | ||
44 | .tah_idx = -1, /* No TAH */ | ||
45 | }; | ||
46 | OCP_SYSFS_EMAC_DATA() | ||
47 | |||
48 | static struct ocp_func_mal_data ibm440ep_mal0_def = { | ||
49 | .num_tx_chans = 4, /* Number of TX channels */ | ||
50 | .num_rx_chans = 2, /* Number of RX channels */ | ||
51 | .txeob_irq = 10, /* TX End Of Buffer IRQ */ | ||
52 | .rxeob_irq = 11, /* RX End Of Buffer IRQ */ | ||
53 | .txde_irq = 33, /* TX Descriptor Error IRQ */ | ||
54 | .rxde_irq = 34, /* RX Descriptor Error IRQ */ | ||
55 | .serr_irq = 32, /* MAL System Error IRQ */ | ||
56 | }; | ||
57 | OCP_SYSFS_MAL_DATA() | ||
58 | |||
59 | static struct ocp_func_iic_data ibm440ep_iic0_def = { | ||
60 | .fast_mode = 0, /* Use standad mode (100Khz) */ | ||
61 | }; | ||
62 | |||
63 | static struct ocp_func_iic_data ibm440ep_iic1_def = { | ||
64 | .fast_mode = 0, /* Use standad mode (100Khz) */ | ||
65 | }; | ||
66 | OCP_SYSFS_IIC_DATA() | ||
67 | |||
68 | struct ocp_def core_ocp[] = { | ||
69 | { .vendor = OCP_VENDOR_IBM, | ||
70 | .function = OCP_FUNC_OPB, | ||
71 | .index = 0, | ||
72 | .paddr = 0x0EF600000ULL, | ||
73 | .irq = OCP_IRQ_NA, | ||
74 | .pm = OCP_CPM_NA, | ||
75 | }, | ||
76 | { .vendor = OCP_VENDOR_IBM, | ||
77 | .function = OCP_FUNC_16550, | ||
78 | .index = 0, | ||
79 | .paddr = PPC440EP_UART0_ADDR, | ||
80 | .irq = UART0_INT, | ||
81 | .pm = IBM_CPM_UART0, | ||
82 | }, | ||
83 | { .vendor = OCP_VENDOR_IBM, | ||
84 | .function = OCP_FUNC_16550, | ||
85 | .index = 1, | ||
86 | .paddr = PPC440EP_UART1_ADDR, | ||
87 | .irq = UART1_INT, | ||
88 | .pm = IBM_CPM_UART1, | ||
89 | }, | ||
90 | { .vendor = OCP_VENDOR_IBM, | ||
91 | .function = OCP_FUNC_16550, | ||
92 | .index = 2, | ||
93 | .paddr = PPC440EP_UART2_ADDR, | ||
94 | .irq = UART2_INT, | ||
95 | .pm = IBM_CPM_UART2, | ||
96 | }, | ||
97 | { .vendor = OCP_VENDOR_IBM, | ||
98 | .function = OCP_FUNC_16550, | ||
99 | .index = 3, | ||
100 | .paddr = PPC440EP_UART3_ADDR, | ||
101 | .irq = UART3_INT, | ||
102 | .pm = IBM_CPM_UART3, | ||
103 | }, | ||
104 | { .vendor = OCP_VENDOR_IBM, | ||
105 | .function = OCP_FUNC_IIC, | ||
106 | .index = 0, | ||
107 | .paddr = 0x0EF600700ULL, | ||
108 | .irq = 2, | ||
109 | .pm = IBM_CPM_IIC0, | ||
110 | .additions = &ibm440ep_iic0_def, | ||
111 | .show = &ocp_show_iic_data | ||
112 | }, | ||
113 | { .vendor = OCP_VENDOR_IBM, | ||
114 | .function = OCP_FUNC_IIC, | ||
115 | .index = 1, | ||
116 | .paddr = 0x0EF600800ULL, | ||
117 | .irq = 7, | ||
118 | .pm = IBM_CPM_IIC1, | ||
119 | .additions = &ibm440ep_iic1_def, | ||
120 | .show = &ocp_show_iic_data | ||
121 | }, | ||
122 | { .vendor = OCP_VENDOR_IBM, | ||
123 | .function = OCP_FUNC_GPIO, | ||
124 | .index = 0, | ||
125 | .paddr = 0x0EF600B00ULL, | ||
126 | .irq = OCP_IRQ_NA, | ||
127 | .pm = IBM_CPM_GPIO0, | ||
128 | }, | ||
129 | { .vendor = OCP_VENDOR_IBM, | ||
130 | .function = OCP_FUNC_GPIO, | ||
131 | .index = 1, | ||
132 | .paddr = 0x0EF600C00ULL, | ||
133 | .irq = OCP_IRQ_NA, | ||
134 | .pm = OCP_CPM_NA, | ||
135 | }, | ||
136 | { .vendor = OCP_VENDOR_IBM, | ||
137 | .function = OCP_FUNC_MAL, | ||
138 | .paddr = OCP_PADDR_NA, | ||
139 | .irq = OCP_IRQ_NA, | ||
140 | .pm = OCP_CPM_NA, | ||
141 | .additions = &ibm440ep_mal0_def, | ||
142 | .show = &ocp_show_mal_data, | ||
143 | }, | ||
144 | { .vendor = OCP_VENDOR_IBM, | ||
145 | .function = OCP_FUNC_EMAC, | ||
146 | .index = 0, | ||
147 | .paddr = 0x0EF600E00ULL, | ||
148 | .irq = 60, | ||
149 | .pm = OCP_CPM_NA, | ||
150 | .additions = &ibm440ep_emac0_def, | ||
151 | .show = &ocp_show_emac_data, | ||
152 | }, | ||
153 | { .vendor = OCP_VENDOR_IBM, | ||
154 | .function = OCP_FUNC_EMAC, | ||
155 | .index = 1, | ||
156 | .paddr = 0x0EF600F00ULL, | ||
157 | .irq = 62, | ||
158 | .pm = OCP_CPM_NA, | ||
159 | .additions = &ibm440ep_emac1_def, | ||
160 | .show = &ocp_show_emac_data, | ||
161 | }, | ||
162 | { .vendor = OCP_VENDOR_IBM, | ||
163 | .function = OCP_FUNC_ZMII, | ||
164 | .paddr = 0x0EF600D00ULL, | ||
165 | .irq = OCP_IRQ_NA, | ||
166 | .pm = OCP_CPM_NA, | ||
167 | }, | ||
168 | { .vendor = OCP_VENDOR_INVALID | ||
169 | } | ||
170 | }; | ||
171 | |||
172 | /* Polarity and triggering settings for internal interrupt sources */ | ||
173 | struct ppc4xx_uic_settings ppc4xx_core_uic_cfg[] __initdata = { | ||
174 | { .polarity = 0xffbffe03, | ||
175 | .triggering = 0xfffffe00, | ||
176 | .ext_irq_mask = 0x000001fc, /* IRQ0 - IRQ6 */ | ||
177 | }, | ||
178 | { .polarity = 0xffffc6ef, | ||
179 | .triggering = 0xffffc7ff, | ||
180 | .ext_irq_mask = 0x00003800, /* IRQ7 - IRQ9 */ | ||
181 | }, | ||
182 | }; | ||
183 | |||
184 | static struct resource usb_gadget_resources[] = { | ||
185 | [0] = { | ||
186 | .start = 0x050000100ULL, | ||
187 | .end = 0x05000017FULL, | ||
188 | .flags = IORESOURCE_MEM, | ||
189 | }, | ||
190 | [1] = { | ||
191 | .start = 55, | ||
192 | .end = 55, | ||
193 | .flags = IORESOURCE_IRQ, | ||
194 | }, | ||
195 | }; | ||
196 | |||
197 | static u64 dma_mask = 0xffffffffULL; | ||
198 | |||
199 | static struct platform_device usb_gadget_device = { | ||
200 | .name = "musbhsfc", | ||
201 | .id = 0, | ||
202 | .num_resources = ARRAY_SIZE(usb_gadget_resources), | ||
203 | .resource = usb_gadget_resources, | ||
204 | .dev = { | ||
205 | .dma_mask = &dma_mask, | ||
206 | .coherent_dma_mask = 0xffffffffULL, | ||
207 | } | ||
208 | }; | ||
209 | |||
210 | static struct platform_device *ibm440ep_devs[] __initdata = { | ||
211 | &usb_gadget_device, | ||
212 | }; | ||
213 | |||
214 | static int __init | ||
215 | ibm440ep_platform_add_devices(void) | ||
216 | { | ||
217 | return platform_add_devices(ibm440ep_devs, ARRAY_SIZE(ibm440ep_devs)); | ||
218 | } | ||
219 | arch_initcall(ibm440ep_platform_add_devices); | ||
220 | |||
diff --git a/arch/ppc/platforms/4xx/ibm440ep.h b/arch/ppc/platforms/4xx/ibm440ep.h new file mode 100644 index 000000000000..97c80b8e3e10 --- /dev/null +++ b/arch/ppc/platforms/4xx/ibm440ep.h | |||
@@ -0,0 +1,76 @@ | |||
1 | /* | ||
2 | * arch/ppc/platforms/4xx/ibm440ep.h | ||
3 | * | ||
4 | * PPC440EP definitions | ||
5 | * | ||
6 | * Wade Farnsworth <wfarnsworth@mvista.com> | ||
7 | * | ||
8 | * Copyright 2002 Roland Dreier | ||
9 | * Copyright 2004 MontaVista Software, Inc. | ||
10 | * | ||
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 | ||
13 | * Free Software Foundation; either version 2 of the License, or (at your | ||
14 | * option) any later version. | ||
15 | * | ||
16 | */ | ||
17 | |||
18 | #ifdef __KERNEL__ | ||
19 | #ifndef __PPC_PLATFORMS_IBM440EP_H | ||
20 | #define __PPC_PLATFORMS_IBM440EP_H | ||
21 | |||
22 | #include <linux/config.h> | ||
23 | #include <asm/ibm44x.h> | ||
24 | |||
25 | /* UART */ | ||
26 | #define PPC440EP_UART0_ADDR 0x0EF600300 | ||
27 | #define PPC440EP_UART1_ADDR 0x0EF600400 | ||
28 | #define PPC440EP_UART2_ADDR 0x0EF600500 | ||
29 | #define PPC440EP_UART3_ADDR 0x0EF600600 | ||
30 | #define UART0_INT 0 | ||
31 | #define UART1_INT 1 | ||
32 | #define UART2_INT 3 | ||
33 | #define UART3_INT 4 | ||
34 | |||
35 | /* Clock and Power Management */ | ||
36 | #define IBM_CPM_IIC0 0x80000000 /* IIC interface */ | ||
37 | #define IBM_CPM_IIC1 0x40000000 /* IIC interface */ | ||
38 | #define IBM_CPM_PCI 0x20000000 /* PCI bridge */ | ||
39 | #define IBM_CPM_USB1H 0x08000000 /* USB 1.1 Host */ | ||
40 | #define IBM_CPM_FPU 0x04000000 /* floating point unit */ | ||
41 | #define IBM_CPM_CPU 0x02000000 /* processor core */ | ||
42 | #define IBM_CPM_DMA 0x01000000 /* DMA controller */ | ||
43 | #define IBM_CPM_BGO 0x00800000 /* PLB to OPB bus arbiter */ | ||
44 | #define IBM_CPM_BGI 0x00400000 /* OPB to PLB bridge */ | ||
45 | #define IBM_CPM_EBC 0x00200000 /* External Bus Controller */ | ||
46 | #define IBM_CPM_EBM 0x00100000 /* Ext Bus Master Interface */ | ||
47 | #define IBM_CPM_DMC 0x00080000 /* SDRAM peripheral controller */ | ||
48 | #define IBM_CPM_PLB4 0x00040000 /* PLB4 bus arbiter */ | ||
49 | #define IBM_CPM_PLB4x3 0x00020000 /* PLB4 to PLB3 bridge controller */ | ||
50 | #define IBM_CPM_PLB3x4 0x00010000 /* PLB3 to PLB4 bridge controller */ | ||
51 | #define IBM_CPM_PLB3 0x00008000 /* PLB3 bus arbiter */ | ||
52 | #define IBM_CPM_PPM 0x00002000 /* PLB Performance Monitor */ | ||
53 | #define IBM_CPM_UIC1 0x00001000 /* Universal Interrupt Controller */ | ||
54 | #define IBM_CPM_GPIO0 0x00000800 /* General Purpose IO (??) */ | ||
55 | #define IBM_CPM_GPT 0x00000400 /* General Purpose Timers */ | ||
56 | #define IBM_CPM_UART0 0x00000200 /* serial port 0 */ | ||
57 | #define IBM_CPM_UART1 0x00000100 /* serial port 1 */ | ||
58 | #define IBM_CPM_UIC0 0x00000080 /* Universal Interrupt Controller */ | ||
59 | #define IBM_CPM_TMRCLK 0x00000040 /* CPU timers */ | ||
60 | #define IBM_CPM_EMAC0 0x00000020 /* ethernet port 0 */ | ||
61 | #define IBM_CPM_EMAC1 0x00000010 /* ethernet port 1 */ | ||
62 | #define IBM_CPM_UART2 0x00000008 /* serial port 2 */ | ||
63 | #define IBM_CPM_UART3 0x00000004 /* serial port 3 */ | ||
64 | #define IBM_CPM_USB2D 0x00000002 /* USB 2.0 Device */ | ||
65 | #define IBM_CPM_USB2H 0x00000001 /* USB 2.0 Host */ | ||
66 | |||
67 | #define DFLT_IBM4xx_PM ~(IBM_CPM_UIC0 | IBM_CPM_UIC1 | IBM_CPM_CPU \ | ||
68 | | IBM_CPM_EBC | IBM_CPM_BGO | IBM_CPM_FPU \ | ||
69 | | IBM_CPM_EBM | IBM_CPM_PLB4 | IBM_CPM_3x4 \ | ||
70 | | IBM_CPM_PLB3 | IBM_CPM_PLB4x3 \ | ||
71 | | IBM_CPM_EMAC0 | IBM_CPM_TMRCLK \ | ||
72 | | IBM_CPM_DMA | IBM_CPM_PCI | IBM_CPM_EMAC1) | ||
73 | |||
74 | |||
75 | #endif /* __PPC_PLATFORMS_IBM440EP_H */ | ||
76 | #endif /* __KERNEL__ */ | ||
diff --git a/arch/ppc/platforms/4xx/ibm440sp.c b/arch/ppc/platforms/4xx/ibm440sp.c index a203efb47aba..fa3e003a0db9 100644 --- a/arch/ppc/platforms/4xx/ibm440sp.c +++ b/arch/ppc/platforms/4xx/ibm440sp.c | |||
@@ -36,8 +36,8 @@ static struct ocp_func_emac_data ibm440sp_emac0_def = { | |||
36 | OCP_SYSFS_EMAC_DATA() | 36 | OCP_SYSFS_EMAC_DATA() |
37 | 37 | ||
38 | static struct ocp_func_mal_data ibm440sp_mal0_def = { | 38 | static struct ocp_func_mal_data ibm440sp_mal0_def = { |
39 | .num_tx_chans = 4, /* Number of TX channels */ | 39 | .num_tx_chans = 1, /* Number of TX channels */ |
40 | .num_rx_chans = 4, /* Number of RX channels */ | 40 | .num_rx_chans = 1, /* Number of RX channels */ |
41 | .txeob_irq = 38, /* TX End Of Buffer IRQ */ | 41 | .txeob_irq = 38, /* TX End Of Buffer IRQ */ |
42 | .rxeob_irq = 39, /* RX End Of Buffer IRQ */ | 42 | .rxeob_irq = 39, /* RX End Of Buffer IRQ */ |
43 | .txde_irq = 34, /* TX Descriptor Error IRQ */ | 43 | .txde_irq = 34, /* TX Descriptor Error IRQ */ |
diff --git a/arch/ppc/platforms/4xx/ocotea.c b/arch/ppc/platforms/4xx/ocotea.c index 5f82a6bc7046..8fc34a344769 100644 --- a/arch/ppc/platforms/4xx/ocotea.c +++ b/arch/ppc/platforms/4xx/ocotea.c | |||
@@ -48,6 +48,7 @@ | |||
48 | #include <asm/bootinfo.h> | 48 | #include <asm/bootinfo.h> |
49 | #include <asm/ppc4xx_pic.h> | 49 | #include <asm/ppc4xx_pic.h> |
50 | #include <asm/ppcboot.h> | 50 | #include <asm/ppcboot.h> |
51 | #include <asm/tlbflush.h> | ||
51 | 52 | ||
52 | #include <syslib/gen550.h> | 53 | #include <syslib/gen550.h> |
53 | #include <syslib/ibm440gx_common.h> | 54 | #include <syslib/ibm440gx_common.h> |
@@ -266,6 +267,9 @@ ocotea_early_serial_map(void) | |||
266 | #if defined(CONFIG_SERIAL_TEXT_DEBUG) || defined(CONFIG_KGDB) | 267 | #if defined(CONFIG_SERIAL_TEXT_DEBUG) || defined(CONFIG_KGDB) |
267 | /* Configure debug serial access */ | 268 | /* Configure debug serial access */ |
268 | gen550_init(0, &port); | 269 | gen550_init(0, &port); |
270 | |||
271 | /* Purge TLB entry added in head_44x.S for early serial access */ | ||
272 | _tlbie(UART0_IO_BASE); | ||
269 | #endif | 273 | #endif |
270 | 274 | ||
271 | port.membase = ioremap64(PPC440GX_UART1_ADDR, 8); | 275 | port.membase = ioremap64(PPC440GX_UART1_ADDR, 8); |
diff --git a/arch/ppc/platforms/4xx/ocotea.h b/arch/ppc/platforms/4xx/ocotea.h index 202dc8251190..33251153ac5f 100644 --- a/arch/ppc/platforms/4xx/ocotea.h +++ b/arch/ppc/platforms/4xx/ocotea.h | |||
@@ -55,15 +55,24 @@ | |||
55 | */ | 55 | */ |
56 | #define RS_TABLE_SIZE 2 | 56 | #define RS_TABLE_SIZE 2 |
57 | 57 | ||
58 | /* OpenBIOS defined UART mappings, used before early_serial_setup */ | 58 | #if defined(__BOOTER__) |
59 | /* OpenBIOS defined UART mappings, used by bootloader shim */ | ||
59 | #define UART0_IO_BASE 0xE0000200 | 60 | #define UART0_IO_BASE 0xE0000200 |
60 | #define UART1_IO_BASE 0xE0000300 | 61 | #define UART1_IO_BASE 0xE0000300 |
62 | #else | ||
63 | /* head_44x.S created UART mapping, used before early_serial_setup. | ||
64 | * We cannot use default OpenBIOS UART mappings because they | ||
65 | * don't work for configurations with more than 512M RAM. --ebs | ||
66 | */ | ||
67 | #define UART0_IO_BASE 0xF0000200 | ||
68 | #define UART1_IO_BASE 0xF0000300 | ||
69 | #endif | ||
61 | 70 | ||
62 | #define BASE_BAUD 11059200/16 | 71 | #define BASE_BAUD 11059200/16 |
63 | #define STD_UART_OP(num) \ | 72 | #define STD_UART_OP(num) \ |
64 | { 0, BASE_BAUD, 0, UART##num##_INT, \ | 73 | { 0, BASE_BAUD, 0, UART##num##_INT, \ |
65 | (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST), \ | 74 | (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST), \ |
66 | iomem_base: UART##num##_IO_BASE, \ | 75 | iomem_base: (void*)UART##num##_IO_BASE, \ |
67 | io_type: SERIAL_IO_MEM}, | 76 | io_type: SERIAL_IO_MEM}, |
68 | 77 | ||
69 | #define SERIAL_PORT_DFNS \ | 78 | #define SERIAL_PORT_DFNS \ |
diff --git a/arch/ppc/platforms/85xx/mpc8560_ads.c b/arch/ppc/platforms/85xx/mpc8560_ads.c index e18380258b68..f2748c88665a 100644 --- a/arch/ppc/platforms/85xx/mpc8560_ads.c +++ b/arch/ppc/platforms/85xx/mpc8560_ads.c | |||
@@ -56,7 +56,6 @@ | |||
56 | #include <syslib/ppc85xx_common.h> | 56 | #include <syslib/ppc85xx_common.h> |
57 | #include <syslib/ppc85xx_setup.h> | 57 | #include <syslib/ppc85xx_setup.h> |
58 | 58 | ||
59 | extern void cpm2_reset(void); | ||
60 | 59 | ||
61 | /* ************************************************************************ | 60 | /* ************************************************************************ |
62 | * | 61 | * |
diff --git a/arch/ppc/platforms/85xx/mpc85xx_cds_common.c b/arch/ppc/platforms/85xx/mpc85xx_cds_common.c index b52c4317fefd..6267b294f704 100644 --- a/arch/ppc/platforms/85xx/mpc85xx_cds_common.c +++ b/arch/ppc/platforms/85xx/mpc85xx_cds_common.c | |||
@@ -49,7 +49,7 @@ | |||
49 | #include <asm/mpc85xx.h> | 49 | #include <asm/mpc85xx.h> |
50 | #include <asm/irq.h> | 50 | #include <asm/irq.h> |
51 | #include <asm/immap_85xx.h> | 51 | #include <asm/immap_85xx.h> |
52 | #include <asm/immap_cpm2.h> | 52 | #include <asm/cpm2.h> |
53 | #include <asm/ppc_sys.h> | 53 | #include <asm/ppc_sys.h> |
54 | #include <asm/kgdb.h> | 54 | #include <asm/kgdb.h> |
55 | 55 | ||
diff --git a/arch/ppc/platforms/85xx/stx_gp3.c b/arch/ppc/platforms/85xx/stx_gp3.c index bb41265cfc85..c99b365d6110 100644 --- a/arch/ppc/platforms/85xx/stx_gp3.c +++ b/arch/ppc/platforms/85xx/stx_gp3.c | |||
@@ -52,14 +52,13 @@ | |||
52 | #include <asm/mpc85xx.h> | 52 | #include <asm/mpc85xx.h> |
53 | #include <asm/irq.h> | 53 | #include <asm/irq.h> |
54 | #include <asm/immap_85xx.h> | 54 | #include <asm/immap_85xx.h> |
55 | #include <asm/immap_cpm2.h> | 55 | #include <asm/cpm2.h> |
56 | #include <asm/mpc85xx.h> | 56 | #include <asm/mpc85xx.h> |
57 | #include <asm/ppc_sys.h> | 57 | #include <asm/ppc_sys.h> |
58 | 58 | ||
59 | #include <syslib/cpm2_pic.h> | 59 | #include <syslib/cpm2_pic.h> |
60 | #include <syslib/ppc85xx_common.h> | 60 | #include <syslib/ppc85xx_common.h> |
61 | 61 | ||
62 | extern void cpm2_reset(void); | ||
63 | 62 | ||
64 | unsigned char __res[sizeof(bd_t)]; | 63 | unsigned char __res[sizeof(bd_t)]; |
65 | 64 | ||
diff --git a/arch/ppc/platforms/pmac_setup.c b/arch/ppc/platforms/pmac_setup.c index 4d324b630f4f..b392b9a15987 100644 --- a/arch/ppc/platforms/pmac_setup.c +++ b/arch/ppc/platforms/pmac_setup.c | |||
@@ -113,7 +113,7 @@ extern int pmac_newworld; | |||
113 | extern void zs_kgdb_hook(int tty_num); | 113 | extern void zs_kgdb_hook(int tty_num); |
114 | static void ohare_init(void); | 114 | static void ohare_init(void); |
115 | #ifdef CONFIG_BOOTX_TEXT | 115 | #ifdef CONFIG_BOOTX_TEXT |
116 | void pmac_progress(char *s, unsigned short hex); | 116 | static void pmac_progress(char *s, unsigned short hex); |
117 | #endif | 117 | #endif |
118 | 118 | ||
119 | sys_ctrler_t sys_ctrler = SYS_CTRLER_UNKNOWN; | 119 | sys_ctrler_t sys_ctrler = SYS_CTRLER_UNKNOWN; |
@@ -123,7 +123,7 @@ extern struct smp_ops_t psurge_smp_ops; | |||
123 | extern struct smp_ops_t core99_smp_ops; | 123 | extern struct smp_ops_t core99_smp_ops; |
124 | #endif /* CONFIG_SMP */ | 124 | #endif /* CONFIG_SMP */ |
125 | 125 | ||
126 | int __pmac | 126 | static int __pmac |
127 | pmac_show_cpuinfo(struct seq_file *m) | 127 | pmac_show_cpuinfo(struct seq_file *m) |
128 | { | 128 | { |
129 | struct device_node *np; | 129 | struct device_node *np; |
@@ -227,7 +227,7 @@ pmac_show_cpuinfo(struct seq_file *m) | |||
227 | return 0; | 227 | return 0; |
228 | } | 228 | } |
229 | 229 | ||
230 | int __openfirmware | 230 | static int __openfirmware |
231 | pmac_show_percpuinfo(struct seq_file *m, int i) | 231 | pmac_show_percpuinfo(struct seq_file *m, int i) |
232 | { | 232 | { |
233 | #ifdef CONFIG_CPU_FREQ_PMAC | 233 | #ifdef CONFIG_CPU_FREQ_PMAC |
@@ -415,7 +415,7 @@ find_ide_boot(void) | |||
415 | } | 415 | } |
416 | #endif /* CONFIG_BLK_DEV_IDE && CONFIG_BLK_DEV_IDE_PMAC */ | 416 | #endif /* CONFIG_BLK_DEV_IDE && CONFIG_BLK_DEV_IDE_PMAC */ |
417 | 417 | ||
418 | void __init | 418 | static void __init |
419 | find_boot_device(void) | 419 | find_boot_device(void) |
420 | { | 420 | { |
421 | #if defined(CONFIG_BLK_DEV_IDE) && defined(CONFIG_BLK_DEV_IDE_PMAC) | 421 | #if defined(CONFIG_BLK_DEV_IDE) && defined(CONFIG_BLK_DEV_IDE_PMAC) |
@@ -512,7 +512,7 @@ note_bootable_part(dev_t dev, int part, int goodness) | |||
512 | } | 512 | } |
513 | } | 513 | } |
514 | 514 | ||
515 | void __pmac | 515 | static void __pmac |
516 | pmac_restart(char *cmd) | 516 | pmac_restart(char *cmd) |
517 | { | 517 | { |
518 | #ifdef CONFIG_ADB_CUDA | 518 | #ifdef CONFIG_ADB_CUDA |
@@ -537,7 +537,7 @@ pmac_restart(char *cmd) | |||
537 | } | 537 | } |
538 | } | 538 | } |
539 | 539 | ||
540 | void __pmac | 540 | static void __pmac |
541 | pmac_power_off(void) | 541 | pmac_power_off(void) |
542 | { | 542 | { |
543 | #ifdef CONFIG_ADB_CUDA | 543 | #ifdef CONFIG_ADB_CUDA |
@@ -562,7 +562,7 @@ pmac_power_off(void) | |||
562 | } | 562 | } |
563 | } | 563 | } |
564 | 564 | ||
565 | void __pmac | 565 | static void __pmac |
566 | pmac_halt(void) | 566 | pmac_halt(void) |
567 | { | 567 | { |
568 | pmac_power_off(); | 568 | pmac_power_off(); |
@@ -700,7 +700,7 @@ pmac_init(unsigned long r3, unsigned long r4, unsigned long r5, | |||
700 | } | 700 | } |
701 | 701 | ||
702 | #ifdef CONFIG_BOOTX_TEXT | 702 | #ifdef CONFIG_BOOTX_TEXT |
703 | void __init | 703 | static void __init |
704 | pmac_progress(char *s, unsigned short hex) | 704 | pmac_progress(char *s, unsigned short hex) |
705 | { | 705 | { |
706 | if (boot_text_mapped) { | 706 | if (boot_text_mapped) { |
diff --git a/arch/ppc/platforms/prpmc750.c b/arch/ppc/platforms/prpmc750.c index c894e1ab5934..24ae1caafc61 100644 --- a/arch/ppc/platforms/prpmc750.c +++ b/arch/ppc/platforms/prpmc750.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <linux/ide.h> | 29 | #include <linux/ide.h> |
30 | #include <linux/root_dev.h> | 30 | #include <linux/root_dev.h> |
31 | #include <linux/slab.h> | 31 | #include <linux/slab.h> |
32 | #include <linux/serial_reg.h> | ||
32 | 33 | ||
33 | #include <asm/byteorder.h> | 34 | #include <asm/byteorder.h> |
34 | #include <asm/system.h> | 35 | #include <asm/system.h> |
diff --git a/arch/ppc/platforms/sandpoint.c b/arch/ppc/platforms/sandpoint.c index 8b149c2fc54f..21e31346b12b 100644 --- a/arch/ppc/platforms/sandpoint.c +++ b/arch/ppc/platforms/sandpoint.c | |||
@@ -311,19 +311,22 @@ sandpoint_setup_arch(void) | |||
311 | { | 311 | { |
312 | bd_t *bp = (bd_t *)__res; | 312 | bd_t *bp = (bd_t *)__res; |
313 | struct plat_serial8250_port *pdata; | 313 | struct plat_serial8250_port *pdata; |
314 | pdata = (struct plat_serial8250_port *) ppc_sys_get_pdata(MPC10X_DUART); | ||
315 | 314 | ||
315 | pdata = (struct plat_serial8250_port *) ppc_sys_get_pdata(MPC10X_UART0); | ||
316 | if (pdata) | 316 | if (pdata) |
317 | { | 317 | { |
318 | pdata[0].uartclk = bp->bi_busfreq; | 318 | pdata[0].uartclk = bp->bi_busfreq; |
319 | pdata[0].membase = ioremap(pdata[0].mapbase, 0x100); | 319 | } |
320 | 320 | ||
321 | /* this disables the 2nd serial port on the DUART | 321 | #ifdef CONFIG_SANDPOINT_ENABLE_UART1 |
322 | * since the sandpoint does not have it connected */ | 322 | pdata = (struct plat_serial8250_port *) ppc_sys_get_pdata(MPC10X_UART1); |
323 | pdata[1].uartclk = 0; | 323 | if (pdata) |
324 | pdata[1].irq = 0; | 324 | { |
325 | pdata[1].mapbase = 0; | 325 | pdata[0].uartclk = bp->bi_busfreq; |
326 | } | 326 | } |
327 | #else | ||
328 | ppc_sys_device_remove(MPC10X_UART1); | ||
329 | #endif | ||
327 | } | 330 | } |
328 | 331 | ||
329 | printk(KERN_INFO "Motorola SPS Sandpoint Test Platform\n"); | 332 | printk(KERN_INFO "Motorola SPS Sandpoint Test Platform\n"); |
diff --git a/arch/ppc/platforms/tqm8260_setup.c b/arch/ppc/platforms/tqm8260_setup.c index a8880bfc034b..3409139330b1 100644 --- a/arch/ppc/platforms/tqm8260_setup.c +++ b/arch/ppc/platforms/tqm8260_setup.c | |||
@@ -16,8 +16,8 @@ | |||
16 | 16 | ||
17 | #include <linux/init.h> | 17 | #include <linux/init.h> |
18 | 18 | ||
19 | #include <asm/immap_cpm2.h> | ||
20 | #include <asm/mpc8260.h> | 19 | #include <asm/mpc8260.h> |
20 | #include <asm/cpm2.h> | ||
21 | #include <asm/machdep.h> | 21 | #include <asm/machdep.h> |
22 | 22 | ||
23 | static int | 23 | static int |
diff --git a/arch/ppc/syslib/Makefile b/arch/ppc/syslib/Makefile index dec5bf4f6879..220a65ab0a51 100644 --- a/arch/ppc/syslib/Makefile +++ b/arch/ppc/syslib/Makefile | |||
@@ -11,6 +11,7 @@ obj-$(CONFIG_PPCBUG_NVRAM) += prep_nvram.o | |||
11 | obj-$(CONFIG_PPC_OCP) += ocp.o | 11 | obj-$(CONFIG_PPC_OCP) += ocp.o |
12 | obj-$(CONFIG_IBM_OCP) += ibm_ocp.o | 12 | obj-$(CONFIG_IBM_OCP) += ibm_ocp.o |
13 | obj-$(CONFIG_44x) += ibm44x_common.o | 13 | obj-$(CONFIG_44x) += ibm44x_common.o |
14 | obj-$(CONFIG_440EP) += ibm440gx_common.o | ||
14 | obj-$(CONFIG_440GP) += ibm440gp_common.o | 15 | obj-$(CONFIG_440GP) += ibm440gp_common.o |
15 | obj-$(CONFIG_440GX) += ibm440gx_common.o | 16 | obj-$(CONFIG_440GX) += ibm440gx_common.o |
16 | obj-$(CONFIG_440SP) += ibm440gx_common.o ibm440sp_common.o | 17 | obj-$(CONFIG_440SP) += ibm440gx_common.o ibm440sp_common.o |
@@ -44,6 +45,7 @@ obj-$(CONFIG_PPC_CHRP) += open_pic.o indirect_pci.o i8259.o | |||
44 | obj-$(CONFIG_PPC_PREP) += open_pic.o indirect_pci.o i8259.o todc_time.o | 45 | obj-$(CONFIG_PPC_PREP) += open_pic.o indirect_pci.o i8259.o todc_time.o |
45 | obj-$(CONFIG_ADIR) += i8259.o indirect_pci.o pci_auto.o \ | 46 | obj-$(CONFIG_ADIR) += i8259.o indirect_pci.o pci_auto.o \ |
46 | todc_time.o | 47 | todc_time.o |
48 | obj-$(CONFIG_BAMBOO) += indirect_pci.o pci_auto.o todc_time.o | ||
47 | obj-$(CONFIG_CPCI690) += todc_time.o pci_auto.o | 49 | obj-$(CONFIG_CPCI690) += todc_time.o pci_auto.o |
48 | obj-$(CONFIG_EBONY) += indirect_pci.o pci_auto.o todc_time.o | 50 | obj-$(CONFIG_EBONY) += indirect_pci.o pci_auto.o todc_time.o |
49 | obj-$(CONFIG_EV64260) += todc_time.o pci_auto.o | 51 | obj-$(CONFIG_EV64260) += todc_time.o pci_auto.o |
diff --git a/arch/ppc/syslib/cpm2_common.c b/arch/ppc/syslib/cpm2_common.c index 4c19a4ac7163..cbac44b1620c 100644 --- a/arch/ppc/syslib/cpm2_common.c +++ b/arch/ppc/syslib/cpm2_common.c | |||
@@ -27,7 +27,6 @@ | |||
27 | #include <asm/mpc8260.h> | 27 | #include <asm/mpc8260.h> |
28 | #include <asm/page.h> | 28 | #include <asm/page.h> |
29 | #include <asm/pgtable.h> | 29 | #include <asm/pgtable.h> |
30 | #include <asm/immap_cpm2.h> | ||
31 | #include <asm/cpm2.h> | 30 | #include <asm/cpm2.h> |
32 | #include <asm/rheap.h> | 31 | #include <asm/rheap.h> |
33 | 32 | ||
diff --git a/arch/ppc/syslib/ibm440gx_common.c b/arch/ppc/syslib/ibm440gx_common.c index 4ad85e0e0234..d4776af6a3ca 100644 --- a/arch/ppc/syslib/ibm440gx_common.c +++ b/arch/ppc/syslib/ibm440gx_common.c | |||
@@ -34,6 +34,10 @@ void __init ibm440gx_get_clocks(struct ibm44x_clocks* p, unsigned int sys_clk, | |||
34 | u32 plld = CPR_READ(DCRN_CPR_PLLD); | 34 | u32 plld = CPR_READ(DCRN_CPR_PLLD); |
35 | u32 uart0 = SDR_READ(DCRN_SDR_UART0); | 35 | u32 uart0 = SDR_READ(DCRN_SDR_UART0); |
36 | u32 uart1 = SDR_READ(DCRN_SDR_UART1); | 36 | u32 uart1 = SDR_READ(DCRN_SDR_UART1); |
37 | #ifdef CONFIG_440EP | ||
38 | u32 uart2 = SDR_READ(DCRN_SDR_UART2); | ||
39 | u32 uart3 = SDR_READ(DCRN_SDR_UART3); | ||
40 | #endif | ||
37 | 41 | ||
38 | /* Dividers */ | 42 | /* Dividers */ |
39 | u32 fbdv = __fix_zero((plld >> 24) & 0x1f, 32); | 43 | u32 fbdv = __fix_zero((plld >> 24) & 0x1f, 32); |
@@ -96,6 +100,17 @@ bypass: | |||
96 | p->uart1 = ser_clk; | 100 | p->uart1 = ser_clk; |
97 | else | 101 | else |
98 | p->uart1 = p->plb / __fix_zero(uart1 & 0xff, 256); | 102 | p->uart1 = p->plb / __fix_zero(uart1 & 0xff, 256); |
103 | #ifdef CONFIG_440EP | ||
104 | if (uart2 & 0x00800000) | ||
105 | p->uart2 = ser_clk; | ||
106 | else | ||
107 | p->uart2 = p->plb / __fix_zero(uart2 & 0xff, 256); | ||
108 | |||
109 | if (uart3 & 0x00800000) | ||
110 | p->uart3 = ser_clk; | ||
111 | else | ||
112 | p->uart3 = p->plb / __fix_zero(uart3 & 0xff, 256); | ||
113 | #endif | ||
99 | } | 114 | } |
100 | 115 | ||
101 | /* Issue L2C diagnostic command */ | 116 | /* Issue L2C diagnostic command */ |
diff --git a/arch/ppc/syslib/ibm44x_common.h b/arch/ppc/syslib/ibm44x_common.h index b14eb603ce01..c16b6a5ac6ab 100644 --- a/arch/ppc/syslib/ibm44x_common.h +++ b/arch/ppc/syslib/ibm44x_common.h | |||
@@ -29,6 +29,10 @@ struct ibm44x_clocks { | |||
29 | unsigned int ebc; /* PerClk */ | 29 | unsigned int ebc; /* PerClk */ |
30 | unsigned int uart0; | 30 | unsigned int uart0; |
31 | unsigned int uart1; | 31 | unsigned int uart1; |
32 | #ifdef CONFIG_440EP | ||
33 | unsigned int uart2; | ||
34 | unsigned int uart3; | ||
35 | #endif | ||
32 | }; | 36 | }; |
33 | 37 | ||
34 | /* common 44x platform init */ | 38 | /* common 44x platform init */ |
diff --git a/arch/ppc/syslib/m8260_setup.c b/arch/ppc/syslib/m8260_setup.c index fda75d79050c..8f80a42dfdb7 100644 --- a/arch/ppc/syslib/m8260_setup.c +++ b/arch/ppc/syslib/m8260_setup.c | |||
@@ -24,7 +24,7 @@ | |||
24 | #include <asm/io.h> | 24 | #include <asm/io.h> |
25 | #include <asm/pgtable.h> | 25 | #include <asm/pgtable.h> |
26 | #include <asm/mpc8260.h> | 26 | #include <asm/mpc8260.h> |
27 | #include <asm/immap_cpm2.h> | 27 | #include <asm/cpm2.h> |
28 | #include <asm/machdep.h> | 28 | #include <asm/machdep.h> |
29 | #include <asm/bootinfo.h> | 29 | #include <asm/bootinfo.h> |
30 | #include <asm/time.h> | 30 | #include <asm/time.h> |
@@ -33,7 +33,6 @@ | |||
33 | 33 | ||
34 | unsigned char __res[sizeof(bd_t)]; | 34 | unsigned char __res[sizeof(bd_t)]; |
35 | 35 | ||
36 | extern void cpm2_reset(void); | ||
37 | extern void pq2_find_bridges(void); | 36 | extern void pq2_find_bridges(void); |
38 | extern void pq2pci_init_irq(void); | 37 | extern void pq2pci_init_irq(void); |
39 | extern void idma_pci9_init(void); | 38 | extern void idma_pci9_init(void); |
diff --git a/arch/ppc/syslib/m82xx_pci.c b/arch/ppc/syslib/m82xx_pci.c index 5e7a7edcea74..9db58c587b46 100644 --- a/arch/ppc/syslib/m82xx_pci.c +++ b/arch/ppc/syslib/m82xx_pci.c | |||
@@ -238,9 +238,9 @@ pq2ads_setup_pci(struct pci_controller *hose) | |||
238 | * Setting required to enable IRQ1-IRQ7 (SIUMCR [DPPC]), | 238 | * Setting required to enable IRQ1-IRQ7 (SIUMCR [DPPC]), |
239 | * and local bus for PCI (SIUMCR [LBPC]). | 239 | * and local bus for PCI (SIUMCR [LBPC]). |
240 | */ | 240 | */ |
241 | immap->im_siu_conf.siu_82xx.sc_siumcr = (immap->im_siu_conf.sc_siumcr & | 241 | immap->im_siu_conf.siu_82xx.sc_siumcr = (immap->im_siu_conf.siu_82xx.sc_siumcr & |
242 | ~(SIUMCR_L2PC11 | SIUMCR_LBPC11 | SIUMCR_CS10PC11 | SIUMCR_APPC11) | | 242 | ~(SIUMCR_L2CPC11 | SIUMCR_LBPC11 | SIUMCR_CS10PC11 | SIUMCR_APPC11) | |
243 | SIUMCR_BBD | SIUMCR_LBPC01 | SIUMCR_DPPC11 | SIUMCR_APPC10; | 243 | SIUMCR_BBD | SIUMCR_LBPC01 | SIUMCR_DPPC11 | SIUMCR_APPC10); |
244 | #endif | 244 | #endif |
245 | /* Enable PCI */ | 245 | /* Enable PCI */ |
246 | immap->im_pci.pci_gcr = cpu_to_le32(PCIGCR_PCI_BUS_EN); | 246 | immap->im_pci.pci_gcr = cpu_to_le32(PCIGCR_PCI_BUS_EN); |
diff --git a/arch/ppc/syslib/m8xx_setup.c b/arch/ppc/syslib/m8xx_setup.c index c1db2ab1d154..55a381af4e37 100644 --- a/arch/ppc/syslib/m8xx_setup.c +++ b/arch/ppc/syslib/m8xx_setup.c | |||
@@ -57,7 +57,7 @@ unsigned char __res[sizeof(bd_t)]; | |||
57 | extern void m8xx_ide_init(void); | 57 | extern void m8xx_ide_init(void); |
58 | 58 | ||
59 | extern unsigned long find_available_memory(void); | 59 | extern unsigned long find_available_memory(void); |
60 | extern void m8xx_cpm_reset(uint cpm_page); | 60 | extern void m8xx_cpm_reset(); |
61 | extern void m8xx_wdt_handler_install(bd_t *bp); | 61 | extern void m8xx_wdt_handler_install(bd_t *bp); |
62 | extern void rpxfb_alloc_pages(void); | 62 | extern void rpxfb_alloc_pages(void); |
63 | extern void cpm_interrupt_init(void); | 63 | extern void cpm_interrupt_init(void); |
@@ -70,13 +70,9 @@ board_init(void) | |||
70 | void __init | 70 | void __init |
71 | m8xx_setup_arch(void) | 71 | m8xx_setup_arch(void) |
72 | { | 72 | { |
73 | int cpm_page; | ||
74 | |||
75 | cpm_page = (int) alloc_bootmem_pages(PAGE_SIZE); | ||
76 | |||
77 | /* Reset the Communication Processor Module. | 73 | /* Reset the Communication Processor Module. |
78 | */ | 74 | */ |
79 | m8xx_cpm_reset(cpm_page); | 75 | m8xx_cpm_reset(); |
80 | 76 | ||
81 | #ifdef CONFIG_FB_RPX | 77 | #ifdef CONFIG_FB_RPX |
82 | rpxfb_alloc_pages(); | 78 | rpxfb_alloc_pages(); |
diff --git a/arch/ppc/syslib/mpc10x_common.c b/arch/ppc/syslib/mpc10x_common.c index 8fc5f4154521..87065e2e4c5f 100644 --- a/arch/ppc/syslib/mpc10x_common.c +++ b/arch/ppc/syslib/mpc10x_common.c | |||
@@ -45,24 +45,29 @@ | |||
45 | #define MPC10X_DMA0_IRQ (EPIC_IRQ_BASE + 1 + NUM_8259_INTERRUPTS) | 45 | #define MPC10X_DMA0_IRQ (EPIC_IRQ_BASE + 1 + NUM_8259_INTERRUPTS) |
46 | #define MPC10X_DMA1_IRQ (EPIC_IRQ_BASE + 2 + NUM_8259_INTERRUPTS) | 46 | #define MPC10X_DMA1_IRQ (EPIC_IRQ_BASE + 2 + NUM_8259_INTERRUPTS) |
47 | #define MPC10X_UART0_IRQ (EPIC_IRQ_BASE + 4 + NUM_8259_INTERRUPTS) | 47 | #define MPC10X_UART0_IRQ (EPIC_IRQ_BASE + 4 + NUM_8259_INTERRUPTS) |
48 | #define MPC10X_UART1_IRQ (EPIC_IRQ_BASE + 5 + NUM_8259_INTERRUPTS) | ||
48 | #else | 49 | #else |
49 | #define MPC10X_I2C_IRQ -1 | 50 | #define MPC10X_I2C_IRQ -1 |
50 | #define MPC10X_DMA0_IRQ -1 | 51 | #define MPC10X_DMA0_IRQ -1 |
51 | #define MPC10X_DMA1_IRQ -1 | 52 | #define MPC10X_DMA1_IRQ -1 |
52 | #define MPC10X_UART0_IRQ -1 | 53 | #define MPC10X_UART0_IRQ -1 |
54 | #define MPC10X_UART1_IRQ -1 | ||
53 | #endif | 55 | #endif |
54 | 56 | ||
55 | static struct fsl_i2c_platform_data mpc10x_i2c_pdata = { | 57 | static struct fsl_i2c_platform_data mpc10x_i2c_pdata = { |
56 | .device_flags = 0, | 58 | .device_flags = 0, |
57 | }; | 59 | }; |
58 | 60 | ||
59 | static struct plat_serial8250_port serial_platform_data[] = { | 61 | static struct plat_serial8250_port serial_plat_uart0[] = { |
60 | [0] = { | 62 | [0] = { |
61 | .mapbase = 0x4500, | 63 | .mapbase = 0x4500, |
62 | .iotype = UPIO_MEM, | 64 | .iotype = UPIO_MEM, |
63 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST, | 65 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST, |
64 | }, | 66 | }, |
65 | [1] = { | 67 | { }, |
68 | }; | ||
69 | static struct plat_serial8250_port serial_plat_uart1[] = { | ||
70 | [0] = { | ||
66 | .mapbase = 0x4600, | 71 | .mapbase = 0x4600, |
67 | .iotype = UPIO_MEM, | 72 | .iotype = UPIO_MEM, |
68 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST, | 73 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST, |
@@ -133,11 +138,17 @@ struct platform_device ppc_sys_platform_devices[] = { | |||
133 | }, | 138 | }, |
134 | }, | 139 | }, |
135 | }, | 140 | }, |
136 | [MPC10X_DUART] = { | 141 | [MPC10X_UART0] = { |
137 | .name = "serial8250", | 142 | .name = "serial8250", |
138 | .id = 0, | 143 | .id = 0, |
139 | .dev.platform_data = serial_platform_data, | 144 | .dev.platform_data = serial_plat_uart0, |
140 | }, | 145 | }, |
146 | [MPC10X_UART1] = { | ||
147 | .name = "serial8250", | ||
148 | .id = 1, | ||
149 | .dev.platform_data = serial_plat_uart1, | ||
150 | }, | ||
151 | |||
141 | }; | 152 | }; |
142 | 153 | ||
143 | /* We use the PCI ID to match on */ | 154 | /* We use the PCI ID to match on */ |
@@ -147,10 +158,10 @@ struct ppc_sys_spec ppc_sys_specs[] = { | |||
147 | .ppc_sys_name = "8245", | 158 | .ppc_sys_name = "8245", |
148 | .mask = 0xFFFFFFFF, | 159 | .mask = 0xFFFFFFFF, |
149 | .value = MPC10X_BRIDGE_8245, | 160 | .value = MPC10X_BRIDGE_8245, |
150 | .num_devices = 4, | 161 | .num_devices = 5, |
151 | .device_list = (enum ppc_sys_devices[]) | 162 | .device_list = (enum ppc_sys_devices[]) |
152 | { | 163 | { |
153 | MPC10X_IIC1, MPC10X_DMA0, MPC10X_DMA1, MPC10X_DUART, | 164 | MPC10X_IIC1, MPC10X_DMA0, MPC10X_DMA1, MPC10X_UART0, MPC10X_UART1, |
154 | }, | 165 | }, |
155 | }, | 166 | }, |
156 | { | 167 | { |
@@ -180,6 +191,25 @@ struct ppc_sys_spec ppc_sys_specs[] = { | |||
180 | }, | 191 | }, |
181 | }; | 192 | }; |
182 | 193 | ||
194 | /* | ||
195 | * mach_mpc10x_fixup: This function enables DUART mode if it detects | ||
196 | * if it detects two UARTS in the platform device entries. | ||
197 | */ | ||
198 | static int __init mach_mpc10x_fixup(struct platform_device *pdev) | ||
199 | { | ||
200 | if (strncmp (pdev->name, "serial8250", 10) == 0 && pdev->id == 1) | ||
201 | writeb(readb(serial_plat_uart1[0].membase + 0x11) | 0x1, | ||
202 | serial_plat_uart1[0].membase + 0x11); | ||
203 | return 0; | ||
204 | } | ||
205 | |||
206 | static int __init mach_mpc10x_init(void) | ||
207 | { | ||
208 | ppc_sys_device_fixup = mach_mpc10x_fixup; | ||
209 | return 0; | ||
210 | } | ||
211 | postcore_initcall(mach_mpc10x_init); | ||
212 | |||
183 | /* Set resources to match bridge memory map */ | 213 | /* Set resources to match bridge memory map */ |
184 | void __init | 214 | void __init |
185 | mpc10x_bridge_set_resources(int map, struct pci_controller *hose) | 215 | mpc10x_bridge_set_resources(int map, struct pci_controller *hose) |
@@ -219,6 +249,7 @@ mpc10x_bridge_set_resources(int map, struct pci_controller *hose) | |||
219 | ppc_md.progress("mpc10x:exit1", 0x100); | 249 | ppc_md.progress("mpc10x:exit1", 0x100); |
220 | } | 250 | } |
221 | } | 251 | } |
252 | |||
222 | /* | 253 | /* |
223 | * Do some initialization and put the EUMB registers at the specified address | 254 | * Do some initialization and put the EUMB registers at the specified address |
224 | * (also map the EPIC registers into virtual space--OpenPIC_Addr will be set). | 255 | * (also map the EPIC registers into virtual space--OpenPIC_Addr will be set). |
@@ -411,11 +442,13 @@ mpc10x_bridge_init(struct pci_controller *hose, | |||
411 | ppc_sys_platform_devices[MPC10X_DMA1].resource[1].start = MPC10X_DMA1_IRQ; | 442 | ppc_sys_platform_devices[MPC10X_DMA1].resource[1].start = MPC10X_DMA1_IRQ; |
412 | ppc_sys_platform_devices[MPC10X_DMA1].resource[1].end = MPC10X_DMA1_IRQ; | 443 | ppc_sys_platform_devices[MPC10X_DMA1].resource[1].end = MPC10X_DMA1_IRQ; |
413 | 444 | ||
414 | serial_platform_data[0].mapbase += phys_eumb_base; | 445 | serial_plat_uart0[0].mapbase += phys_eumb_base; |
415 | serial_platform_data[0].irq = MPC10X_UART0_IRQ; | 446 | serial_plat_uart0[0].irq = MPC10X_UART0_IRQ; |
447 | serial_plat_uart0[0].membase = ioremap(serial_plat_uart0[0].mapbase, 0x100); | ||
416 | 448 | ||
417 | serial_platform_data[1].mapbase += phys_eumb_base; | 449 | serial_plat_uart1[0].mapbase += phys_eumb_base; |
418 | serial_platform_data[1].irq = MPC10X_UART0_IRQ + 1; | 450 | serial_plat_uart1[0].irq = MPC10X_UART1_IRQ; |
451 | serial_plat_uart1[0].membase = ioremap(serial_plat_uart1[0].mapbase, 0x100); | ||
419 | 452 | ||
420 | /* | 453 | /* |
421 | * 8240 erratum 26, 8241/8245 erratum 29, 107 erratum 23: speculative | 454 | * 8240 erratum 26, 8241/8245 erratum 29, 107 erratum 23: speculative |
diff --git a/arch/ppc/syslib/mpc83xx_devices.c b/arch/ppc/syslib/mpc83xx_devices.c index 75c8e9834ae7..5aaf0e58e1f9 100644 --- a/arch/ppc/syslib/mpc83xx_devices.c +++ b/arch/ppc/syslib/mpc83xx_devices.c | |||
@@ -191,8 +191,8 @@ struct platform_device ppc_sys_platform_devices[] = { | |||
191 | .num_resources = 2, | 191 | .num_resources = 2, |
192 | .resource = (struct resource[]) { | 192 | .resource = (struct resource[]) { |
193 | { | 193 | { |
194 | .start = 0x22000, | 194 | .start = 0x23000, |
195 | .end = 0x22fff, | 195 | .end = 0x23fff, |
196 | .flags = IORESOURCE_MEM, | 196 | .flags = IORESOURCE_MEM, |
197 | }, | 197 | }, |
198 | { | 198 | { |
@@ -208,8 +208,8 @@ struct platform_device ppc_sys_platform_devices[] = { | |||
208 | .num_resources = 2, | 208 | .num_resources = 2, |
209 | .resource = (struct resource[]) { | 209 | .resource = (struct resource[]) { |
210 | { | 210 | { |
211 | .start = 0x23000, | 211 | .start = 0x22000, |
212 | .end = 0x23fff, | 212 | .end = 0x22fff, |
213 | .flags = IORESOURCE_MEM, | 213 | .flags = IORESOURCE_MEM, |
214 | }, | 214 | }, |
215 | { | 215 | { |
diff --git a/arch/ppc/syslib/ppc85xx_setup.c b/arch/ppc/syslib/ppc85xx_setup.c index ca95d79a704e..b7242f1bd931 100644 --- a/arch/ppc/syslib/ppc85xx_setup.c +++ b/arch/ppc/syslib/ppc85xx_setup.c | |||
@@ -233,14 +233,14 @@ mpc85xx_setup_pci2(struct pci_controller *hose) | |||
233 | pci->powbar1 = (MPC85XX_PCI2_LOWER_MEM >> 12) & 0x000fffff; | 233 | pci->powbar1 = (MPC85XX_PCI2_LOWER_MEM >> 12) & 0x000fffff; |
234 | /* Enable, Mem R/W */ | 234 | /* Enable, Mem R/W */ |
235 | pci->powar1 = 0x80044000 | | 235 | pci->powar1 = 0x80044000 | |
236 | (__ilog2(MPC85XX_PCI1_UPPER_MEM - MPC85XX_PCI1_LOWER_MEM + 1) - 1); | 236 | (__ilog2(MPC85XX_PCI2_UPPER_MEM - MPC85XX_PCI2_LOWER_MEM + 1) - 1); |
237 | 237 | ||
238 | /* Setup outboud IO windows @ MPC85XX_PCI2_IO_BASE */ | 238 | /* Setup outboud IO windows @ MPC85XX_PCI2_IO_BASE */ |
239 | pci->potar2 = 0x00000000; | 239 | pci->potar2 = 0x00000000; |
240 | pci->potear2 = 0x00000000; | 240 | pci->potear2 = 0x00000000; |
241 | pci->powbar2 = (MPC85XX_PCI2_IO_BASE >> 12) & 0x000fffff; | 241 | pci->powbar2 = (MPC85XX_PCI2_IO_BASE >> 12) & 0x000fffff; |
242 | /* Enable, IO R/W */ | 242 | /* Enable, IO R/W */ |
243 | pci->powar2 = 0x80088000 | (__ilog2(MPC85XX_PCI1_IO_SIZE) - 1); | 243 | pci->powar2 = 0x80088000 | (__ilog2(MPC85XX_PCI2_IO_SIZE) - 1); |
244 | 244 | ||
245 | /* Setup 2G inbound Memory Window @ 0 */ | 245 | /* Setup 2G inbound Memory Window @ 0 */ |
246 | pci->pitar1 = 0x00000000; | 246 | pci->pitar1 = 0x00000000; |