diff options
Diffstat (limited to 'arch')
121 files changed, 7106 insertions, 1025 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index e55bbd32dcac..50d9f3e4e0f1 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -287,6 +287,7 @@ config ARCH_IXP2000 | |||
287 | config ARCH_IXP4XX | 287 | config ARCH_IXP4XX |
288 | bool "IXP4xx-based" | 288 | bool "IXP4xx-based" |
289 | depends on MMU | 289 | depends on MMU |
290 | select GENERIC_GPIO | ||
290 | select GENERIC_TIME | 291 | select GENERIC_TIME |
291 | select GENERIC_CLOCKEVENTS | 292 | select GENERIC_CLOCKEVENTS |
292 | help | 293 | help |
diff --git a/arch/arm/common/dmabounce.c b/arch/arm/common/dmabounce.c index 6fbe7722aa44..b36b1e8a105d 100644 --- a/arch/arm/common/dmabounce.c +++ b/arch/arm/common/dmabounce.c | |||
@@ -6,7 +6,7 @@ | |||
6 | * copy data to/from buffers located outside the DMA region. This | 6 | * copy data to/from buffers located outside the DMA region. This |
7 | * only works for systems in which DMA memory is at the bottom of | 7 | * only works for systems in which DMA memory is at the bottom of |
8 | * RAM, the remainder of memory is at the top and the DMA memory | 8 | * RAM, the remainder of memory is at the top and the DMA memory |
9 | * can be marked as ZONE_DMA. Anything beyond that such as discontigous | 9 | * can be marked as ZONE_DMA. Anything beyond that such as discontiguous |
10 | * DMA windows will require custom implementations that reserve memory | 10 | * DMA windows will require custom implementations that reserve memory |
11 | * areas at early bootup. | 11 | * areas at early bootup. |
12 | * | 12 | * |
diff --git a/arch/arm/common/gic.c b/arch/arm/common/gic.c index 4deece5fbdf4..0c89bd35e06f 100644 --- a/arch/arm/common/gic.c +++ b/arch/arm/common/gic.c | |||
@@ -72,7 +72,7 @@ static inline unsigned int gic_irq(unsigned int irq) | |||
72 | * unmask it, in the same way we need to unmask an interrupt when | 72 | * unmask it, in the same way we need to unmask an interrupt when |
73 | * we first enable it. | 73 | * we first enable it. |
74 | * | 74 | * |
75 | * The GIC has a seperate notion of "end of interrupt" to re-enable | 75 | * The GIC has a separate notion of "end of interrupt" to re-enable |
76 | * an interrupt after handling, in order to support hardware | 76 | * an interrupt after handling, in order to support hardware |
77 | * prioritisation. | 77 | * prioritisation. |
78 | * | 78 | * |
@@ -125,12 +125,11 @@ static void gic_set_cpu(unsigned int irq, cpumask_t mask_val) | |||
125 | } | 125 | } |
126 | #endif | 126 | #endif |
127 | 127 | ||
128 | static void fastcall gic_handle_cascade_irq(unsigned int irq, | 128 | static void gic_handle_cascade_irq(unsigned int irq, struct irq_desc *desc) |
129 | struct irq_desc *desc) | ||
130 | { | 129 | { |
131 | struct gic_chip_data *chip_data = get_irq_data(irq); | 130 | struct gic_chip_data *chip_data = get_irq_data(irq); |
132 | struct irq_chip *chip = get_irq_chip(irq); | 131 | struct irq_chip *chip = get_irq_chip(irq); |
133 | unsigned int cascade_irq; | 132 | unsigned int cascade_irq, gic_irq; |
134 | unsigned long status; | 133 | unsigned long status; |
135 | 134 | ||
136 | /* primary controller ack'ing */ | 135 | /* primary controller ack'ing */ |
@@ -140,16 +139,15 @@ static void fastcall gic_handle_cascade_irq(unsigned int irq, | |||
140 | status = readl(chip_data->cpu_base + GIC_CPU_INTACK); | 139 | status = readl(chip_data->cpu_base + GIC_CPU_INTACK); |
141 | spin_unlock(&irq_controller_lock); | 140 | spin_unlock(&irq_controller_lock); |
142 | 141 | ||
143 | cascade_irq = (status & 0x3ff); | 142 | gic_irq = (status & 0x3ff); |
144 | if (cascade_irq > 1020) | 143 | if (gic_irq == 1023) |
145 | goto out; | 144 | goto out; |
146 | if (cascade_irq < 32 || cascade_irq >= NR_IRQS) { | ||
147 | do_bad_IRQ(cascade_irq, desc); | ||
148 | goto out; | ||
149 | } | ||
150 | 145 | ||
151 | cascade_irq += chip_data->irq_offset; | 146 | cascade_irq = gic_irq + chip_data->irq_offset; |
152 | generic_handle_irq(cascade_irq); | 147 | if (unlikely(gic_irq < 32 || gic_irq > 1020 || cascade_irq >= NR_IRQS)) |
148 | do_bad_IRQ(cascade_irq, desc); | ||
149 | else | ||
150 | generic_handle_irq(cascade_irq); | ||
153 | 151 | ||
154 | out: | 152 | out: |
155 | /* primary controller unmasking */ | 153 | /* primary controller unmasking */ |
diff --git a/arch/arm/common/sharpsl_param.c b/arch/arm/common/sharpsl_param.c index c94864c5b1af..aad4d94ba8f5 100644 --- a/arch/arm/common/sharpsl_param.c +++ b/arch/arm/common/sharpsl_param.c | |||
@@ -20,7 +20,7 @@ | |||
20 | * typically including LCD parameters are loaded by the bootloader at the | 20 | * typically including LCD parameters are loaded by the bootloader at the |
21 | * address PARAM_BASE. As the kernel will overwrite them, we need to store | 21 | * address PARAM_BASE. As the kernel will overwrite them, we need to store |
22 | * them early in the boot process, then pass them to the appropriate drivers. | 22 | * them early in the boot process, then pass them to the appropriate drivers. |
23 | * Not all devices use all paramaters but the format is common to all. | 23 | * Not all devices use all parameters but the format is common to all. |
24 | */ | 24 | */ |
25 | #ifdef CONFIG_ARCH_SA1100 | 25 | #ifdef CONFIG_ARCH_SA1100 |
26 | #define PARAM_BASE 0xe8ffc000 | 26 | #define PARAM_BASE 0xe8ffc000 |
diff --git a/arch/arm/common/sharpsl_pm.c b/arch/arm/common/sharpsl_pm.c index 5972df2b9af4..3bf3a927ae22 100644 --- a/arch/arm/common/sharpsl_pm.c +++ b/arch/arm/common/sharpsl_pm.c | |||
@@ -153,7 +153,7 @@ static void sharpsl_battery_thread(struct work_struct *private_) | |||
153 | sharpsl_pm.battstat.mainbat_percent = percent; | 153 | sharpsl_pm.battstat.mainbat_percent = percent; |
154 | } | 154 | } |
155 | 155 | ||
156 | dev_dbg(sharpsl_pm.dev, "Battery: voltage: %d, status: %d, percentage: %d, time: %d\n", voltage, | 156 | dev_dbg(sharpsl_pm.dev, "Battery: voltage: %d, status: %d, percentage: %d, time: %ld\n", voltage, |
157 | sharpsl_pm.battstat.mainbat_status, sharpsl_pm.battstat.mainbat_percent, jiffies); | 157 | sharpsl_pm.battstat.mainbat_status, sharpsl_pm.battstat.mainbat_percent, jiffies); |
158 | 158 | ||
159 | /* If battery is low. limit backlight intensity to save power. */ | 159 | /* If battery is low. limit backlight intensity to save power. */ |
@@ -291,7 +291,7 @@ static void sharpsl_chrg_full_timer(unsigned long data) | |||
291 | } | 291 | } |
292 | 292 | ||
293 | /* Charging Finished Interrupt (Not present on Corgi) */ | 293 | /* Charging Finished Interrupt (Not present on Corgi) */ |
294 | /* Can trigger at the same time as an AC staus change so | 294 | /* Can trigger at the same time as an AC status change so |
295 | delay until after that has been processed */ | 295 | delay until after that has been processed */ |
296 | irqreturn_t sharpsl_chrg_full_isr(int irq, void *dev_id) | 296 | irqreturn_t sharpsl_chrg_full_isr(int irq, void *dev_id) |
297 | { | 297 | { |
@@ -625,7 +625,7 @@ static int sharpsl_fatal_check(void) | |||
625 | } | 625 | } |
626 | 626 | ||
627 | temp = get_select_val(buff); | 627 | temp = get_select_val(buff); |
628 | dev_dbg(sharpsl_pm.dev, "sharpsl_fatal_check: acin: %d, discharge voltage: %d, no discharge: %d\n", acin, temp, sharpsl_pm.machinfo->read_devdata(SHARPSL_BATT_VOLT)); | 628 | dev_dbg(sharpsl_pm.dev, "sharpsl_fatal_check: acin: %d, discharge voltage: %d, no discharge: %ld\n", acin, temp, sharpsl_pm.machinfo->read_devdata(SHARPSL_BATT_VOLT)); |
629 | 629 | ||
630 | if ((acin && (temp < sharpsl_pm.machinfo->fatal_acin_volt)) || | 630 | if ((acin && (temp < sharpsl_pm.machinfo->fatal_acin_volt)) || |
631 | (!acin && (temp < sharpsl_pm.machinfo->fatal_noacin_volt))) | 631 | (!acin && (temp < sharpsl_pm.machinfo->fatal_noacin_volt))) |
@@ -635,7 +635,7 @@ static int sharpsl_fatal_check(void) | |||
635 | 635 | ||
636 | static int sharpsl_off_charge_error(void) | 636 | static int sharpsl_off_charge_error(void) |
637 | { | 637 | { |
638 | dev_err(sharpsl_pm.dev, "Offline Charger: Error occured.\n"); | 638 | dev_err(sharpsl_pm.dev, "Offline Charger: Error occurred.\n"); |
639 | sharpsl_pm.machinfo->charge(0); | 639 | sharpsl_pm.machinfo->charge(0); |
640 | sharpsl_pm_led(SHARPSL_LED_ERROR); | 640 | sharpsl_pm_led(SHARPSL_LED_ERROR); |
641 | sharpsl_pm.charge_mode = CHRG_ERROR; | 641 | sharpsl_pm.charge_mode = CHRG_ERROR; |
@@ -691,14 +691,14 @@ static int sharpsl_off_charge_battery(void) | |||
691 | 691 | ||
692 | time = RCNR; | 692 | time = RCNR; |
693 | while(1) { | 693 | while(1) { |
694 | /* Check if any wakeup event had occured */ | 694 | /* Check if any wakeup event had occurred */ |
695 | if (sharpsl_pm.machinfo->charger_wakeup() != 0) | 695 | if (sharpsl_pm.machinfo->charger_wakeup() != 0) |
696 | return 0; | 696 | return 0; |
697 | /* Check for timeout */ | 697 | /* Check for timeout */ |
698 | if ((RCNR - time) > SHARPSL_WAIT_CO_TIME) | 698 | if ((RCNR - time) > SHARPSL_WAIT_CO_TIME) |
699 | return 1; | 699 | return 1; |
700 | if (sharpsl_pm.machinfo->read_devdata(SHARPSL_STATUS_CHRGFULL)) { | 700 | if (sharpsl_pm.machinfo->read_devdata(SHARPSL_STATUS_CHRGFULL)) { |
701 | dev_dbg(sharpsl_pm.dev, "Offline Charger: Charge full occured. Retrying to check\n"); | 701 | dev_dbg(sharpsl_pm.dev, "Offline Charger: Charge full occurred. Retrying to check\n"); |
702 | sharpsl_pm.full_count++; | 702 | sharpsl_pm.full_count++; |
703 | sharpsl_pm.machinfo->charge(0); | 703 | sharpsl_pm.machinfo->charge(0); |
704 | mdelay(SHARPSL_CHARGE_WAIT_TIME); | 704 | mdelay(SHARPSL_CHARGE_WAIT_TIME); |
@@ -714,7 +714,7 @@ static int sharpsl_off_charge_battery(void) | |||
714 | 714 | ||
715 | time = RCNR; | 715 | time = RCNR; |
716 | while(1) { | 716 | while(1) { |
717 | /* Check if any wakeup event had occured */ | 717 | /* Check if any wakeup event had occurred */ |
718 | if (sharpsl_pm.machinfo->charger_wakeup() != 0) | 718 | if (sharpsl_pm.machinfo->charger_wakeup() != 0) |
719 | return 0; | 719 | return 0; |
720 | /* Check for timeout */ | 720 | /* Check for timeout */ |
@@ -774,6 +774,8 @@ static struct pm_ops sharpsl_pm_ops = { | |||
774 | 774 | ||
775 | static int __init sharpsl_pm_probe(struct platform_device *pdev) | 775 | static int __init sharpsl_pm_probe(struct platform_device *pdev) |
776 | { | 776 | { |
777 | int ret; | ||
778 | |||
777 | if (!pdev->dev.platform_data) | 779 | if (!pdev->dev.platform_data) |
778 | return -EINVAL; | 780 | return -EINVAL; |
779 | 781 | ||
@@ -792,8 +794,10 @@ static int __init sharpsl_pm_probe(struct platform_device *pdev) | |||
792 | 794 | ||
793 | sharpsl_pm.machinfo->init(); | 795 | sharpsl_pm.machinfo->init(); |
794 | 796 | ||
795 | device_create_file(&pdev->dev, &dev_attr_battery_percentage); | 797 | ret = device_create_file(&pdev->dev, &dev_attr_battery_percentage); |
796 | device_create_file(&pdev->dev, &dev_attr_battery_voltage); | 798 | ret |= device_create_file(&pdev->dev, &dev_attr_battery_voltage); |
799 | if (ret != 0) | ||
800 | dev_warn(&pdev->dev, "Failed to register attributes (%d)\n", ret); | ||
797 | 801 | ||
798 | apm_get_power_status = sharpsl_apm_get_power_status; | 802 | apm_get_power_status = sharpsl_apm_get_power_status; |
799 | 803 | ||
diff --git a/arch/arm/kernel/asm-offsets.c b/arch/arm/kernel/asm-offsets.c index 3c078e346753..3278e713c32a 100644 --- a/arch/arm/kernel/asm-offsets.c +++ b/arch/arm/kernel/asm-offsets.c | |||
@@ -85,7 +85,7 @@ int main(void) | |||
85 | DEFINE(S_OLD_R0, offsetof(struct pt_regs, ARM_ORIG_r0)); | 85 | DEFINE(S_OLD_R0, offsetof(struct pt_regs, ARM_ORIG_r0)); |
86 | DEFINE(S_FRAME_SIZE, sizeof(struct pt_regs)); | 86 | DEFINE(S_FRAME_SIZE, sizeof(struct pt_regs)); |
87 | BLANK(); | 87 | BLANK(); |
88 | #if __LINUX_ARM_ARCH__ >= 6 | 88 | #ifdef CONFIG_CPU_HAS_ASID |
89 | DEFINE(MM_CONTEXT_ID, offsetof(struct mm_struct, context.id)); | 89 | DEFINE(MM_CONTEXT_ID, offsetof(struct mm_struct, context.id)); |
90 | BLANK(); | 90 | BLANK(); |
91 | #endif | 91 | #endif |
diff --git a/arch/arm/kernel/calls.S b/arch/arm/kernel/calls.S index ae89cdd82b16..19326d7cdeb3 100644 --- a/arch/arm/kernel/calls.S +++ b/arch/arm/kernel/calls.S | |||
@@ -357,6 +357,10 @@ | |||
357 | /* 345 */ CALL(sys_getcpu) | 357 | /* 345 */ CALL(sys_getcpu) |
358 | CALL(sys_ni_syscall) /* eventually epoll_pwait */ | 358 | CALL(sys_ni_syscall) /* eventually epoll_pwait */ |
359 | CALL(sys_kexec_load) | 359 | CALL(sys_kexec_load) |
360 | CALL(sys_utimensat) | ||
361 | CALL(sys_signalfd) | ||
362 | /* 350 */ CALL(sys_timerfd) | ||
363 | CALL(sys_eventfd) | ||
360 | #ifndef syscalls_counted | 364 | #ifndef syscalls_counted |
361 | .equ syscalls_padding, ((NR_syscalls + 3) & ~3) - NR_syscalls | 365 | .equ syscalls_padding, ((NR_syscalls + 3) & ~3) - NR_syscalls |
362 | #define syscalls_counted | 366 | #define syscalls_counted |
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index 0453dcc757b4..650eac1bc0a6 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c | |||
@@ -918,7 +918,7 @@ static int c_show(struct seq_file *m, void *v) | |||
918 | 918 | ||
919 | if ((processor_id & 0x0008f000) == 0x00000000) { | 919 | if ((processor_id & 0x0008f000) == 0x00000000) { |
920 | /* pre-ARM7 */ | 920 | /* pre-ARM7 */ |
921 | seq_printf(m, "CPU part\t\t: %07x\n", processor_id >> 4); | 921 | seq_printf(m, "CPU part\t: %07x\n", processor_id >> 4); |
922 | } else { | 922 | } else { |
923 | if ((processor_id & 0x0008f000) == 0x00007000) { | 923 | if ((processor_id & 0x0008f000) == 0x00007000) { |
924 | /* ARM7 */ | 924 | /* ARM7 */ |
diff --git a/arch/arm/kernel/sys_arm.c b/arch/arm/kernel/sys_arm.c index 3d4fcbc16276..1ca2d5174fcb 100644 --- a/arch/arm/kernel/sys_arm.c +++ b/arch/arm/kernel/sys_arm.c | |||
@@ -320,7 +320,7 @@ int kernel_execve(const char *filename, char *const argv[], char *const envp[]) | |||
320 | EXPORT_SYMBOL(kernel_execve); | 320 | EXPORT_SYMBOL(kernel_execve); |
321 | 321 | ||
322 | /* | 322 | /* |
323 | * Since loff_t is a 64 bit type we avoid a lot of ABI hastle | 323 | * Since loff_t is a 64 bit type we avoid a lot of ABI hassle |
324 | * with a different argument ordering. | 324 | * with a different argument ordering. |
325 | */ | 325 | */ |
326 | asmlinkage long sys_arm_fadvise64_64(int fd, int advice, | 326 | asmlinkage long sys_arm_fadvise64_64(int fd, int advice, |
diff --git a/arch/arm/lib/bitops.h b/arch/arm/lib/bitops.h index 542251021744..2e787d40d599 100644 --- a/arch/arm/lib/bitops.h +++ b/arch/arm/lib/bitops.h | |||
@@ -47,7 +47,7 @@ | |||
47 | * @store: store instruction | 47 | * @store: store instruction |
48 | * | 48 | * |
49 | * Note: we can trivially conditionalise the store instruction | 49 | * Note: we can trivially conditionalise the store instruction |
50 | * to avoid dirting the data cache. | 50 | * to avoid dirtying the data cache. |
51 | */ | 51 | */ |
52 | .macro testop, instr, store | 52 | .macro testop, instr, store |
53 | add r1, r1, r0, lsr #3 | 53 | add r1, r1, r0, lsr #3 |
diff --git a/arch/arm/mach-at91/board-carmeva.c b/arch/arm/mach-at91/board-carmeva.c index b4518619063a..76ec856cd4f9 100644 --- a/arch/arm/mach-at91/board-carmeva.c +++ b/arch/arm/mach-at91/board-carmeva.c | |||
@@ -79,7 +79,7 @@ static struct at91_udc_data __initdata carmeva_udc_data = { | |||
79 | .pullup_pin = AT91_PIN_PD9, | 79 | .pullup_pin = AT91_PIN_PD9, |
80 | }; | 80 | }; |
81 | 81 | ||
82 | /* FIXME: user dependend */ | 82 | /* FIXME: user dependant */ |
83 | // static struct at91_cf_data __initdata carmeva_cf_data = { | 83 | // static struct at91_cf_data __initdata carmeva_cf_data = { |
84 | // .det_pin = AT91_PIN_PB0, | 84 | // .det_pin = AT91_PIN_PB0, |
85 | // .rst_pin = AT91_PIN_PC5, | 85 | // .rst_pin = AT91_PIN_PC5, |
@@ -100,17 +100,17 @@ static struct spi_board_info carmeva_spi_devices[] = { | |||
100 | .chip_select = 0, | 100 | .chip_select = 0, |
101 | .max_speed_hz = 10 * 1000 * 1000, | 101 | .max_speed_hz = 10 * 1000 * 1000, |
102 | }, | 102 | }, |
103 | { /* User accessable spi - cs1 (250KHz) */ | 103 | { /* User accessible spi - cs1 (250KHz) */ |
104 | .modalias = "spi-cs1", | 104 | .modalias = "spi-cs1", |
105 | .chip_select = 1, | 105 | .chip_select = 1, |
106 | .max_speed_hz = 250 * 1000, | 106 | .max_speed_hz = 250 * 1000, |
107 | }, | 107 | }, |
108 | { /* User accessable spi - cs2 (1MHz) */ | 108 | { /* User accessible spi - cs2 (1MHz) */ |
109 | .modalias = "spi-cs2", | 109 | .modalias = "spi-cs2", |
110 | .chip_select = 2, | 110 | .chip_select = 2, |
111 | .max_speed_hz = 1 * 1000 * 1000, | 111 | .max_speed_hz = 1 * 1000 * 1000, |
112 | }, | 112 | }, |
113 | { /* User accessable spi - cs3 (10MHz) */ | 113 | { /* User accessible spi - cs3 (10MHz) */ |
114 | .modalias = "spi-cs3", | 114 | .modalias = "spi-cs3", |
115 | .chip_select = 3, | 115 | .chip_select = 3, |
116 | .max_speed_hz = 10 * 1000 * 1000, | 116 | .max_speed_hz = 10 * 1000 * 1000, |
diff --git a/arch/arm/mach-h720x/cpu-h7202.c b/arch/arm/mach-h720x/cpu-h7202.c index 82e420d6fd19..0a1a25fb8ba8 100644 --- a/arch/arm/mach-h720x/cpu-h7202.c +++ b/arch/arm/mach-h720x/cpu-h7202.c | |||
@@ -143,7 +143,7 @@ h7202_timer_interrupt(int irq, void *dev_id) | |||
143 | } | 143 | } |
144 | 144 | ||
145 | /* | 145 | /* |
146 | * mask multiplexed timer irq's | 146 | * mask multiplexed timer IRQs |
147 | */ | 147 | */ |
148 | static void inline mask_timerx_irq (u32 irq) | 148 | static void inline mask_timerx_irq (u32 irq) |
149 | { | 149 | { |
@@ -153,7 +153,7 @@ static void inline mask_timerx_irq (u32 irq) | |||
153 | } | 153 | } |
154 | 154 | ||
155 | /* | 155 | /* |
156 | * unmask multiplexed timer irq's | 156 | * unmask multiplexed timer IRQs |
157 | */ | 157 | */ |
158 | static void inline unmask_timerx_irq (u32 irq) | 158 | static void inline unmask_timerx_irq (u32 irq) |
159 | { | 159 | { |
diff --git a/arch/arm/mach-imx/cpufreq.c b/arch/arm/mach-imx/cpufreq.c index 7e70e0b0b989..467d899fbe75 100644 --- a/arch/arm/mach-imx/cpufreq.c +++ b/arch/arm/mach-imx/cpufreq.c | |||
@@ -245,7 +245,7 @@ static int imx_set_target(struct cpufreq_policy *policy, | |||
245 | if(mpctl0) { | 245 | if(mpctl0) { |
246 | CSCR |= CSCR_MPLL_RESTART; | 246 | CSCR |= CSCR_MPLL_RESTART; |
247 | 247 | ||
248 | /* Wait until MPLL is stablized */ | 248 | /* Wait until MPLL is stabilized */ |
249 | while( CSCR & CSCR_MPLL_RESTART ); | 249 | while( CSCR & CSCR_MPLL_RESTART ); |
250 | 250 | ||
251 | imx_set_async_mode(); | 251 | imx_set_async_mode(); |
diff --git a/arch/arm/mach-imx/dma.c b/arch/arm/mach-imx/dma.c index 6d50d85a618c..bc6fb02d213b 100644 --- a/arch/arm/mach-imx/dma.c +++ b/arch/arm/mach-imx/dma.c | |||
@@ -131,7 +131,7 @@ imx_dma_setup_sg_base(imx_dmach_t dma_ch, | |||
131 | * The function setups DMA channel source and destination addresses for transfer | 131 | * The function setups DMA channel source and destination addresses for transfer |
132 | * specified by provided parameters. The scatter-gather emulation is disabled, | 132 | * specified by provided parameters. The scatter-gather emulation is disabled, |
133 | * because linear data block | 133 | * because linear data block |
134 | * form the physical address range is transfered. | 134 | * form the physical address range is transferred. |
135 | * Return value: if incorrect parameters are provided -%EINVAL. | 135 | * Return value: if incorrect parameters are provided -%EINVAL. |
136 | * Zero indicates success. | 136 | * Zero indicates success. |
137 | */ | 137 | */ |
@@ -192,7 +192,7 @@ imx_dma_setup_single(imx_dmach_t dma_ch, dma_addr_t dma_address, | |||
192 | * @dmamode: DMA transfer mode, %DMA_MODE_READ from the device to the memory | 192 | * @dmamode: DMA transfer mode, %DMA_MODE_READ from the device to the memory |
193 | * or %DMA_MODE_WRITE from memory to the device | 193 | * or %DMA_MODE_WRITE from memory to the device |
194 | * | 194 | * |
195 | * The function setups DMA channel state and registers to be ready for transfer | 195 | * The function sets up DMA channel state and registers to be ready for transfer |
196 | * specified by provided parameters. The scatter-gather emulation is set up | 196 | * specified by provided parameters. The scatter-gather emulation is set up |
197 | * according to the parameters. | 197 | * according to the parameters. |
198 | * | 198 | * |
@@ -212,7 +212,7 @@ imx_dma_setup_single(imx_dmach_t dma_ch, dma_addr_t dma_address, | |||
212 | * | 212 | * |
213 | * %CCR_SMOD_LINEAR | %CCR_SSIZ_32 | %CCR_DMOD_FIFO | %CCR_DSIZ_x | 213 | * %CCR_SMOD_LINEAR | %CCR_SSIZ_32 | %CCR_DMOD_FIFO | %CCR_DSIZ_x |
214 | * | 214 | * |
215 | * Be carefull there and do not mistakenly mix source and target device | 215 | * Be careful here and do not mistakenly mix source and target device |
216 | * port sizes constants, they are really different: | 216 | * port sizes constants, they are really different: |
217 | * %CCR_SSIZ_8, %CCR_SSIZ_16, %CCR_SSIZ_32, | 217 | * %CCR_SSIZ_8, %CCR_SSIZ_16, %CCR_SSIZ_32, |
218 | * %CCR_DSIZ_8, %CCR_DSIZ_16, %CCR_DSIZ_32 | 218 | * %CCR_DSIZ_8, %CCR_DSIZ_16, %CCR_DSIZ_32 |
@@ -495,7 +495,7 @@ static irqreturn_t dma_err_handler(int irq, void *dev_id) | |||
495 | /* | 495 | /* |
496 | * The cleaning of @sg field would be questionable | 496 | * The cleaning of @sg field would be questionable |
497 | * there, because its value can help to compute | 497 | * there, because its value can help to compute |
498 | * remaining/transfered bytes count in the handler | 498 | * remaining/transferred bytes count in the handler |
499 | */ | 499 | */ |
500 | /*imx_dma_channels[i].sg = NULL;*/ | 500 | /*imx_dma_channels[i].sg = NULL;*/ |
501 | 501 | ||
diff --git a/arch/arm/mach-integrator/Makefile b/arch/arm/mach-integrator/Makefile index ebb255bdce8a..158daaf9e3b0 100644 --- a/arch/arm/mach-integrator/Makefile +++ b/arch/arm/mach-integrator/Makefile | |||
@@ -12,4 +12,3 @@ obj-$(CONFIG_LEDS) += leds.o | |||
12 | obj-$(CONFIG_PCI) += pci_v3.o pci.o | 12 | obj-$(CONFIG_PCI) += pci_v3.o pci.o |
13 | obj-$(CONFIG_CPU_FREQ_INTEGRATOR) += cpu.o | 13 | obj-$(CONFIG_CPU_FREQ_INTEGRATOR) += cpu.o |
14 | obj-$(CONFIG_INTEGRATOR_IMPD1) += impd1.o | 14 | obj-$(CONFIG_INTEGRATOR_IMPD1) += impd1.o |
15 | obj-$(CONFIG_SMP) += platsmp.o headsmp.o | ||
diff --git a/arch/arm/mach-integrator/core.c b/arch/arm/mach-integrator/core.c index 897c21c2fb5b..e9c82deb791d 100644 --- a/arch/arm/mach-integrator/core.c +++ b/arch/arm/mach-integrator/core.c | |||
@@ -257,23 +257,7 @@ integrator_timer_interrupt(int irq, void *dev_id) | |||
257 | */ | 257 | */ |
258 | writel(1, TIMER1_VA_BASE + TIMER_INTCLR); | 258 | writel(1, TIMER1_VA_BASE + TIMER_INTCLR); |
259 | 259 | ||
260 | /* | 260 | timer_tick(); |
261 | * the clock tick routines are only processed on the | ||
262 | * primary CPU | ||
263 | */ | ||
264 | if (hard_smp_processor_id() == 0) { | ||
265 | timer_tick(); | ||
266 | #ifdef CONFIG_SMP | ||
267 | smp_send_timer(); | ||
268 | #endif | ||
269 | } | ||
270 | |||
271 | #ifdef CONFIG_SMP | ||
272 | /* | ||
273 | * this is the ARM equivalent of the APIC timer interrupt | ||
274 | */ | ||
275 | update_process_times(user_mode(get_irq_regs())); | ||
276 | #endif /* CONFIG_SMP */ | ||
277 | 261 | ||
278 | write_sequnlock(&xtime_lock); | 262 | write_sequnlock(&xtime_lock); |
279 | 263 | ||
diff --git a/arch/arm/mach-integrator/headsmp.S b/arch/arm/mach-integrator/headsmp.S deleted file mode 100644 index ceaa88e30d70..000000000000 --- a/arch/arm/mach-integrator/headsmp.S +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-integrator/headsmp.S | ||
3 | * | ||
4 | * Copyright (c) 2003 ARM Limited | ||
5 | * All Rights Reserved | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | ||
11 | #include <linux/linkage.h> | ||
12 | #include <linux/init.h> | ||
13 | |||
14 | __INIT | ||
15 | |||
16 | /* | ||
17 | * Integrator specific entry point for secondary CPUs. This provides | ||
18 | * a "holding pen" into which all secondary cores are held until we're | ||
19 | * ready for them to initialise. | ||
20 | */ | ||
21 | ENTRY(integrator_secondary_startup) | ||
22 | adr r4, 1f | ||
23 | ldmia r4, {r5, r6} | ||
24 | sub r4, r4, r5 | ||
25 | ldr r6, [r6, r4] | ||
26 | pen: ldr r7, [r6] | ||
27 | cmp r7, r0 | ||
28 | bne pen | ||
29 | |||
30 | /* | ||
31 | * we've been released from the holding pen: secondary_stack | ||
32 | * should now contain the SVC stack for this core | ||
33 | */ | ||
34 | b secondary_startup | ||
35 | |||
36 | 1: .long . | ||
37 | .long phys_pen_release | ||
diff --git a/arch/arm/mach-integrator/pci_v3.c b/arch/arm/mach-integrator/pci_v3.c index af9ebccac7c1..d4d8134ce567 100644 --- a/arch/arm/mach-integrator/pci_v3.c +++ b/arch/arm/mach-integrator/pci_v3.c | |||
@@ -33,6 +33,7 @@ | |||
33 | #include <asm/irq.h> | 33 | #include <asm/irq.h> |
34 | #include <asm/system.h> | 34 | #include <asm/system.h> |
35 | #include <asm/mach/pci.h> | 35 | #include <asm/mach/pci.h> |
36 | #include <asm/irq_regs.h> | ||
36 | 37 | ||
37 | #include <asm/hardware/pci_v3.h> | 38 | #include <asm/hardware/pci_v3.h> |
38 | 39 | ||
diff --git a/arch/arm/mach-integrator/platsmp.c b/arch/arm/mach-integrator/platsmp.c deleted file mode 100644 index 613b841a10f3..000000000000 --- a/arch/arm/mach-integrator/platsmp.c +++ /dev/null | |||
@@ -1,204 +0,0 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-cintegrator/platsmp.c | ||
3 | * | ||
4 | * Copyright (C) 2002 ARM Ltd. | ||
5 | * All Rights Reserved | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | ||
11 | #include <linux/init.h> | ||
12 | #include <linux/kernel.h> | ||
13 | #include <linux/sched.h> | ||
14 | #include <linux/errno.h> | ||
15 | #include <linux/mm.h> | ||
16 | |||
17 | #include <asm/atomic.h> | ||
18 | #include <asm/cacheflush.h> | ||
19 | #include <asm/delay.h> | ||
20 | #include <asm/mmu_context.h> | ||
21 | #include <asm/ptrace.h> | ||
22 | #include <asm/smp.h> | ||
23 | |||
24 | extern void integrator_secondary_startup(void); | ||
25 | |||
26 | /* | ||
27 | * control for which core is the next to come out of the secondary | ||
28 | * boot "holding pen" | ||
29 | */ | ||
30 | volatile int __cpuinitdata pen_release = -1; | ||
31 | unsigned long __cpuinitdata phys_pen_release = 0; | ||
32 | |||
33 | static DEFINE_SPINLOCK(boot_lock); | ||
34 | |||
35 | void __cpuinit platform_secondary_init(unsigned int cpu) | ||
36 | { | ||
37 | /* | ||
38 | * the primary core may have used a "cross call" soft interrupt | ||
39 | * to get this processor out of WFI in the BootMonitor - make | ||
40 | * sure that we are no longer being sent this soft interrupt | ||
41 | */ | ||
42 | smp_cross_call_done(cpumask_of_cpu(cpu)); | ||
43 | |||
44 | /* | ||
45 | * if any interrupts are already enabled for the primary | ||
46 | * core (e.g. timer irq), then they will not have been enabled | ||
47 | * for us: do so | ||
48 | */ | ||
49 | secondary_scan_irqs(); | ||
50 | |||
51 | /* | ||
52 | * let the primary processor know we're out of the | ||
53 | * pen, then head off into the C entry point | ||
54 | */ | ||
55 | pen_release = -1; | ||
56 | |||
57 | /* | ||
58 | * Synchronise with the boot thread. | ||
59 | */ | ||
60 | spin_lock(&boot_lock); | ||
61 | spin_unlock(&boot_lock); | ||
62 | } | ||
63 | |||
64 | int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle) | ||
65 | { | ||
66 | unsigned long timeout; | ||
67 | |||
68 | /* | ||
69 | * set synchronisation state between this boot processor | ||
70 | * and the secondary one | ||
71 | */ | ||
72 | spin_lock(&boot_lock); | ||
73 | |||
74 | /* | ||
75 | * The secondary processor is waiting to be released from | ||
76 | * the holding pen - release it, then wait for it to flag | ||
77 | * that it has been released by resetting pen_release. | ||
78 | * | ||
79 | * Note that "pen_release" is the hardware CPU ID, whereas | ||
80 | * "cpu" is Linux's internal ID. | ||
81 | */ | ||
82 | pen_release = cpu; | ||
83 | flush_cache_all(); | ||
84 | |||
85 | /* | ||
86 | * XXX | ||
87 | * | ||
88 | * This is a later addition to the booting protocol: the | ||
89 | * bootMonitor now puts secondary cores into WFI, so | ||
90 | * poke_milo() no longer gets the cores moving; we need | ||
91 | * to send a soft interrupt to wake the secondary core. | ||
92 | * Use smp_cross_call() for this, since there's little | ||
93 | * point duplicating the code here | ||
94 | */ | ||
95 | smp_cross_call(cpumask_of_cpu(cpu)); | ||
96 | |||
97 | timeout = jiffies + (1 * HZ); | ||
98 | while (time_before(jiffies, timeout)) { | ||
99 | if (pen_release == -1) | ||
100 | break; | ||
101 | |||
102 | udelay(10); | ||
103 | } | ||
104 | |||
105 | /* | ||
106 | * now the secondary core is starting up let it run its | ||
107 | * calibrations, then wait for it to finish | ||
108 | */ | ||
109 | spin_unlock(&boot_lock); | ||
110 | |||
111 | return pen_release != -1 ? -ENOSYS : 0; | ||
112 | } | ||
113 | |||
114 | static void __init poke_milo(void) | ||
115 | { | ||
116 | extern void secondary_startup(void); | ||
117 | |||
118 | /* nobody is to be released from the pen yet */ | ||
119 | pen_release = -1; | ||
120 | |||
121 | phys_pen_release = virt_to_phys(&pen_release); | ||
122 | |||
123 | /* | ||
124 | * write the address of secondary startup into the system-wide | ||
125 | * flags register, then clear the bottom two bits, which is what | ||
126 | * BootMonitor is waiting for | ||
127 | */ | ||
128 | #if 1 | ||
129 | #define CINTEGRATOR_HDR_FLAGSS_OFFSET 0x30 | ||
130 | __raw_writel(virt_to_phys(integrator_secondary_startup), | ||
131 | (IO_ADDRESS(INTEGRATOR_HDR_BASE) + | ||
132 | CINTEGRATOR_HDR_FLAGSS_OFFSET)); | ||
133 | #define CINTEGRATOR_HDR_FLAGSC_OFFSET 0x34 | ||
134 | __raw_writel(3, | ||
135 | (IO_ADDRESS(INTEGRATOR_HDR_BASE) + | ||
136 | CINTEGRATOR_HDR_FLAGSC_OFFSET)); | ||
137 | #endif | ||
138 | |||
139 | mb(); | ||
140 | } | ||
141 | |||
142 | /* | ||
143 | * Initialise the CPU possible map early - this describes the CPUs | ||
144 | * which may be present or become present in the system. | ||
145 | */ | ||
146 | void __init smp_init_cpus(void) | ||
147 | { | ||
148 | unsigned int i, ncores = get_core_count(); | ||
149 | |||
150 | for (i = 0; i < ncores; i++) | ||
151 | cpu_set(i, cpu_possible_map); | ||
152 | } | ||
153 | |||
154 | void __init smp_prepare_cpus(unsigned int max_cpus) | ||
155 | { | ||
156 | unsigned int ncores = get_core_count(); | ||
157 | unsigned int cpu = smp_processor_id(); | ||
158 | int i; | ||
159 | |||
160 | /* sanity check */ | ||
161 | if (ncores == 0) { | ||
162 | printk(KERN_ERR | ||
163 | "Integrator/CP: strange CM count of 0? Default to 1\n"); | ||
164 | |||
165 | ncores = 1; | ||
166 | } | ||
167 | |||
168 | if (ncores > NR_CPUS) { | ||
169 | printk(KERN_WARNING | ||
170 | "Integrator/CP: no. of cores (%d) greater than configured " | ||
171 | "maximum of %d - clipping\n", | ||
172 | ncores, NR_CPUS); | ||
173 | ncores = NR_CPUS; | ||
174 | } | ||
175 | |||
176 | /* | ||
177 | * start with some more config for the Boot CPU, now that | ||
178 | * the world is a bit more alive (which was not the case | ||
179 | * when smp_prepare_boot_cpu() was called) | ||
180 | */ | ||
181 | smp_store_cpu_info(cpu); | ||
182 | |||
183 | /* | ||
184 | * are we trying to boot more cores than exist? | ||
185 | */ | ||
186 | if (max_cpus > ncores) | ||
187 | max_cpus = ncores; | ||
188 | |||
189 | /* | ||
190 | * Initialise the present map, which describes the set of CPUs | ||
191 | * actually populated at the present time. | ||
192 | */ | ||
193 | for (i = 0; i < max_cpus; i++) | ||
194 | cpu_set(i, cpu_present_map); | ||
195 | |||
196 | /* | ||
197 | * Do we need any more CPUs? If so, then let them know where | ||
198 | * to start. Note that, on modern versions of MILO, the "poke" | ||
199 | * doesn't actually do anything until each individual core is | ||
200 | * sent a soft interrupt to get it out of WFI | ||
201 | */ | ||
202 | if (max_cpus > 1) | ||
203 | poke_milo(); | ||
204 | } | ||
diff --git a/arch/arm/mach-iop13xx/irq.c b/arch/arm/mach-iop13xx/irq.c index 5791addd436b..69f07b25b3c9 100644 --- a/arch/arm/mach-iop13xx/irq.c +++ b/arch/arm/mach-iop13xx/irq.c | |||
@@ -30,77 +30,65 @@ | |||
30 | 30 | ||
31 | /* INTCTL0 CP6 R0 Page 4 | 31 | /* INTCTL0 CP6 R0 Page 4 |
32 | */ | 32 | */ |
33 | static inline u32 read_intctl_0(void) | 33 | static u32 read_intctl_0(void) |
34 | { | 34 | { |
35 | u32 val; | 35 | u32 val; |
36 | asm volatile("mrc p6, 0, %0, c0, c4, 0":"=r" (val)); | 36 | asm volatile("mrc p6, 0, %0, c0, c4, 0":"=r" (val)); |
37 | return val; | 37 | return val; |
38 | } | 38 | } |
39 | static inline void write_intctl_0(u32 val) | 39 | static void write_intctl_0(u32 val) |
40 | { | 40 | { |
41 | asm volatile("mcr p6, 0, %0, c0, c4, 0"::"r" (val)); | 41 | asm volatile("mcr p6, 0, %0, c0, c4, 0"::"r" (val)); |
42 | } | 42 | } |
43 | 43 | ||
44 | /* INTCTL1 CP6 R1 Page 4 | 44 | /* INTCTL1 CP6 R1 Page 4 |
45 | */ | 45 | */ |
46 | static inline u32 read_intctl_1(void) | 46 | static u32 read_intctl_1(void) |
47 | { | 47 | { |
48 | u32 val; | 48 | u32 val; |
49 | asm volatile("mrc p6, 0, %0, c1, c4, 0":"=r" (val)); | 49 | asm volatile("mrc p6, 0, %0, c1, c4, 0":"=r" (val)); |
50 | return val; | 50 | return val; |
51 | } | 51 | } |
52 | static inline void write_intctl_1(u32 val) | 52 | static void write_intctl_1(u32 val) |
53 | { | 53 | { |
54 | asm volatile("mcr p6, 0, %0, c1, c4, 0"::"r" (val)); | 54 | asm volatile("mcr p6, 0, %0, c1, c4, 0"::"r" (val)); |
55 | } | 55 | } |
56 | 56 | ||
57 | /* INTCTL2 CP6 R2 Page 4 | 57 | /* INTCTL2 CP6 R2 Page 4 |
58 | */ | 58 | */ |
59 | static inline u32 read_intctl_2(void) | 59 | static u32 read_intctl_2(void) |
60 | { | 60 | { |
61 | u32 val; | 61 | u32 val; |
62 | asm volatile("mrc p6, 0, %0, c2, c4, 0":"=r" (val)); | 62 | asm volatile("mrc p6, 0, %0, c2, c4, 0":"=r" (val)); |
63 | return val; | 63 | return val; |
64 | } | 64 | } |
65 | static inline void write_intctl_2(u32 val) | 65 | static void write_intctl_2(u32 val) |
66 | { | 66 | { |
67 | asm volatile("mcr p6, 0, %0, c2, c4, 0"::"r" (val)); | 67 | asm volatile("mcr p6, 0, %0, c2, c4, 0"::"r" (val)); |
68 | } | 68 | } |
69 | 69 | ||
70 | /* INTCTL3 CP6 R3 Page 4 | 70 | /* INTCTL3 CP6 R3 Page 4 |
71 | */ | 71 | */ |
72 | static inline u32 read_intctl_3(void) | 72 | static u32 read_intctl_3(void) |
73 | { | 73 | { |
74 | u32 val; | 74 | u32 val; |
75 | asm volatile("mrc p6, 0, %0, c3, c4, 0":"=r" (val)); | 75 | asm volatile("mrc p6, 0, %0, c3, c4, 0":"=r" (val)); |
76 | return val; | 76 | return val; |
77 | } | 77 | } |
78 | static inline void write_intctl_3(u32 val) | 78 | static void write_intctl_3(u32 val) |
79 | { | 79 | { |
80 | asm volatile("mcr p6, 0, %0, c3, c4, 0"::"r" (val)); | 80 | asm volatile("mcr p6, 0, %0, c3, c4, 0"::"r" (val)); |
81 | } | 81 | } |
82 | 82 | ||
83 | /* INTSTR0 CP6 R0 Page 5 | 83 | /* INTSTR0 CP6 R0 Page 5 |
84 | */ | 84 | */ |
85 | static inline u32 read_intstr_0(void) | 85 | static void write_intstr_0(u32 val) |
86 | { | ||
87 | u32 val; | ||
88 | asm volatile("mrc p6, 0, %0, c0, c5, 0":"=r" (val)); | ||
89 | return val; | ||
90 | } | ||
91 | static inline void write_intstr_0(u32 val) | ||
92 | { | 86 | { |
93 | asm volatile("mcr p6, 0, %0, c0, c5, 0"::"r" (val)); | 87 | asm volatile("mcr p6, 0, %0, c0, c5, 0"::"r" (val)); |
94 | } | 88 | } |
95 | 89 | ||
96 | /* INTSTR1 CP6 R1 Page 5 | 90 | /* INTSTR1 CP6 R1 Page 5 |
97 | */ | 91 | */ |
98 | static inline u32 read_intstr_1(void) | ||
99 | { | ||
100 | u32 val; | ||
101 | asm volatile("mrc p6, 0, %0, c1, c5, 0":"=r" (val)); | ||
102 | return val; | ||
103 | } | ||
104 | static void write_intstr_1(u32 val) | 92 | static void write_intstr_1(u32 val) |
105 | { | 93 | { |
106 | asm volatile("mcr p6, 0, %0, c1, c5, 0"::"r" (val)); | 94 | asm volatile("mcr p6, 0, %0, c1, c5, 0"::"r" (val)); |
@@ -108,12 +96,6 @@ static void write_intstr_1(u32 val) | |||
108 | 96 | ||
109 | /* INTSTR2 CP6 R2 Page 5 | 97 | /* INTSTR2 CP6 R2 Page 5 |
110 | */ | 98 | */ |
111 | static inline u32 read_intstr_2(void) | ||
112 | { | ||
113 | u32 val; | ||
114 | asm volatile("mrc p6, 0, %0, c2, c5, 0":"=r" (val)); | ||
115 | return val; | ||
116 | } | ||
117 | static void write_intstr_2(u32 val) | 99 | static void write_intstr_2(u32 val) |
118 | { | 100 | { |
119 | asm volatile("mcr p6, 0, %0, c2, c5, 0"::"r" (val)); | 101 | asm volatile("mcr p6, 0, %0, c2, c5, 0"::"r" (val)); |
@@ -121,12 +103,6 @@ static void write_intstr_2(u32 val) | |||
121 | 103 | ||
122 | /* INTSTR3 CP6 R3 Page 5 | 104 | /* INTSTR3 CP6 R3 Page 5 |
123 | */ | 105 | */ |
124 | static inline u32 read_intstr_3(void) | ||
125 | { | ||
126 | u32 val; | ||
127 | asm volatile("mrc p6, 0, %0, c3, c5, 0":"=r" (val)); | ||
128 | return val; | ||
129 | } | ||
130 | static void write_intstr_3(u32 val) | 106 | static void write_intstr_3(u32 val) |
131 | { | 107 | { |
132 | asm volatile("mcr p6, 0, %0, c3, c5, 0"::"r" (val)); | 108 | asm volatile("mcr p6, 0, %0, c3, c5, 0"::"r" (val)); |
@@ -134,12 +110,6 @@ static void write_intstr_3(u32 val) | |||
134 | 110 | ||
135 | /* INTBASE CP6 R0 Page 2 | 111 | /* INTBASE CP6 R0 Page 2 |
136 | */ | 112 | */ |
137 | static inline u32 read_intbase(void) | ||
138 | { | ||
139 | u32 val; | ||
140 | asm volatile("mrc p6, 0, %0, c0, c2, 0":"=r" (val)); | ||
141 | return val; | ||
142 | } | ||
143 | static void write_intbase(u32 val) | 113 | static void write_intbase(u32 val) |
144 | { | 114 | { |
145 | asm volatile("mcr p6, 0, %0, c0, c2, 0"::"r" (val)); | 115 | asm volatile("mcr p6, 0, %0, c0, c2, 0"::"r" (val)); |
@@ -147,12 +117,6 @@ static void write_intbase(u32 val) | |||
147 | 117 | ||
148 | /* INTSIZE CP6 R2 Page 2 | 118 | /* INTSIZE CP6 R2 Page 2 |
149 | */ | 119 | */ |
150 | static inline u32 read_intsize(void) | ||
151 | { | ||
152 | u32 val; | ||
153 | asm volatile("mrc p6, 0, %0, c2, c2, 0":"=r" (val)); | ||
154 | return val; | ||
155 | } | ||
156 | static void write_intsize(u32 val) | 120 | static void write_intsize(u32 val) |
157 | { | 121 | { |
158 | asm volatile("mcr p6, 0, %0, c2, c2, 0"::"r" (val)); | 122 | asm volatile("mcr p6, 0, %0, c2, c2, 0"::"r" (val)); |
diff --git a/arch/arm/mach-iop13xx/msi.c b/arch/arm/mach-iop13xx/msi.c index 2d2369302220..63ef1124ca5c 100644 --- a/arch/arm/mach-iop13xx/msi.c +++ b/arch/arm/mach-iop13xx/msi.c | |||
@@ -30,52 +30,52 @@ static DECLARE_BITMAP(msi_irq_in_use, IOP13XX_NUM_MSI_IRQS); | |||
30 | 30 | ||
31 | /* IMIPR0 CP6 R8 Page 1 | 31 | /* IMIPR0 CP6 R8 Page 1 |
32 | */ | 32 | */ |
33 | static inline u32 read_imipr_0(void) | 33 | static u32 read_imipr_0(void) |
34 | { | 34 | { |
35 | u32 val; | 35 | u32 val; |
36 | asm volatile("mrc p6, 0, %0, c8, c1, 0":"=r" (val)); | 36 | asm volatile("mrc p6, 0, %0, c8, c1, 0":"=r" (val)); |
37 | return val; | 37 | return val; |
38 | } | 38 | } |
39 | static inline void write_imipr_0(u32 val) | 39 | static void write_imipr_0(u32 val) |
40 | { | 40 | { |
41 | asm volatile("mcr p6, 0, %0, c8, c1, 0"::"r" (val)); | 41 | asm volatile("mcr p6, 0, %0, c8, c1, 0"::"r" (val)); |
42 | } | 42 | } |
43 | 43 | ||
44 | /* IMIPR1 CP6 R9 Page 1 | 44 | /* IMIPR1 CP6 R9 Page 1 |
45 | */ | 45 | */ |
46 | static inline u32 read_imipr_1(void) | 46 | static u32 read_imipr_1(void) |
47 | { | 47 | { |
48 | u32 val; | 48 | u32 val; |
49 | asm volatile("mrc p6, 0, %0, c9, c1, 0":"=r" (val)); | 49 | asm volatile("mrc p6, 0, %0, c9, c1, 0":"=r" (val)); |
50 | return val; | 50 | return val; |
51 | } | 51 | } |
52 | static inline void write_imipr_1(u32 val) | 52 | static void write_imipr_1(u32 val) |
53 | { | 53 | { |
54 | asm volatile("mcr p6, 0, %0, c9, c1, 0"::"r" (val)); | 54 | asm volatile("mcr p6, 0, %0, c9, c1, 0"::"r" (val)); |
55 | } | 55 | } |
56 | 56 | ||
57 | /* IMIPR2 CP6 R10 Page 1 | 57 | /* IMIPR2 CP6 R10 Page 1 |
58 | */ | 58 | */ |
59 | static inline u32 read_imipr_2(void) | 59 | static u32 read_imipr_2(void) |
60 | { | 60 | { |
61 | u32 val; | 61 | u32 val; |
62 | asm volatile("mrc p6, 0, %0, c10, c1, 0":"=r" (val)); | 62 | asm volatile("mrc p6, 0, %0, c10, c1, 0":"=r" (val)); |
63 | return val; | 63 | return val; |
64 | } | 64 | } |
65 | static inline void write_imipr_2(u32 val) | 65 | static void write_imipr_2(u32 val) |
66 | { | 66 | { |
67 | asm volatile("mcr p6, 0, %0, c10, c1, 0"::"r" (val)); | 67 | asm volatile("mcr p6, 0, %0, c10, c1, 0"::"r" (val)); |
68 | } | 68 | } |
69 | 69 | ||
70 | /* IMIPR3 CP6 R11 Page 1 | 70 | /* IMIPR3 CP6 R11 Page 1 |
71 | */ | 71 | */ |
72 | static inline u32 read_imipr_3(void) | 72 | static u32 read_imipr_3(void) |
73 | { | 73 | { |
74 | u32 val; | 74 | u32 val; |
75 | asm volatile("mrc p6, 0, %0, c11, c1, 0":"=r" (val)); | 75 | asm volatile("mrc p6, 0, %0, c11, c1, 0":"=r" (val)); |
76 | return val; | 76 | return val; |
77 | } | 77 | } |
78 | static inline void write_imipr_3(u32 val) | 78 | static void write_imipr_3(u32 val) |
79 | { | 79 | { |
80 | asm volatile("mcr p6, 0, %0, c11, c1, 0"::"r" (val)); | 80 | asm volatile("mcr p6, 0, %0, c11, c1, 0"::"r" (val)); |
81 | } | 81 | } |
@@ -190,5 +190,5 @@ int arch_setup_msi_irq(struct pci_dev *pdev, struct msi_desc *desc) | |||
190 | write_msi_msg(irq, &msg); | 190 | write_msi_msg(irq, &msg); |
191 | set_irq_chip_and_handler(irq, &iop13xx_msi_chip, handle_simple_irq); | 191 | set_irq_chip_and_handler(irq, &iop13xx_msi_chip, handle_simple_irq); |
192 | 192 | ||
193 | return irq; | 193 | return 0; |
194 | } | 194 | } |
diff --git a/arch/arm/mach-iop13xx/pci.c b/arch/arm/mach-iop13xx/pci.c index 1c9e94c38b7e..9d63d7f260ca 100644 --- a/arch/arm/mach-iop13xx/pci.c +++ b/arch/arm/mach-iop13xx/pci.c | |||
@@ -19,10 +19,11 @@ | |||
19 | 19 | ||
20 | #include <linux/pci.h> | 20 | #include <linux/pci.h> |
21 | #include <linux/delay.h> | 21 | #include <linux/delay.h> |
22 | 22 | #include <linux/jiffies.h> | |
23 | #include <asm/irq.h> | 23 | #include <asm/irq.h> |
24 | #include <asm/hardware.h> | 24 | #include <asm/hardware.h> |
25 | #include <asm/sizes.h> | 25 | #include <asm/sizes.h> |
26 | #include <asm/signal.h> | ||
26 | #include <asm/mach/pci.h> | 27 | #include <asm/mach/pci.h> |
27 | #include <asm/arch/pci.h> | 28 | #include <asm/arch/pci.h> |
28 | 29 | ||
@@ -144,7 +145,7 @@ void iop13xx_map_pci_memory(void) | |||
144 | } | 145 | } |
145 | } | 146 | } |
146 | 147 | ||
147 | static inline int iop13xx_atu_function(int atu) | 148 | static int iop13xx_atu_function(int atu) |
148 | { | 149 | { |
149 | int func = 0; | 150 | int func = 0; |
150 | /* the function number depends on the value of the | 151 | /* the function number depends on the value of the |
@@ -259,7 +260,7 @@ static int iop13xx_atux_pci_status(int clear) | |||
259 | * data. Note that the data dependency on %0 encourages an abort | 260 | * data. Note that the data dependency on %0 encourages an abort |
260 | * to be detected before we return. | 261 | * to be detected before we return. |
261 | */ | 262 | */ |
262 | static inline u32 iop13xx_atux_read(unsigned long addr) | 263 | static u32 iop13xx_atux_read(unsigned long addr) |
263 | { | 264 | { |
264 | u32 val; | 265 | u32 val; |
265 | 266 | ||
@@ -387,7 +388,7 @@ static int iop13xx_atue_pci_status(int clear) | |||
387 | return err; | 388 | return err; |
388 | } | 389 | } |
389 | 390 | ||
390 | static inline int __init | 391 | static int |
391 | iop13xx_pcie_map_irq(struct pci_dev *dev, u8 idsel, u8 pin) | 392 | iop13xx_pcie_map_irq(struct pci_dev *dev, u8 idsel, u8 pin) |
392 | { | 393 | { |
393 | WARN_ON(idsel != 0); | 394 | WARN_ON(idsel != 0); |
@@ -401,7 +402,7 @@ iop13xx_pcie_map_irq(struct pci_dev *dev, u8 idsel, u8 pin) | |||
401 | } | 402 | } |
402 | } | 403 | } |
403 | 404 | ||
404 | static inline u32 iop13xx_atue_read(unsigned long addr) | 405 | static u32 iop13xx_atue_read(unsigned long addr) |
405 | { | 406 | { |
406 | u32 val; | 407 | u32 val; |
407 | 408 | ||
@@ -989,7 +990,7 @@ void __init iop13xx_pci_init(void) | |||
989 | "imprecise external abort"); | 990 | "imprecise external abort"); |
990 | } | 991 | } |
991 | 992 | ||
992 | /* intialize the pci memory space. handle any combination of | 993 | /* initialize the pci memory space. handle any combination of |
993 | * atue and atux enabled/disabled | 994 | * atue and atux enabled/disabled |
994 | */ | 995 | */ |
995 | int iop13xx_pci_setup(int nr, struct pci_sys_data *sys) | 996 | int iop13xx_pci_setup(int nr, struct pci_sys_data *sys) |
diff --git a/arch/arm/mach-iop32x/glantank.c b/arch/arm/mach-iop32x/glantank.c index 45f4f13ae11b..5776fd884115 100644 --- a/arch/arm/mach-iop32x/glantank.c +++ b/arch/arm/mach-iop32x/glantank.c | |||
@@ -75,7 +75,7 @@ void __init glantank_map_io(void) | |||
75 | #define INTC IRQ_IOP32X_XINT2 | 75 | #define INTC IRQ_IOP32X_XINT2 |
76 | #define INTD IRQ_IOP32X_XINT3 | 76 | #define INTD IRQ_IOP32X_XINT3 |
77 | 77 | ||
78 | static inline int __init | 78 | static int __init |
79 | glantank_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | 79 | glantank_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) |
80 | { | 80 | { |
81 | static int pci_irq_table[][4] = { | 81 | static int pci_irq_table[][4] = { |
diff --git a/arch/arm/mach-iop32x/iq31244.c b/arch/arm/mach-iop32x/iq31244.c index 7b21c6e13e59..d4eefbea1fe6 100644 --- a/arch/arm/mach-iop32x/iq31244.c +++ b/arch/arm/mach-iop32x/iq31244.c | |||
@@ -104,7 +104,7 @@ void __init iq31244_map_io(void) | |||
104 | /* | 104 | /* |
105 | * EP80219/IQ31244 PCI. | 105 | * EP80219/IQ31244 PCI. |
106 | */ | 106 | */ |
107 | static inline int __init | 107 | static int __init |
108 | ep80219_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | 108 | ep80219_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) |
109 | { | 109 | { |
110 | int irq; | 110 | int irq; |
@@ -140,7 +140,7 @@ static struct hw_pci ep80219_pci __initdata = { | |||
140 | .map_irq = ep80219_pci_map_irq, | 140 | .map_irq = ep80219_pci_map_irq, |
141 | }; | 141 | }; |
142 | 142 | ||
143 | static inline int __init | 143 | static int __init |
144 | iq31244_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | 144 | iq31244_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) |
145 | { | 145 | { |
146 | int irq; | 146 | int irq; |
diff --git a/arch/arm/mach-iop32x/iq80321.c b/arch/arm/mach-iop32x/iq80321.c index bc25fb91e7b9..8d9f49164a84 100644 --- a/arch/arm/mach-iop32x/iq80321.c +++ b/arch/arm/mach-iop32x/iq80321.c | |||
@@ -72,7 +72,7 @@ void __init iq80321_map_io(void) | |||
72 | /* | 72 | /* |
73 | * IQ80321 PCI. | 73 | * IQ80321 PCI. |
74 | */ | 74 | */ |
75 | static inline int __init | 75 | static int __init |
76 | iq80321_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | 76 | iq80321_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) |
77 | { | 77 | { |
78 | int irq; | 78 | int irq; |
diff --git a/arch/arm/mach-iop32x/irq.c b/arch/arm/mach-iop32x/irq.c index 82598dc18d80..c971171c2905 100644 --- a/arch/arm/mach-iop32x/irq.c +++ b/arch/arm/mach-iop32x/irq.c | |||
@@ -21,12 +21,12 @@ | |||
21 | 21 | ||
22 | static u32 iop32x_mask; | 22 | static u32 iop32x_mask; |
23 | 23 | ||
24 | static inline void intctl_write(u32 val) | 24 | static void intctl_write(u32 val) |
25 | { | 25 | { |
26 | asm volatile("mcr p6, 0, %0, c0, c0, 0" : : "r" (val)); | 26 | asm volatile("mcr p6, 0, %0, c0, c0, 0" : : "r" (val)); |
27 | } | 27 | } |
28 | 28 | ||
29 | static inline void intstr_write(u32 val) | 29 | static void intstr_write(u32 val) |
30 | { | 30 | { |
31 | asm volatile("mcr p6, 0, %0, c4, c0, 0" : : "r" (val)); | 31 | asm volatile("mcr p6, 0, %0, c4, c0, 0" : : "r" (val)); |
32 | } | 32 | } |
diff --git a/arch/arm/mach-iop32x/n2100.c b/arch/arm/mach-iop32x/n2100.c index 5f07344d96f3..d55005d64781 100644 --- a/arch/arm/mach-iop32x/n2100.c +++ b/arch/arm/mach-iop32x/n2100.c | |||
@@ -76,7 +76,7 @@ void __init n2100_map_io(void) | |||
76 | /* | 76 | /* |
77 | * N2100 PCI. | 77 | * N2100 PCI. |
78 | */ | 78 | */ |
79 | static inline int __init | 79 | static int __init |
80 | n2100_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | 80 | n2100_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) |
81 | { | 81 | { |
82 | int irq; | 82 | int irq; |
diff --git a/arch/arm/mach-iop33x/iq80331.c b/arch/arm/mach-iop33x/iq80331.c index 376c932830be..2b063180687a 100644 --- a/arch/arm/mach-iop33x/iq80331.c +++ b/arch/arm/mach-iop33x/iq80331.c | |||
@@ -55,7 +55,7 @@ static struct sys_timer iq80331_timer = { | |||
55 | /* | 55 | /* |
56 | * IQ80331 PCI. | 56 | * IQ80331 PCI. |
57 | */ | 57 | */ |
58 | static inline int __init | 58 | static int __init |
59 | iq80331_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | 59 | iq80331_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) |
60 | { | 60 | { |
61 | int irq; | 61 | int irq; |
diff --git a/arch/arm/mach-iop33x/iq80332.c b/arch/arm/mach-iop33x/iq80332.c index 58c81496c6f6..7889ce3cb08e 100644 --- a/arch/arm/mach-iop33x/iq80332.c +++ b/arch/arm/mach-iop33x/iq80332.c | |||
@@ -55,7 +55,7 @@ static struct sys_timer iq80332_timer = { | |||
55 | /* | 55 | /* |
56 | * IQ80332 PCI. | 56 | * IQ80332 PCI. |
57 | */ | 57 | */ |
58 | static inline int __init | 58 | static int __init |
59 | iq80332_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | 59 | iq80332_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) |
60 | { | 60 | { |
61 | int irq; | 61 | int irq; |
diff --git a/arch/arm/mach-iop33x/irq.c b/arch/arm/mach-iop33x/irq.c index c65ea78a2427..f09dd054b9c0 100644 --- a/arch/arm/mach-iop33x/irq.c +++ b/arch/arm/mach-iop33x/irq.c | |||
@@ -22,32 +22,32 @@ | |||
22 | static u32 iop33x_mask0; | 22 | static u32 iop33x_mask0; |
23 | static u32 iop33x_mask1; | 23 | static u32 iop33x_mask1; |
24 | 24 | ||
25 | static inline void intctl0_write(u32 val) | 25 | static void intctl0_write(u32 val) |
26 | { | 26 | { |
27 | asm volatile("mcr p6, 0, %0, c0, c0, 0" : : "r" (val)); | 27 | asm volatile("mcr p6, 0, %0, c0, c0, 0" : : "r" (val)); |
28 | } | 28 | } |
29 | 29 | ||
30 | static inline void intctl1_write(u32 val) | 30 | static void intctl1_write(u32 val) |
31 | { | 31 | { |
32 | asm volatile("mcr p6, 0, %0, c1, c0, 0" : : "r" (val)); | 32 | asm volatile("mcr p6, 0, %0, c1, c0, 0" : : "r" (val)); |
33 | } | 33 | } |
34 | 34 | ||
35 | static inline void intstr0_write(u32 val) | 35 | static void intstr0_write(u32 val) |
36 | { | 36 | { |
37 | asm volatile("mcr p6, 0, %0, c2, c0, 0" : : "r" (val)); | 37 | asm volatile("mcr p6, 0, %0, c2, c0, 0" : : "r" (val)); |
38 | } | 38 | } |
39 | 39 | ||
40 | static inline void intstr1_write(u32 val) | 40 | static void intstr1_write(u32 val) |
41 | { | 41 | { |
42 | asm volatile("mcr p6, 0, %0, c3, c0, 0" : : "r" (val)); | 42 | asm volatile("mcr p6, 0, %0, c3, c0, 0" : : "r" (val)); |
43 | } | 43 | } |
44 | 44 | ||
45 | static inline void intbase_write(u32 val) | 45 | static void intbase_write(u32 val) |
46 | { | 46 | { |
47 | asm volatile("mcr p6, 0, %0, c12, c0, 0" : : "r" (val)); | 47 | asm volatile("mcr p6, 0, %0, c12, c0, 0" : : "r" (val)); |
48 | } | 48 | } |
49 | 49 | ||
50 | static inline void intsize_write(u32 val) | 50 | static void intsize_write(u32 val) |
51 | { | 51 | { |
52 | asm volatile("mcr p6, 0, %0, c13, c0, 0" : : "r" (val)); | 52 | asm volatile("mcr p6, 0, %0, c13, c0, 0" : : "r" (val)); |
53 | } | 53 | } |
diff --git a/arch/arm/mach-ixp2000/enp2611.c b/arch/arm/mach-ixp2000/enp2611.c index 500e997ba7a4..9c49435d42c3 100644 --- a/arch/arm/mach-ixp2000/enp2611.c +++ b/arch/arm/mach-ixp2000/enp2611.c | |||
@@ -198,7 +198,7 @@ subsys_initcall(enp2611_pci_init); | |||
198 | 198 | ||
199 | 199 | ||
200 | /************************************************************************* | 200 | /************************************************************************* |
201 | * ENP-2611 Machine Intialization | 201 | * ENP-2611 Machine Initialization |
202 | *************************************************************************/ | 202 | *************************************************************************/ |
203 | static struct flash_platform_data enp2611_flash_platform_data = { | 203 | static struct flash_platform_data enp2611_flash_platform_data = { |
204 | .map_name = "cfi_probe", | 204 | .map_name = "cfi_probe", |
diff --git a/arch/arm/mach-ixp2000/ixdp2x00.c b/arch/arm/mach-ixp2000/ixdp2x00.c index 52b368b34346..011065b967b4 100644 --- a/arch/arm/mach-ixp2000/ixdp2x00.c +++ b/arch/arm/mach-ixp2000/ixdp2x00.c | |||
@@ -195,7 +195,7 @@ void __init ixdp2x00_map_io(void) | |||
195 | * instances of the kernel. So far so good. Peers on the PCI bus running | 195 | * instances of the kernel. So far so good. Peers on the PCI bus running |
196 | * Linux is a common design in telecom systems. The problem is that instead | 196 | * Linux is a common design in telecom systems. The problem is that instead |
197 | * of all the devices being controlled by a single host, different | 197 | * of all the devices being controlled by a single host, different |
198 | * devices are controlles by different NPUs on the same bus, leading to | 198 | * devices are controlled by different NPUs on the same bus, leading to |
199 | * multiple hosts on the bus. The exact bus layout looks like: | 199 | * multiple hosts on the bus. The exact bus layout looks like: |
200 | * | 200 | * |
201 | * Bus 0 | 201 | * Bus 0 |
@@ -211,7 +211,7 @@ void __init ixdp2x00_map_io(void) | |||
211 | * | | | | | | 211 | * | | | | | |
212 | * ... Dev PMC Media Eth0 Eth1 ... | 212 | * ... Dev PMC Media Eth0 Eth1 ... |
213 | * | 213 | * |
214 | * The master controlls all but Eth1, which is controlled by the | 214 | * The master controls all but Eth1, which is controlled by the |
215 | * slave. What this means is that the both the master and the slave | 215 | * slave. What this means is that the both the master and the slave |
216 | * have to scan the bus, but only one of them can enumerate the bus. | 216 | * have to scan the bus, but only one of them can enumerate the bus. |
217 | * In addition, after the bus is scanned, each kernel must remove | 217 | * In addition, after the bus is scanned, each kernel must remove |
diff --git a/arch/arm/mach-ixp2000/ixdp2x01.c b/arch/arm/mach-ixp2000/ixdp2x01.c index 3084a5fa751c..d3d730d2fc2b 100644 --- a/arch/arm/mach-ixp2000/ixdp2x01.c +++ b/arch/arm/mach-ixp2000/ixdp2x01.c | |||
@@ -276,7 +276,7 @@ static int __init ixdp2x01_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | |||
276 | /* Device is located after first MB bridge */ | 276 | /* Device is located after first MB bridge */ |
277 | case 0x0008: | 277 | case 0x0008: |
278 | if (tmp_bus == dev->bus) { | 278 | if (tmp_bus == dev->bus) { |
279 | /* Device is located directy after first MB bridge */ | 279 | /* Device is located directly after first MB bridge */ |
280 | switch (devpin) { | 280 | switch (devpin) { |
281 | case DEVPIN(1, 1): /* Onboard 82546 ch 0 */ | 281 | case DEVPIN(1, 1): /* Onboard 82546 ch 0 */ |
282 | if (machine_is_ixdp2401()) | 282 | if (machine_is_ixdp2401()) |
@@ -299,7 +299,7 @@ static int __init ixdp2x01_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | |||
299 | break; | 299 | break; |
300 | case 0x0010: | 300 | case 0x0010: |
301 | if (tmp_bus == dev->bus) { | 301 | if (tmp_bus == dev->bus) { |
302 | /* Device is located directy after second MB bridge */ | 302 | /* Device is located directly after second MB bridge */ |
303 | /* Secondary bus of second bridge */ | 303 | /* Secondary bus of second bridge */ |
304 | switch (devpin) { | 304 | switch (devpin) { |
305 | case DEVPIN(0, 1): /* DB#0 */ | 305 | case DEVPIN(0, 1): /* DB#0 */ |
@@ -348,7 +348,7 @@ int __init ixdp2x01_pci_init(void) | |||
348 | subsys_initcall(ixdp2x01_pci_init); | 348 | subsys_initcall(ixdp2x01_pci_init); |
349 | 349 | ||
350 | /************************************************************************* | 350 | /************************************************************************* |
351 | * IXDP2x01 Machine Intialization | 351 | * IXDP2x01 Machine Initialization |
352 | *************************************************************************/ | 352 | *************************************************************************/ |
353 | static struct flash_platform_data ixdp2x01_flash_platform_data = { | 353 | static struct flash_platform_data ixdp2x01_flash_platform_data = { |
354 | .map_name = "cfi_probe", | 354 | .map_name = "cfi_probe", |
diff --git a/arch/arm/mach-ixp2000/pci.c b/arch/arm/mach-ixp2000/pci.c index 5a09a90c08fb..03f4cf7f9dec 100644 --- a/arch/arm/mach-ixp2000/pci.c +++ b/arch/arm/mach-ixp2000/pci.c | |||
@@ -102,7 +102,7 @@ int ixp2000_pci_read_config(struct pci_bus *bus, unsigned int devfn, int where, | |||
102 | } | 102 | } |
103 | 103 | ||
104 | /* | 104 | /* |
105 | * We don't do error checks by callling clear_master_aborts() b/c the | 105 | * We don't do error checks by calling clear_master_aborts() b/c the |
106 | * assumption is that the caller did a read first to make sure a device | 106 | * assumption is that the caller did a read first to make sure a device |
107 | * exists. | 107 | * exists. |
108 | */ | 108 | */ |
diff --git a/arch/arm/mach-ixp23xx/core.c b/arch/arm/mach-ixp23xx/core.c index b644bbab7d0a..16356ffc86ae 100644 --- a/arch/arm/mach-ixp23xx/core.c +++ b/arch/arm/mach-ixp23xx/core.c | |||
@@ -389,7 +389,7 @@ struct sys_timer ixp23xx_timer = { | |||
389 | 389 | ||
390 | 390 | ||
391 | /************************************************************************* | 391 | /************************************************************************* |
392 | * IXP23xx Platform Initializaion | 392 | * IXP23xx Platform Initialization |
393 | *************************************************************************/ | 393 | *************************************************************************/ |
394 | static struct resource ixp23xx_uart_resources[] = { | 394 | static struct resource ixp23xx_uart_resources[] = { |
395 | { | 395 | { |
diff --git a/arch/arm/mach-ixp4xx/gtwx5715-setup.c b/arch/arm/mach-ixp4xx/gtwx5715-setup.c index 30f1300e0e21..dc6725bda3c4 100644 --- a/arch/arm/mach-ixp4xx/gtwx5715-setup.c +++ b/arch/arm/mach-ixp4xx/gtwx5715-setup.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * arch/arm/mach-ixp4xx/gtwx5715-setup.c | 2 | * arch/arm/mach-ixp4xx/gtwx5715-setup.c |
3 | * | 3 | * |
4 | * Gemtek GTWX5715 (Linksys WRV54G) board settup | 4 | * Gemtek GTWX5715 (Linksys WRV54G) board setup |
5 | * | 5 | * |
6 | * Copyright (C) 2004 George T. Joseph | 6 | * Copyright (C) 2004 George T. Joseph |
7 | * Derived from Coyote | 7 | * Derived from Coyote |
diff --git a/arch/arm/mach-lh7a40x/lcd-panel.h b/arch/arm/mach-lh7a40x/lcd-panel.h index 4fb2efc4950f..df6e38ed425b 100644 --- a/arch/arm/mach-lh7a40x/lcd-panel.h +++ b/arch/arm/mach-lh7a40x/lcd-panel.h | |||
@@ -126,7 +126,7 @@ static struct clcd_panel_extra lcd_panel_extra = { | |||
126 | 126 | ||
127 | */ | 127 | */ |
128 | 128 | ||
129 | /* The full horozontal cycle (Th) is clock/360/400/450. */ | 129 | /* The full horizontal cycle (Th) is clock/360/400/450. */ |
130 | /* The full vertical cycle (Tv) is line/251/262/280. */ | 130 | /* The full vertical cycle (Tv) is line/251/262/280. */ |
131 | 131 | ||
132 | #define PIX_CLOCK_TARGET (6300000) /* -/6.3/7 MHz */ | 132 | #define PIX_CLOCK_TARGET (6300000) /* -/6.3/7 MHz */ |
@@ -162,7 +162,7 @@ static struct clcd_panel lcd_panel = { | |||
162 | /* Logic Product Development LCD 6.4" VGA -10 */ | 162 | /* Logic Product Development LCD 6.4" VGA -10 */ |
163 | /* Sharp PN LQ64D343 */ | 163 | /* Sharp PN LQ64D343 */ |
164 | 164 | ||
165 | /* The full horozontal cycle (Th) is clock/750/800/900. */ | 165 | /* The full horizontal cycle (Th) is clock/750/800/900. */ |
166 | /* The full vertical cycle (Tv) is line/515/525/560. */ | 166 | /* The full vertical cycle (Tv) is line/515/525/560. */ |
167 | 167 | ||
168 | #define PIX_CLOCK_TARGET (28330000) | 168 | #define PIX_CLOCK_TARGET (28330000) |
@@ -243,7 +243,7 @@ static struct clcd_panel lcd_panel = { | |||
243 | * (fdisk, e2fsck). And, at that speed the display may have a visible | 243 | * (fdisk, e2fsck). And, at that speed the display may have a visible |
244 | * flicker. */ | 244 | * flicker. */ |
245 | 245 | ||
246 | /* The full horozontal cycle (Th) is clock/832/1056/1395. */ | 246 | /* The full horizontal cycle (Th) is clock/832/1056/1395. */ |
247 | 247 | ||
248 | #define PIX_CLOCK_TARGET (20000000) | 248 | #define PIX_CLOCK_TARGET (20000000) |
249 | #define PIX_CLOCK_DIVIDER CLOCK_TO_DIV (PIX_CLOCK_TARGET, HCLK) | 249 | #define PIX_CLOCK_DIVIDER CLOCK_TO_DIV (PIX_CLOCK_TARGET, HCLK) |
diff --git a/arch/arm/mach-ns9xxx/time.c b/arch/arm/mach-ns9xxx/time.c index dd257084441c..b97d0c54a388 100644 --- a/arch/arm/mach-ns9xxx/time.c +++ b/arch/arm/mach-ns9xxx/time.c | |||
@@ -35,7 +35,7 @@ static unsigned long ns9xxx_timer_gettimeoffset(void) | |||
35 | { | 35 | { |
36 | /* return the microseconds which have passed since the last interrupt | 36 | /* return the microseconds which have passed since the last interrupt |
37 | * was _serviced_. That is, if an interrupt is pending or the counter | 37 | * was _serviced_. That is, if an interrupt is pending or the counter |
38 | * reloads, return one periode more. */ | 38 | * reloads, return one period more. */ |
39 | 39 | ||
40 | u32 counter1 = SYS_TR(0); | 40 | u32 counter1 = SYS_TR(0); |
41 | int pending = SYS_ISR & (1 << IRQ_TIMER0); | 41 | int pending = SYS_ISR & (1 << IRQ_TIMER0); |
diff --git a/arch/arm/mach-omap1/Kconfig b/arch/arm/mach-omap1/Kconfig index 856c681ebbbc..f6ecdd3a2478 100644 --- a/arch/arm/mach-omap1/Kconfig +++ b/arch/arm/mach-omap1/Kconfig | |||
@@ -38,7 +38,7 @@ config MACH_OMAP_H2 | |||
38 | config MACH_OMAP_H3 | 38 | config MACH_OMAP_H3 |
39 | bool "TI H3 Support" | 39 | bool "TI H3 Support" |
40 | depends on ARCH_OMAP1 && ARCH_OMAP16XX | 40 | depends on ARCH_OMAP1 && ARCH_OMAP16XX |
41 | select GPIOEXPANDER_OMAP | 41 | # select GPIOEXPANDER_OMAP |
42 | help | 42 | help |
43 | TI OMAP 1710 H3 board support. Say Y here if you have such | 43 | TI OMAP 1710 H3 board support. Say Y here if you have such |
44 | a board. | 44 | a board. |
diff --git a/arch/arm/mach-omap1/board-osk.c b/arch/arm/mach-omap1/board-osk.c index 7d0cf7af88ce..e7130293a03f 100644 --- a/arch/arm/mach-omap1/board-osk.c +++ b/arch/arm/mach-omap1/board-osk.c | |||
@@ -385,7 +385,7 @@ static void __init osk_init(void) | |||
385 | /* Workaround for wrong CS3 (NOR flash) timing | 385 | /* Workaround for wrong CS3 (NOR flash) timing |
386 | * There are some U-Boot versions out there which configure | 386 | * There are some U-Boot versions out there which configure |
387 | * wrong CS3 memory timings. This mainly leads to CRC | 387 | * wrong CS3 memory timings. This mainly leads to CRC |
388 | * or similiar errors if you use NOR flash (e.g. with JFFS2) | 388 | * or similar errors if you use NOR flash (e.g. with JFFS2) |
389 | */ | 389 | */ |
390 | if (EMIFS_CCS(3) != EMIFS_CS3_VAL) | 390 | if (EMIFS_CCS(3) != EMIFS_CS3_VAL) |
391 | EMIFS_CCS(3) = EMIFS_CS3_VAL; | 391 | EMIFS_CCS(3) = EMIFS_CS3_VAL; |
diff --git a/arch/arm/mach-omap1/board-palmte.c b/arch/arm/mach-omap1/board-palmte.c index 4bc8a62909b9..015824185629 100644 --- a/arch/arm/mach-omap1/board-palmte.c +++ b/arch/arm/mach-omap1/board-palmte.c | |||
@@ -7,7 +7,7 @@ | |||
7 | * | 7 | * |
8 | * Original version : Laurent Gonzalez | 8 | * Original version : Laurent Gonzalez |
9 | * | 9 | * |
10 | * Maintainters : http://palmtelinux.sf.net | 10 | * Maintainers : http://palmtelinux.sf.net |
11 | * palmtelinux-developpers@lists.sf.net | 11 | * palmtelinux-developpers@lists.sf.net |
12 | * | 12 | * |
13 | * This program is free software; you can redistribute it and/or modify | 13 | * This program is free software; you can redistribute it and/or modify |
diff --git a/arch/arm/mach-omap1/pm.c b/arch/arm/mach-omap1/pm.c index 8caee68aa090..5bb348e2e315 100644 --- a/arch/arm/mach-omap1/pm.c +++ b/arch/arm/mach-omap1/pm.c | |||
@@ -438,7 +438,7 @@ void omap_pm_suspend(void) | |||
438 | omap_writew(0, ULPD_SOFT_DISABLE_REQ_REG); | 438 | omap_writew(0, ULPD_SOFT_DISABLE_REQ_REG); |
439 | 439 | ||
440 | /* | 440 | /* |
441 | * Reenable interrupts | 441 | * Re-enable interrupts |
442 | */ | 442 | */ |
443 | 443 | ||
444 | local_irq_enable(); | 444 | local_irq_enable(); |
diff --git a/arch/arm/mach-omap2/clock.c b/arch/arm/mach-omap2/clock.c index 5170481afeab..588adb5ab47f 100644 --- a/arch/arm/mach-omap2/clock.c +++ b/arch/arm/mach-omap2/clock.c | |||
@@ -443,7 +443,7 @@ static long omap2_clk_round_rate(struct clk *clk, unsigned long rate) | |||
443 | 443 | ||
444 | /* | 444 | /* |
445 | * Check the DLL lock state, and return tue if running in unlock mode. | 445 | * Check the DLL lock state, and return tue if running in unlock mode. |
446 | * This is needed to compenste for the shifted DLL value in unlock mode. | 446 | * This is needed to compensate for the shifted DLL value in unlock mode. |
447 | */ | 447 | */ |
448 | static u32 omap2_dll_force_needed(void) | 448 | static u32 omap2_dll_force_needed(void) |
449 | { | 449 | { |
diff --git a/arch/arm/mach-omap2/clock.h b/arch/arm/mach-omap2/clock.h index 162978fd5359..4f791866b910 100644 --- a/arch/arm/mach-omap2/clock.h +++ b/arch/arm/mach-omap2/clock.h | |||
@@ -338,7 +338,7 @@ struct prcm_config { | |||
338 | /* | 338 | /* |
339 | * These represent optimal values for common parts, it won't work for all. | 339 | * These represent optimal values for common parts, it won't work for all. |
340 | * As long as you scale down, most parameters are still work, they just | 340 | * As long as you scale down, most parameters are still work, they just |
341 | * become sub-optimal. The RFR value goes in the oppisite direction. If you | 341 | * become sub-optimal. The RFR value goes in the opposite direction. If you |
342 | * don't adjust it down as your clock period increases the refresh interval | 342 | * don't adjust it down as your clock period increases the refresh interval |
343 | * will not be met. Setting all parameters for complete worst case may work, | 343 | * will not be met. Setting all parameters for complete worst case may work, |
344 | * but may cut memory performance by 2x. Due to errata the DLLs need to be | 344 | * but may cut memory performance by 2x. Due to errata the DLLs need to be |
@@ -384,7 +384,7 @@ struct prcm_config { | |||
384 | * Filling in table based on H4 boards and 2430-SDPs variants available. | 384 | * Filling in table based on H4 boards and 2430-SDPs variants available. |
385 | * There are quite a few more rates combinations which could be defined. | 385 | * There are quite a few more rates combinations which could be defined. |
386 | * | 386 | * |
387 | * When multiple values are defiend the start up will try and choose the | 387 | * When multiple values are defined the start up will try and choose the |
388 | * fastest one. If a 'fast' value is defined, then automatically, the /2 | 388 | * fastest one. If a 'fast' value is defined, then automatically, the /2 |
389 | * one should be included as it can be used. Generally having more that | 389 | * one should be included as it can be used. Generally having more that |
390 | * one fast set does not make sense, as static timings need to be changed | 390 | * one fast set does not make sense, as static timings need to be changed |
diff --git a/arch/arm/mach-pxa/corgi_lcd.c b/arch/arm/mach-pxa/corgi_lcd.c index a72476c24621..365b9435f748 100644 --- a/arch/arm/mach-pxa/corgi_lcd.c +++ b/arch/arm/mach-pxa/corgi_lcd.c | |||
@@ -40,7 +40,7 @@ | |||
40 | #define PICTRL_ADRS 0x06 | 40 | #define PICTRL_ADRS 0x06 |
41 | #define POLCTRL_ADRS 0x07 | 41 | #define POLCTRL_ADRS 0x07 |
42 | 42 | ||
43 | /* Resgister Bit Definitions */ | 43 | /* Register Bit Definitions */ |
44 | #define RESCTL_QVGA 0x01 | 44 | #define RESCTL_QVGA 0x01 |
45 | #define RESCTL_VGA 0x00 | 45 | #define RESCTL_VGA 0x00 |
46 | 46 | ||
@@ -55,11 +55,11 @@ | |||
55 | #define POWER0_COM_DCLK 0x01 /* COM Voltage DC Bias DAC Serial Data Clock */ | 55 | #define POWER0_COM_DCLK 0x01 /* COM Voltage DC Bias DAC Serial Data Clock */ |
56 | #define POWER0_COM_DOUT 0x02 /* COM Voltage DC Bias DAC Serial Data Out */ | 56 | #define POWER0_COM_DOUT 0x02 /* COM Voltage DC Bias DAC Serial Data Out */ |
57 | #define POWER0_DAC_ON 0x04 /* DAC Power Supply ON */ | 57 | #define POWER0_DAC_ON 0x04 /* DAC Power Supply ON */ |
58 | #define POWER0_COM_ON 0x08 /* COM Powewr Supply ON */ | 58 | #define POWER0_COM_ON 0x08 /* COM Power Supply ON */ |
59 | #define POWER0_VCC5_ON 0x10 /* VCC5 Power Supply ON */ | 59 | #define POWER0_VCC5_ON 0x10 /* VCC5 Power Supply ON */ |
60 | 60 | ||
61 | #define POWER0_DAC_OFF 0x00 /* DAC Power Supply OFF */ | 61 | #define POWER0_DAC_OFF 0x00 /* DAC Power Supply OFF */ |
62 | #define POWER0_COM_OFF 0x00 /* COM Powewr Supply OFF */ | 62 | #define POWER0_COM_OFF 0x00 /* COM Power Supply OFF */ |
63 | #define POWER0_VCC5_OFF 0x00 /* VCC5 Power Supply OFF */ | 63 | #define POWER0_VCC5_OFF 0x00 /* VCC5 Power Supply OFF */ |
64 | 64 | ||
65 | #define PICTRL_INIT_STATE 0x01 | 65 | #define PICTRL_INIT_STATE 0x01 |
@@ -145,7 +145,7 @@ static void lcdtg_set_common_voltage(u8 base_data, u8 data) | |||
145 | lcdtg_i2c_send_stop(base_data); | 145 | lcdtg_i2c_send_stop(base_data); |
146 | } | 146 | } |
147 | 147 | ||
148 | /* Set Phase Adjuct */ | 148 | /* Set Phase Adjust */ |
149 | static void lcdtg_set_phadadj(int mode) | 149 | static void lcdtg_set_phadadj(int mode) |
150 | { | 150 | { |
151 | int adj; | 151 | int adj; |
@@ -226,7 +226,7 @@ static void lcdtg_hw_init(int mode) | |||
226 | /* Signals output enable */ | 226 | /* Signals output enable */ |
227 | corgi_ssp_lcdtg_send(PICTRL_ADRS, 0); | 227 | corgi_ssp_lcdtg_send(PICTRL_ADRS, 0); |
228 | 228 | ||
229 | /* Set Phase Adjuct */ | 229 | /* Set Phase Adjust */ |
230 | lcdtg_set_phadadj(mode); | 230 | lcdtg_set_phadadj(mode); |
231 | 231 | ||
232 | /* Initialize for Input Signals from ATI */ | 232 | /* Initialize for Input Signals from ATI */ |
diff --git a/arch/arm/mach-pxa/corgi_ssp.c b/arch/arm/mach-pxa/corgi_ssp.c index ff6b4ee037f5..40dea3d5142b 100644 --- a/arch/arm/mach-pxa/corgi_ssp.c +++ b/arch/arm/mach-pxa/corgi_ssp.c | |||
@@ -32,7 +32,7 @@ static struct corgissp_machinfo *ssp_machinfo; | |||
32 | * There are three devices connected to the SSP interface: | 32 | * There are three devices connected to the SSP interface: |
33 | * 1. A touchscreen controller (TI ADS7846 compatible) | 33 | * 1. A touchscreen controller (TI ADS7846 compatible) |
34 | * 2. An LCD contoller (with some Backlight functionality) | 34 | * 2. An LCD contoller (with some Backlight functionality) |
35 | * 3. A battery moinitoring IC (Maxim MAX1111) | 35 | * 3. A battery monitoring IC (Maxim MAX1111) |
36 | * | 36 | * |
37 | * Each device uses a different speed/mode of communication. | 37 | * Each device uses a different speed/mode of communication. |
38 | * | 38 | * |
diff --git a/arch/arm/mach-realview/localtimer.c b/arch/arm/mach-realview/localtimer.c index caf6b8bb6c95..c7bdf04ab094 100644 --- a/arch/arm/mach-realview/localtimer.c +++ b/arch/arm/mach-realview/localtimer.c | |||
@@ -30,7 +30,7 @@ static unsigned long mpcore_timer_rate; | |||
30 | /* | 30 | /* |
31 | * local_timer_ack: checks for a local timer interrupt. | 31 | * local_timer_ack: checks for a local timer interrupt. |
32 | * | 32 | * |
33 | * If a local timer interrupt has occured, acknowledge and return 1. | 33 | * If a local timer interrupt has occurred, acknowledge and return 1. |
34 | * Otherwise, return 0. | 34 | * Otherwise, return 0. |
35 | */ | 35 | */ |
36 | int local_timer_ack(void) | 36 | int local_timer_ack(void) |
diff --git a/arch/arm/mach-s3c2410/mach-h1940.c b/arch/arm/mach-s3c2410/mach-h1940.c index 5ccd0be23a33..5c9bcea74767 100644 --- a/arch/arm/mach-s3c2410/mach-h1940.c +++ b/arch/arm/mach-s3c2410/mach-h1940.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <linux/list.h> | 17 | #include <linux/list.h> |
18 | #include <linux/timer.h> | 18 | #include <linux/timer.h> |
19 | #include <linux/init.h> | 19 | #include <linux/init.h> |
20 | #include <linux/sysdev.h> | ||
20 | #include <linux/serial_core.h> | 21 | #include <linux/serial_core.h> |
21 | #include <linux/platform_device.h> | 22 | #include <linux/platform_device.h> |
22 | 23 | ||
diff --git a/arch/arm/mach-s3c2410/mach-qt2410.c b/arch/arm/mach-s3c2410/mach-qt2410.c index 9cc4253d7bbc..d86e6f18bac9 100644 --- a/arch/arm/mach-s3c2410/mach-qt2410.c +++ b/arch/arm/mach-s3c2410/mach-qt2410.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/list.h> | 27 | #include <linux/list.h> |
28 | #include <linux/timer.h> | 28 | #include <linux/timer.h> |
29 | #include <linux/init.h> | 29 | #include <linux/init.h> |
30 | #include <linux/sysdev.h> | ||
30 | #include <linux/platform_device.h> | 31 | #include <linux/platform_device.h> |
31 | #include <linux/serial_core.h> | 32 | #include <linux/serial_core.h> |
32 | #include <linux/spi/spi.h> | 33 | #include <linux/spi/spi.h> |
diff --git a/arch/arm/mach-s3c2412/dma.c b/arch/arm/mach-s3c2412/dma.c index d0f4695c09d9..668cccefe7b0 100644 --- a/arch/arm/mach-s3c2412/dma.c +++ b/arch/arm/mach-s3c2412/dma.c | |||
@@ -59,8 +59,8 @@ static struct s3c24xx_dma_map __initdata s3c2412_dma_mappings[] = { | |||
59 | [DMACH_SPI1] = { | 59 | [DMACH_SPI1] = { |
60 | .name = "spi1", | 60 | .name = "spi1", |
61 | .channels = MAP(S3C2412_DMAREQSEL_SPI1TX), | 61 | .channels = MAP(S3C2412_DMAREQSEL_SPI1TX), |
62 | .hw_addr.to = S3C2410_PA_SPI + 0x20 + S3C2410_SPTDAT, | 62 | .hw_addr.to = S3C2410_PA_SPI + S3C2412_SPI1 + S3C2410_SPTDAT, |
63 | .hw_addr.from = S3C2410_PA_SPI + 0x20 + S3C2410_SPRDAT, | 63 | .hw_addr.from = S3C2410_PA_SPI + S3C2412_SPI1 + S3C2410_SPRDAT, |
64 | }, | 64 | }, |
65 | [DMACH_UART0] = { | 65 | [DMACH_UART0] = { |
66 | .name = "uart0", | 66 | .name = "uart0", |
diff --git a/arch/arm/mach-s3c2412/s3c2412.c b/arch/arm/mach-s3c2412/s3c2412.c index aafe0bc593f1..c602aa39f9c4 100644 --- a/arch/arm/mach-s3c2412/s3c2412.c +++ b/arch/arm/mach-s3c2412/s3c2412.c | |||
@@ -37,6 +37,7 @@ | |||
37 | #include <asm/arch/regs-gpio.h> | 37 | #include <asm/arch/regs-gpio.h> |
38 | #include <asm/arch/regs-gpioj.h> | 38 | #include <asm/arch/regs-gpioj.h> |
39 | #include <asm/arch/regs-dsc.h> | 39 | #include <asm/arch/regs-dsc.h> |
40 | #include <asm/arch/regs-spi.h> | ||
40 | 41 | ||
41 | #include <asm/plat-s3c24xx/s3c2412.h> | 42 | #include <asm/plat-s3c24xx/s3c2412.h> |
42 | #include <asm/plat-s3c24xx/cpu.h> | 43 | #include <asm/plat-s3c24xx/cpu.h> |
@@ -74,6 +75,14 @@ void __init s3c2412_init_uarts(struct s3c2410_uartcfg *cfg, int no) | |||
74 | s3c_device_sdi.name = "s3c2412-sdi"; | 75 | s3c_device_sdi.name = "s3c2412-sdi"; |
75 | s3c_device_lcd.name = "s3c2412-lcd"; | 76 | s3c_device_lcd.name = "s3c2412-lcd"; |
76 | s3c_device_nand.name = "s3c2412-nand"; | 77 | s3c_device_nand.name = "s3c2412-nand"; |
78 | |||
79 | /* spi channel related changes, s3c2412/13 specific */ | ||
80 | s3c_device_spi0.name = "s3c2412-spi"; | ||
81 | s3c_device_spi0.resource[0].end = S3C24XX_PA_SPI + 0x24; | ||
82 | s3c_device_spi1.name = "s3c2412-spi"; | ||
83 | s3c_device_spi1.resource[0].start = S3C24XX_PA_SPI + S3C2412_SPI1; | ||
84 | s3c_device_spi1.resource[0].end = S3C24XX_PA_SPI + S3C2412_SPI1 + 0x24; | ||
85 | |||
77 | } | 86 | } |
78 | 87 | ||
79 | /* s3c2412_idle | 88 | /* s3c2412_idle |
diff --git a/arch/arm/mach-s3c2440/mach-osiris.c b/arch/arm/mach-s3c2440/mach-osiris.c index 324f5a237921..4d6c7a574c1a 100644 --- a/arch/arm/mach-s3c2440/mach-osiris.c +++ b/arch/arm/mach-s3c2440/mach-osiris.c | |||
@@ -45,7 +45,7 @@ | |||
45 | #include <asm/plat-s3c24xx/devs.h> | 45 | #include <asm/plat-s3c24xx/devs.h> |
46 | #include <asm/plat-s3c24xx/cpu.h> | 46 | #include <asm/plat-s3c24xx/cpu.h> |
47 | 47 | ||
48 | /* onboard perihpheral map */ | 48 | /* onboard perihperal map */ |
49 | 49 | ||
50 | static struct map_desc osiris_iodesc[] __initdata = { | 50 | static struct map_desc osiris_iodesc[] __initdata = { |
51 | /* ISA IO areas (may be over-written later) */ | 51 | /* ISA IO areas (may be over-written later) */ |
diff --git a/arch/arm/mach-s3c2440/mach-rx3715.c b/arch/arm/mach-s3c2440/mach-rx3715.c index c3cc4bf158f6..866ff71c01dd 100644 --- a/arch/arm/mach-s3c2440/mach-rx3715.c +++ b/arch/arm/mach-s3c2440/mach-rx3715.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <linux/init.h> | 19 | #include <linux/init.h> |
20 | #include <linux/tty.h> | 20 | #include <linux/tty.h> |
21 | #include <linux/console.h> | 21 | #include <linux/console.h> |
22 | #include <linux/sysdev.h> | ||
22 | #include <linux/platform_device.h> | 23 | #include <linux/platform_device.h> |
23 | #include <linux/serial_core.h> | 24 | #include <linux/serial_core.h> |
24 | #include <linux/serial.h> | 25 | #include <linux/serial.h> |
diff --git a/arch/arm/mach-s3c2443/clock.c b/arch/arm/mach-s3c2443/clock.c index 0b6e360aeae7..5955efb5de8d 100644 --- a/arch/arm/mach-s3c2443/clock.c +++ b/arch/arm/mach-s3c2443/clock.c | |||
@@ -747,6 +747,25 @@ static struct clk init_clocks[] = { | |||
747 | .enable = s3c2443_clkcon_enable_h, | 747 | .enable = s3c2443_clkcon_enable_h, |
748 | .ctrlbit = S3C2443_HCLKCON_USBD, | 748 | .ctrlbit = S3C2443_HCLKCON_USBD, |
749 | }, { | 749 | }, { |
750 | .name = "hsmmc", | ||
751 | .id = -1, | ||
752 | .parent = &clk_h, | ||
753 | .enable = s3c2443_clkcon_enable_h, | ||
754 | .ctrlbit = S3C2443_HCLKCON_HSMMC, | ||
755 | }, { | ||
756 | .name = "cfc", | ||
757 | .id = -1, | ||
758 | .parent = &clk_h, | ||
759 | .enable = s3c2443_clkcon_enable_h, | ||
760 | .ctrlbit = S3C2443_HCLKCON_CFC, | ||
761 | .ctrlbit = S3C2443_HCLKCON_HSMMC, | ||
762 | }, { | ||
763 | .name = "ssmc", | ||
764 | .id = -1, | ||
765 | .parent = &clk_h, | ||
766 | .enable = s3c2443_clkcon_enable_h, | ||
767 | .ctrlbit = S3C2443_HCLKCON_SSMC, | ||
768 | }, { | ||
750 | .name = "timers", | 769 | .name = "timers", |
751 | .id = -1, | 770 | .id = -1, |
752 | .parent = &clk_p, | 771 | .parent = &clk_p, |
@@ -791,7 +810,8 @@ static struct clk init_clocks[] = { | |||
791 | .name = "usb-bus-host", | 810 | .name = "usb-bus-host", |
792 | .id = -1, | 811 | .id = -1, |
793 | .parent = &clk_usb_bus_host, | 812 | .parent = &clk_usb_bus_host, |
794 | }, { .name = "ac97", | 813 | }, { |
814 | .name = "ac97", | ||
795 | .id = -1, | 815 | .id = -1, |
796 | .parent = &clk_p, | 816 | .parent = &clk_p, |
797 | .ctrlbit = S3C2443_PCLKCON_AC97, | 817 | .ctrlbit = S3C2443_PCLKCON_AC97, |
diff --git a/arch/arm/mach-s3c2443/mach-smdk2443.c b/arch/arm/mach-s3c2443/mach-smdk2443.c index b71ee53c2865..b1eb709ee65a 100644 --- a/arch/arm/mach-s3c2443/mach-smdk2443.c +++ b/arch/arm/mach-s3c2443/mach-smdk2443.c | |||
@@ -104,6 +104,7 @@ static struct s3c2410_uartcfg smdk2443_uartcfgs[] __initdata = { | |||
104 | static struct platform_device *smdk2443_devices[] __initdata = { | 104 | static struct platform_device *smdk2443_devices[] __initdata = { |
105 | &s3c_device_wdt, | 105 | &s3c_device_wdt, |
106 | &s3c_device_i2c, | 106 | &s3c_device_i2c, |
107 | &s3c_device_hsmmc, | ||
107 | }; | 108 | }; |
108 | 109 | ||
109 | static void __init smdk2443_map_io(void) | 110 | static void __init smdk2443_map_io(void) |
diff --git a/arch/arm/mach-s3c2443/s3c2443.c b/arch/arm/mach-s3c2443/s3c2443.c index 11b1d0b310c3..8d8117158d23 100644 --- a/arch/arm/mach-s3c2443/s3c2443.c +++ b/arch/arm/mach-s3c2443/s3c2443.c | |||
@@ -63,6 +63,10 @@ int __init s3c2443_init(void) | |||
63 | 63 | ||
64 | s3c_device_nand.name = "s3c2412-nand"; | 64 | s3c_device_nand.name = "s3c2412-nand"; |
65 | 65 | ||
66 | /* change WDT IRQ number */ | ||
67 | s3c_device_wdt.resource[1].start = IRQ_S3C2443_WDT; | ||
68 | s3c_device_wdt.resource[1].end = IRQ_S3C2443_WDT; | ||
69 | |||
66 | return sysdev_register(&s3c2443_sysdev); | 70 | return sysdev_register(&s3c2443_sysdev); |
67 | } | 71 | } |
68 | 72 | ||
diff --git a/arch/arm/mach-sa1100/time.c b/arch/arm/mach-sa1100/time.c index 416e277054c2..29cb0c1604ab 100644 --- a/arch/arm/mach-sa1100/time.c +++ b/arch/arm/mach-sa1100/time.c | |||
@@ -25,7 +25,7 @@ static unsigned long __init sa1100_get_rtc_time(void) | |||
25 | { | 25 | { |
26 | /* | 26 | /* |
27 | * According to the manual we should be able to let RTTR be zero | 27 | * According to the manual we should be able to let RTTR be zero |
28 | * and then a default diviser for a 32.768KHz clock is used. | 28 | * and then a default divisor for a 32.768KHz clock is used. |
29 | * Apparently this doesn't work, at least for my SA1110 rev 5. | 29 | * Apparently this doesn't work, at least for my SA1110 rev 5. |
30 | * If the clock divider is uninitialized then reset it to the | 30 | * If the clock divider is uninitialized then reset it to the |
31 | * default value to get the 1Hz clock. | 31 | * default value to get the 1Hz clock. |
diff --git a/arch/arm/mm/Kconfig b/arch/arm/mm/Kconfig index 15f0284010ca..5f472a8b406a 100644 --- a/arch/arm/mm/Kconfig +++ b/arch/arm/mm/Kconfig | |||
@@ -351,6 +351,7 @@ config CPU_V6 | |||
351 | select CPU_CACHE_V6 | 351 | select CPU_CACHE_V6 |
352 | select CPU_CACHE_VIPT | 352 | select CPU_CACHE_VIPT |
353 | select CPU_CP15_MMU | 353 | select CPU_CP15_MMU |
354 | select CPU_HAS_ASID | ||
354 | select CPU_COPY_V6 if MMU | 355 | select CPU_COPY_V6 if MMU |
355 | select CPU_TLB_V6 if MMU | 356 | select CPU_TLB_V6 if MMU |
356 | 357 | ||
@@ -376,6 +377,7 @@ config CPU_V7 | |||
376 | select CPU_CACHE_V7 | 377 | select CPU_CACHE_V7 |
377 | select CPU_CACHE_VIPT | 378 | select CPU_CACHE_VIPT |
378 | select CPU_CP15_MMU | 379 | select CPU_CP15_MMU |
380 | select CPU_HAS_ASID | ||
379 | select CPU_COPY_V6 if MMU | 381 | select CPU_COPY_V6 if MMU |
380 | select CPU_TLB_V6 if MMU | 382 | select CPU_TLB_V6 if MMU |
381 | 383 | ||
@@ -498,6 +500,12 @@ config CPU_TLB_V6 | |||
498 | 500 | ||
499 | endif | 501 | endif |
500 | 502 | ||
503 | config CPU_HAS_ASID | ||
504 | bool | ||
505 | help | ||
506 | This indicates whether the CPU has the ASID register; used to | ||
507 | tag TLB and possibly cache entries. | ||
508 | |||
501 | config CPU_CP15 | 509 | config CPU_CP15 |
502 | bool | 510 | bool |
503 | help | 511 | help |
diff --git a/arch/arm/mm/alignment.c b/arch/arm/mm/alignment.c index 19ca333240ec..36440c899583 100644 --- a/arch/arm/mm/alignment.c +++ b/arch/arm/mm/alignment.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Copyright (C) 1995 Linus Torvalds | 4 | * Copyright (C) 1995 Linus Torvalds |
5 | * Modifications for ARM processor (c) 1995-2001 Russell King | 5 | * Modifications for ARM processor (c) 1995-2001 Russell King |
6 | * Thumb aligment fault fixups (c) 2004 MontaVista Software, Inc. | 6 | * Thumb alignment fault fixups (c) 2004 MontaVista Software, Inc. |
7 | * - Adapted from gdb/sim/arm/thumbemu.c -- Thumb instruction emulation. | 7 | * - Adapted from gdb/sim/arm/thumbemu.c -- Thumb instruction emulation. |
8 | * Copyright (C) 1996, Cygnus Software Technologies Ltd. | 8 | * Copyright (C) 1996, Cygnus Software Technologies Ltd. |
9 | * | 9 | * |
diff --git a/arch/arm/mm/ioremap.c b/arch/arm/mm/ioremap.c index d6167ad4e011..f3ade18862aa 100644 --- a/arch/arm/mm/ioremap.c +++ b/arch/arm/mm/ioremap.c | |||
@@ -346,7 +346,7 @@ void __iounmap(volatile void __iomem *addr) | |||
346 | #ifndef CONFIG_SMP | 346 | #ifndef CONFIG_SMP |
347 | /* | 347 | /* |
348 | * If this is a section based mapping we need to handle it | 348 | * If this is a section based mapping we need to handle it |
349 | * specially as the VM subysystem does not know how to handle | 349 | * specially as the VM subsystem does not know how to handle |
350 | * such a beast. We need the lock here b/c we need to clear | 350 | * such a beast. We need the lock here b/c we need to clear |
351 | * all the mappings before the area can be reclaimed | 351 | * all the mappings before the area can be reclaimed |
352 | * by someone else. | 352 | * by someone else. |
diff --git a/arch/arm/mm/mmap.c b/arch/arm/mm/mmap.c index 2c4c2422cd1e..2728b0e7d2bb 100644 --- a/arch/arm/mm/mmap.c +++ b/arch/arm/mm/mmap.c | |||
@@ -5,7 +5,7 @@ | |||
5 | #include <linux/mm.h> | 5 | #include <linux/mm.h> |
6 | #include <linux/mman.h> | 6 | #include <linux/mman.h> |
7 | #include <linux/shm.h> | 7 | #include <linux/shm.h> |
8 | 8 | #include <linux/sched.h> | |
9 | #include <asm/system.h> | 9 | #include <asm/system.h> |
10 | 10 | ||
11 | #define COLOUR_ALIGN(addr,pgoff) \ | 11 | #define COLOUR_ALIGN(addr,pgoff) \ |
diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c index 2ba1530d1ce1..02e050ae59f6 100644 --- a/arch/arm/mm/mmu.c +++ b/arch/arm/mm/mmu.c | |||
@@ -92,7 +92,7 @@ static struct cachepolicy cache_policies[] __initdata = { | |||
92 | }; | 92 | }; |
93 | 93 | ||
94 | /* | 94 | /* |
95 | * These are useful for identifing cache coherency | 95 | * These are useful for identifying cache coherency |
96 | * problems by allowing the cache or the cache and | 96 | * problems by allowing the cache or the cache and |
97 | * writebuffer to be turned off. (Note: the write | 97 | * writebuffer to be turned off. (Note: the write |
98 | * buffer should not be on and the cache off). | 98 | * buffer should not be on and the cache off). |
diff --git a/arch/arm/plat-iop/pci.c b/arch/arm/plat-iop/pci.c index e2744b7227c5..2b5aa1135b11 100644 --- a/arch/arm/plat-iop/pci.c +++ b/arch/arm/plat-iop/pci.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <linux/ioport.h> | 19 | #include <linux/ioport.h> |
20 | #include <asm/io.h> | 20 | #include <asm/io.h> |
21 | #include <asm/irq.h> | 21 | #include <asm/irq.h> |
22 | #include <asm/signal.h> | ||
22 | #include <asm/system.h> | 23 | #include <asm/system.h> |
23 | #include <asm/hardware.h> | 24 | #include <asm/hardware.h> |
24 | #include <asm/mach/pci.h> | 25 | #include <asm/mach/pci.h> |
@@ -85,10 +86,10 @@ static int iop3xx_pci_status(void) | |||
85 | 86 | ||
86 | /* | 87 | /* |
87 | * Simply write the address register and read the configuration | 88 | * Simply write the address register and read the configuration |
88 | * data. Note that the 4 nop's ensure that we are able to handle | 89 | * data. Note that the 4 nops ensure that we are able to handle |
89 | * a delayed abort (in theory.) | 90 | * a delayed abort (in theory.) |
90 | */ | 91 | */ |
91 | static inline u32 iop3xx_read(unsigned long addr) | 92 | static u32 iop3xx_read(unsigned long addr) |
92 | { | 93 | { |
93 | u32 val; | 94 | u32 val; |
94 | 95 | ||
@@ -321,7 +322,7 @@ void __init iop3xx_atu_disable(void) | |||
321 | /* Flag to determine whether the ATU is initialized and the PCI bus scanned */ | 322 | /* Flag to determine whether the ATU is initialized and the PCI bus scanned */ |
322 | int init_atu; | 323 | int init_atu; |
323 | 324 | ||
324 | void iop3xx_pci_preinit(void) | 325 | void __init iop3xx_pci_preinit(void) |
325 | { | 326 | { |
326 | if (iop3xx_get_init_atu() == IOP3XX_INIT_ATU_ENABLE) { | 327 | if (iop3xx_get_init_atu() == IOP3XX_INIT_ATU_ENABLE) { |
327 | iop3xx_atu_disable(); | 328 | iop3xx_atu_disable(); |
diff --git a/arch/arm/plat-omap/common.c b/arch/arm/plat-omap/common.c index dd8708ad0a71..7987aa6e95f8 100644 --- a/arch/arm/plat-omap/common.c +++ b/arch/arm/plat-omap/common.c | |||
@@ -73,7 +73,7 @@ static const void *get_config(u16 tag, size_t len, int skip, size_t *len_out) | |||
73 | } | 73 | } |
74 | if (info != NULL) { | 74 | if (info != NULL) { |
75 | /* Check the length as a lame attempt to check for | 75 | /* Check the length as a lame attempt to check for |
76 | * binary inconsistancy. */ | 76 | * binary inconsistency. */ |
77 | if (len != NO_LENGTH_CHECK) { | 77 | if (len != NO_LENGTH_CHECK) { |
78 | /* Word-align len */ | 78 | /* Word-align len */ |
79 | if (len & 0x03) | 79 | if (len & 0x03) |
diff --git a/arch/arm/plat-omap/dma.c b/arch/arm/plat-omap/dma.c index 55a4d3be16b6..88d5b6d9f950 100644 --- a/arch/arm/plat-omap/dma.c +++ b/arch/arm/plat-omap/dma.c | |||
@@ -1172,7 +1172,7 @@ static void set_b1_regs(void) | |||
1172 | break; | 1172 | break; |
1173 | default: | 1173 | default: |
1174 | BUG(); | 1174 | BUG(); |
1175 | return; /* Supress warning about uninitialized vars */ | 1175 | return; /* Suppress warning about uninitialized vars */ |
1176 | } | 1176 | } |
1177 | 1177 | ||
1178 | if (omap_dma_in_1510_mode()) { | 1178 | if (omap_dma_in_1510_mode()) { |
diff --git a/arch/arm/plat-omap/sram.c b/arch/arm/plat-omap/sram.c index bc46f33aede3..1f23f0459e5f 100644 --- a/arch/arm/plat-omap/sram.c +++ b/arch/arm/plat-omap/sram.c | |||
@@ -59,8 +59,8 @@ extern unsigned long omapfb_reserve_sram(unsigned long sram_pstart, | |||
59 | 59 | ||
60 | /* | 60 | /* |
61 | * Depending on the target RAMFS firewall setup, the public usable amount of | 61 | * Depending on the target RAMFS firewall setup, the public usable amount of |
62 | * SRAM varies. The default accessable size for all device types is 2k. A GP | 62 | * SRAM varies. The default accessible size for all device types is 2k. A GP |
63 | * device allows ARM11 but not other initators for full size. This | 63 | * device allows ARM11 but not other initiators for full size. This |
64 | * functionality seems ok until some nice security API happens. | 64 | * functionality seems ok until some nice security API happens. |
65 | */ | 65 | */ |
66 | static int is_sram_locked(void) | 66 | static int is_sram_locked(void) |
@@ -71,7 +71,7 @@ static int is_sram_locked(void) | |||
71 | type = __raw_readl(VA_CONTROL_STAT) & TYPE_MASK; | 71 | type = __raw_readl(VA_CONTROL_STAT) & TYPE_MASK; |
72 | 72 | ||
73 | if (type == GP_DEVICE) { | 73 | if (type == GP_DEVICE) { |
74 | /* RAMFW: R/W access to all initators for all qualifier sets */ | 74 | /* RAMFW: R/W access to all initiators for all qualifier sets */ |
75 | if (cpu_is_omap242x()) { | 75 | if (cpu_is_omap242x()) { |
76 | __raw_writel(0xFF, VA_REQINFOPERM0); /* all q-vects */ | 76 | __raw_writel(0xFF, VA_REQINFOPERM0); /* all q-vects */ |
77 | __raw_writel(0xCFDE, VA_READPERM0); /* all i-read */ | 77 | __raw_writel(0xCFDE, VA_READPERM0); /* all i-read */ |
diff --git a/arch/arm/plat-omap/usb.c b/arch/arm/plat-omap/usb.c index 25489aafb113..a5aedf964b88 100644 --- a/arch/arm/plat-omap/usb.c +++ b/arch/arm/plat-omap/usb.c | |||
@@ -177,7 +177,7 @@ static u32 __init omap_usb0_init(unsigned nwires, unsigned is_device) | |||
177 | 177 | ||
178 | /* NOTE: SPEED and SUSP aren't configured here. OTG hosts | 178 | /* NOTE: SPEED and SUSP aren't configured here. OTG hosts |
179 | * may be able to use I2C requests to set those bits along | 179 | * may be able to use I2C requests to set those bits along |
180 | * with VBUS switching and overcurrent detction. | 180 | * with VBUS switching and overcurrent detection. |
181 | */ | 181 | */ |
182 | 182 | ||
183 | if (cpu_class_is_omap1() && nwires != 6) | 183 | if (cpu_class_is_omap1() && nwires != 6) |
diff --git a/arch/arm/plat-s3c24xx/common-smdk.c b/arch/arm/plat-s3c24xx/common-smdk.c index 908efa7d745f..7ed19b23ce56 100644 --- a/arch/arm/plat-s3c24xx/common-smdk.c +++ b/arch/arm/plat-s3c24xx/common-smdk.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <linux/list.h> | 18 | #include <linux/list.h> |
19 | #include <linux/timer.h> | 19 | #include <linux/timer.h> |
20 | #include <linux/init.h> | 20 | #include <linux/init.h> |
21 | #include <linux/sysdev.h> | ||
21 | #include <linux/platform_device.h> | 22 | #include <linux/platform_device.h> |
22 | 23 | ||
23 | #include <linux/mtd/mtd.h> | 24 | #include <linux/mtd/mtd.h> |
@@ -29,6 +30,7 @@ | |||
29 | #include <asm/mach/map.h> | 30 | #include <asm/mach/map.h> |
30 | #include <asm/mach/irq.h> | 31 | #include <asm/mach/irq.h> |
31 | 32 | ||
33 | #include <asm/mach-types.h> | ||
32 | #include <asm/hardware.h> | 34 | #include <asm/hardware.h> |
33 | #include <asm/io.h> | 35 | #include <asm/io.h> |
34 | #include <asm/irq.h> | 36 | #include <asm/irq.h> |
@@ -192,6 +194,9 @@ void __init smdk_machine_init(void) | |||
192 | s3c2410_gpio_setpin(S3C2410_GPF6, 1); | 194 | s3c2410_gpio_setpin(S3C2410_GPF6, 1); |
193 | s3c2410_gpio_setpin(S3C2410_GPF7, 1); | 195 | s3c2410_gpio_setpin(S3C2410_GPF7, 1); |
194 | 196 | ||
197 | if (machine_is_smdk2443()) | ||
198 | smdk_nand_info.twrph0 = 50; | ||
199 | |||
195 | s3c_device_nand.dev.platform_data = &smdk_nand_info; | 200 | s3c_device_nand.dev.platform_data = &smdk_nand_info; |
196 | 201 | ||
197 | platform_add_devices(smdk_devs, ARRAY_SIZE(smdk_devs)); | 202 | platform_add_devices(smdk_devs, ARRAY_SIZE(smdk_devs)); |
diff --git a/arch/arm/plat-s3c24xx/devs.c b/arch/arm/plat-s3c24xx/devs.c index 0fe53b39cb2f..5875da0ae0eb 100644 --- a/arch/arm/plat-s3c24xx/devs.c +++ b/arch/arm/plat-s3c24xx/devs.c | |||
@@ -33,6 +33,7 @@ | |||
33 | 33 | ||
34 | #include <asm/plat-s3c24xx/devs.h> | 34 | #include <asm/plat-s3c24xx/devs.h> |
35 | #include <asm/plat-s3c24xx/cpu.h> | 35 | #include <asm/plat-s3c24xx/cpu.h> |
36 | #include <asm/arch/regs-spi.h> | ||
36 | 37 | ||
37 | /* Serial port registrations */ | 38 | /* Serial port registrations */ |
38 | 39 | ||
@@ -402,6 +403,36 @@ struct platform_device s3c_device_sdi = { | |||
402 | 403 | ||
403 | EXPORT_SYMBOL(s3c_device_sdi); | 404 | EXPORT_SYMBOL(s3c_device_sdi); |
404 | 405 | ||
406 | /* High-speed MMC/SD */ | ||
407 | |||
408 | static struct resource s3c_hsmmc_resource[] = { | ||
409 | [0] = { | ||
410 | .start = S3C2443_PA_HSMMC, | ||
411 | .end = S3C2443_PA_HSMMC + S3C2443_SZ_HSMMC - 1, | ||
412 | .flags = IORESOURCE_MEM, | ||
413 | }, | ||
414 | [1] = { | ||
415 | .start = IRQ_S3C2443_HSMMC, | ||
416 | .end = IRQ_S3C2443_HSMMC, | ||
417 | .flags = IORESOURCE_IRQ, | ||
418 | } | ||
419 | }; | ||
420 | |||
421 | static u64 s3c_device_hsmmc_dmamask = 0xffffffffUL; | ||
422 | |||
423 | struct platform_device s3c_device_hsmmc = { | ||
424 | .name = "s3c-sdhci", | ||
425 | .id = -1, | ||
426 | .num_resources = ARRAY_SIZE(s3c_hsmmc_resource), | ||
427 | .resource = s3c_hsmmc_resource, | ||
428 | .dev = { | ||
429 | .dma_mask = &s3c_device_hsmmc_dmamask, | ||
430 | .coherent_dma_mask = 0xffffffffUL | ||
431 | } | ||
432 | }; | ||
433 | |||
434 | |||
435 | |||
405 | /* SPI (0) */ | 436 | /* SPI (0) */ |
406 | 437 | ||
407 | static struct resource s3c_spi0_resource[] = { | 438 | static struct resource s3c_spi0_resource[] = { |
@@ -437,8 +468,8 @@ EXPORT_SYMBOL(s3c_device_spi0); | |||
437 | 468 | ||
438 | static struct resource s3c_spi1_resource[] = { | 469 | static struct resource s3c_spi1_resource[] = { |
439 | [0] = { | 470 | [0] = { |
440 | .start = S3C24XX_PA_SPI + 0x20, | 471 | .start = S3C24XX_PA_SPI + S3C2410_SPI1, |
441 | .end = S3C24XX_PA_SPI + 0x20 + 0x1f, | 472 | .end = S3C24XX_PA_SPI + S3C2410_SPI1 + 0x1f, |
442 | .flags = IORESOURCE_MEM, | 473 | .flags = IORESOURCE_MEM, |
443 | }, | 474 | }, |
444 | [1] = { | 475 | [1] = { |
diff --git a/arch/arm/plat-s3c24xx/dma.c b/arch/arm/plat-s3c24xx/dma.c index 6f03c9370979..08d80f2f51f2 100644 --- a/arch/arm/plat-s3c24xx/dma.c +++ b/arch/arm/plat-s3c24xx/dma.c | |||
@@ -1153,7 +1153,7 @@ EXPORT_SYMBOL(s3c2410_dma_set_buffdone_fn); | |||
1153 | * | 1153 | * |
1154 | * hwcfg: the value for xxxSTCn register, | 1154 | * hwcfg: the value for xxxSTCn register, |
1155 | * bit 0: 0=increment pointer, 1=leave pointer | 1155 | * bit 0: 0=increment pointer, 1=leave pointer |
1156 | * bit 1: 0=soucre is AHB, 1=soucre is APB | 1156 | * bit 1: 0=source is AHB, 1=source is APB |
1157 | * | 1157 | * |
1158 | * devaddr: physical address of the source | 1158 | * devaddr: physical address of the source |
1159 | */ | 1159 | */ |
diff --git a/arch/arm/plat-s3c24xx/pm-simtec.c b/arch/arm/plat-s3c24xx/pm-simtec.c index bd965f2feeca..cb0b3a4ccf1b 100644 --- a/arch/arm/plat-s3c24xx/pm-simtec.c +++ b/arch/arm/plat-s3c24xx/pm-simtec.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <linux/list.h> | 18 | #include <linux/list.h> |
19 | #include <linux/timer.h> | 19 | #include <linux/timer.h> |
20 | #include <linux/init.h> | 20 | #include <linux/init.h> |
21 | #include <linux/sysdev.h> | ||
21 | #include <linux/device.h> | 22 | #include <linux/device.h> |
22 | 23 | ||
23 | #include <asm/mach/arch.h> | 24 | #include <asm/mach/arch.h> |
diff --git a/arch/arm/plat-s3c24xx/pm.c b/arch/arm/plat-s3c24xx/pm.c index c6b03f8ab260..5692eccdf4d1 100644 --- a/arch/arm/plat-s3c24xx/pm.c +++ b/arch/arm/plat-s3c24xx/pm.c | |||
@@ -555,7 +555,7 @@ static int s3c2410_pm_enter(suspend_state_t state) | |||
555 | __raw_writel(__raw_readl(S3C2410_INTPND), S3C2410_INTPND); | 555 | __raw_writel(__raw_readl(S3C2410_INTPND), S3C2410_INTPND); |
556 | __raw_writel(__raw_readl(S3C2410_SRCPND), S3C2410_SRCPND); | 556 | __raw_writel(__raw_readl(S3C2410_SRCPND), S3C2410_SRCPND); |
557 | 557 | ||
558 | /* call cpu specific preperation */ | 558 | /* call cpu specific preparation */ |
559 | 559 | ||
560 | pm_cpu_prep(); | 560 | pm_cpu_prep(); |
561 | 561 | ||
diff --git a/arch/blackfin/Kconfig b/arch/blackfin/Kconfig index d80e5b1d686e..b1b111bb2f3a 100644 --- a/arch/blackfin/Kconfig +++ b/arch/blackfin/Kconfig | |||
@@ -25,6 +25,10 @@ config BLACKFIN | |||
25 | bool | 25 | bool |
26 | default y | 26 | default y |
27 | 27 | ||
28 | config ZONE_DMA | ||
29 | bool | ||
30 | default y | ||
31 | |||
28 | config BFIN | 32 | config BFIN |
29 | bool | 33 | bool |
30 | default y | 34 | default y |
@@ -189,7 +193,7 @@ config BFIN537_BLUETECHNIX_CM | |||
189 | CM-BF537 support for EVAL- and DEV-Board. | 193 | CM-BF537 support for EVAL- and DEV-Board. |
190 | 194 | ||
191 | config BFIN561_BLUETECHNIX_CM | 195 | config BFIN561_BLUETECHNIX_CM |
192 | bool "BF561-CM" | 196 | bool "Bluetechnix CM-BF561" |
193 | depends on (BF561) | 197 | depends on (BF561) |
194 | help | 198 | help |
195 | CM-BF561 support for EVAL- and DEV-Board. | 199 | CM-BF561 support for EVAL- and DEV-Board. |
@@ -200,6 +204,12 @@ config BFIN561_EZKIT | |||
200 | help | 204 | help |
201 | BF561-EZKIT-LITE board Support. | 205 | BF561-EZKIT-LITE board Support. |
202 | 206 | ||
207 | config BFIN561_TEPLA | ||
208 | bool "BF561-TEPLA" | ||
209 | depends on (BF561) | ||
210 | help | ||
211 | BF561-TEPLA board Support. | ||
212 | |||
203 | config PNAV10 | 213 | config PNAV10 |
204 | bool "PNAV 1.0 board" | 214 | bool "PNAV 1.0 board" |
205 | depends on (BF537) | 215 | depends on (BF537) |
diff --git a/arch/blackfin/Makefile b/arch/blackfin/Makefile index 52d4dbdb2b1a..75e89c324756 100644 --- a/arch/blackfin/Makefile +++ b/arch/blackfin/Makefile | |||
@@ -15,6 +15,7 @@ GZFLAGS := -9 | |||
15 | CFLAGS_MODULE += -mlong-calls | 15 | CFLAGS_MODULE += -mlong-calls |
16 | KALLSYMS += --symbol-prefix=_ | 16 | KALLSYMS += --symbol-prefix=_ |
17 | 17 | ||
18 | KBUILD_DEFCONFIG := BF537-STAMP_defconfig | ||
18 | 19 | ||
19 | # setup the machine name and the machine dependent settings | 20 | # setup the machine name and the machine dependent settings |
20 | machine-$(CONFIG_BF531) := bf533 | 21 | machine-$(CONFIG_BF531) := bf533 |
diff --git a/arch/blackfin/configs/BF533-EZKIT_defconfig b/arch/blackfin/configs/BF533-EZKIT_defconfig new file mode 100644 index 000000000000..377c8e05e4ab --- /dev/null +++ b/arch/blackfin/configs/BF533-EZKIT_defconfig | |||
@@ -0,0 +1,1014 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.19.3 | ||
4 | # | ||
5 | # CONFIG_MMU is not set | ||
6 | # CONFIG_FPU is not set | ||
7 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
8 | # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set | ||
9 | CONFIG_BLACKFIN=y | ||
10 | CONFIG_BFIN=y | ||
11 | CONFIG_SEMAPHORE_SLEEPERS=y | ||
12 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
13 | CONFIG_GENERIC_HWEIGHT=y | ||
14 | CONFIG_GENERIC_HARDIRQS=y | ||
15 | CONFIG_GENERIC_IRQ_PROBE=y | ||
16 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
17 | CONFIG_UCLINUX=y | ||
18 | CONFIG_FORCE_MAX_ZONEORDER=14 | ||
19 | CONFIG_IRQCHIP_DEMUX_GPIO=y | ||
20 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
21 | |||
22 | # | ||
23 | # Code maturity level options | ||
24 | # | ||
25 | CONFIG_EXPERIMENTAL=y | ||
26 | CONFIG_BROKEN_ON_SMP=y | ||
27 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
28 | |||
29 | # | ||
30 | # General setup | ||
31 | # | ||
32 | CONFIG_LOCALVERSION="" | ||
33 | CONFIG_LOCALVERSION_AUTO=y | ||
34 | CONFIG_SYSVIPC=y | ||
35 | # CONFIG_IPC_NS is not set | ||
36 | # CONFIG_POSIX_MQUEUE is not set | ||
37 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
38 | # CONFIG_TASKSTATS is not set | ||
39 | # CONFIG_UTS_NS is not set | ||
40 | # CONFIG_AUDIT is not set | ||
41 | # CONFIG_IKCONFIG is not set | ||
42 | # CONFIG_RELAY is not set | ||
43 | CONFIG_INITRAMFS_SOURCE="" | ||
44 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
45 | CONFIG_SYSCTL=y | ||
46 | CONFIG_EMBEDDED=y | ||
47 | CONFIG_UID16=y | ||
48 | CONFIG_SYSCTL_SYSCALL=y | ||
49 | CONFIG_KALLSYMS=y | ||
50 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
51 | CONFIG_HOTPLUG=y | ||
52 | CONFIG_PRINTK=y | ||
53 | CONFIG_BUG=y | ||
54 | CONFIG_ELF_CORE=y | ||
55 | CONFIG_BASE_FULL=y | ||
56 | CONFIG_FUTEX=y | ||
57 | CONFIG_EPOLL=y | ||
58 | CONFIG_BIG_ORDER_ALLOC_NOFAIL_MAGIC=3 | ||
59 | # CONFIG_LIMIT_PAGECACHE is not set | ||
60 | CONFIG_BUDDY=y | ||
61 | # CONFIG_NP2 is not set | ||
62 | CONFIG_SLAB=y | ||
63 | CONFIG_VM_EVENT_COUNTERS=y | ||
64 | CONFIG_RT_MUTEXES=y | ||
65 | CONFIG_TINY_SHMEM=y | ||
66 | CONFIG_BASE_SMALL=0 | ||
67 | # CONFIG_SLOB is not set | ||
68 | |||
69 | # | ||
70 | # Loadable module support | ||
71 | # | ||
72 | CONFIG_MODULES=y | ||
73 | CONFIG_MODULE_UNLOAD=y | ||
74 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
75 | # CONFIG_MODVERSIONS is not set | ||
76 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
77 | CONFIG_KMOD=y | ||
78 | |||
79 | # | ||
80 | # Block layer | ||
81 | # | ||
82 | CONFIG_BLOCK=y | ||
83 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
84 | |||
85 | # | ||
86 | # IO Schedulers | ||
87 | # | ||
88 | CONFIG_IOSCHED_NOOP=y | ||
89 | CONFIG_IOSCHED_AS=y | ||
90 | # CONFIG_IOSCHED_DEADLINE is not set | ||
91 | CONFIG_IOSCHED_CFQ=y | ||
92 | CONFIG_DEFAULT_AS=y | ||
93 | # CONFIG_DEFAULT_DEADLINE is not set | ||
94 | # CONFIG_DEFAULT_CFQ is not set | ||
95 | # CONFIG_DEFAULT_NOOP is not set | ||
96 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
97 | # CONFIG_PREEMPT_NONE is not set | ||
98 | CONFIG_PREEMPT_VOLUNTARY=y | ||
99 | # CONFIG_PREEMPT is not set | ||
100 | |||
101 | # | ||
102 | # Blackfin Processor Options | ||
103 | # | ||
104 | |||
105 | # | ||
106 | # Processor and Board Settings | ||
107 | # | ||
108 | # CONFIG_BF531 is not set | ||
109 | # CONFIG_BF532 is not set | ||
110 | CONFIG_BF533=y | ||
111 | # CONFIG_BF534 is not set | ||
112 | # CONFIG_BF535 is not set | ||
113 | # CONFIG_BF536 is not set | ||
114 | # CONFIG_BF537 is not set | ||
115 | # CONFIG_BF561 is not set | ||
116 | # CONFIG_BF_REV_0_2 is not set | ||
117 | CONFIG_BF_REV_0_3=y | ||
118 | # CONFIG_BF_REV_0_4 is not set | ||
119 | # CONFIG_BF_REV_0_5 is not set | ||
120 | CONFIG_BFIN_SINGLE_CORE=y | ||
121 | CONFIG_BFIN533_EZKIT=y | ||
122 | # CONFIG_BFIN533_STAMP is not set | ||
123 | # CONFIG_BFIN537_STAMP is not set | ||
124 | # CONFIG_BFIN533_BLUETECHNIX_CM is not set | ||
125 | # CONFIG_BFIN537_BLUETECHNIX_CM is not set | ||
126 | # CONFIG_BFIN561_BLUETECHNIX_CM is not set | ||
127 | # CONFIG_BFIN561_EZKIT is not set | ||
128 | # CONFIG_PNAV10 is not set | ||
129 | # CONFIG_GENERIC_BOARD is not set | ||
130 | CONFIG_MEM_MT48LC16M16A2TG_75=y | ||
131 | |||
132 | # | ||
133 | # BF533/2/1 Specific Configuration | ||
134 | # | ||
135 | |||
136 | # | ||
137 | # Interrupt Priority Assignment | ||
138 | # | ||
139 | |||
140 | # | ||
141 | # Priority | ||
142 | # | ||
143 | CONFIG_UART_ERROR=7 | ||
144 | CONFIG_SPORT0_ERROR=7 | ||
145 | CONFIG_SPI_ERROR=7 | ||
146 | CONFIG_SPORT1_ERROR=7 | ||
147 | CONFIG_PPI_ERROR=7 | ||
148 | CONFIG_DMA_ERROR=7 | ||
149 | CONFIG_PLLWAKE_ERROR=7 | ||
150 | CONFIG_RTC_ERROR=8 | ||
151 | CONFIG_DMA0_PPI=8 | ||
152 | CONFIG_DMA1_SPORT0RX=9 | ||
153 | CONFIG_DMA2_SPORT0TX=9 | ||
154 | CONFIG_DMA3_SPORT1RX=9 | ||
155 | CONFIG_DMA4_SPORT1TX=9 | ||
156 | CONFIG_DMA5_SPI=10 | ||
157 | CONFIG_DMA6_UARTRX=10 | ||
158 | CONFIG_DMA7_UARTTX=10 | ||
159 | CONFIG_TIMER0=11 | ||
160 | CONFIG_TIMER1=11 | ||
161 | CONFIG_TIMER2=11 | ||
162 | CONFIG_PFA=12 | ||
163 | CONFIG_PFB=12 | ||
164 | CONFIG_MEMDMA0=13 | ||
165 | CONFIG_MEMDMA1=13 | ||
166 | CONFIG_WDTIMER=13 | ||
167 | |||
168 | # | ||
169 | # Board customizations | ||
170 | # | ||
171 | |||
172 | # | ||
173 | # Board Setup | ||
174 | # | ||
175 | CONFIG_CLKIN_HZ=27000000 | ||
176 | CONFIG_MEM_SIZE=32 | ||
177 | CONFIG_MEM_ADD_WIDTH=9 | ||
178 | CONFIG_BOOT_LOAD=0x1000 | ||
179 | |||
180 | # | ||
181 | # Console UART Setup | ||
182 | # | ||
183 | # CONFIG_BAUD_9600 is not set | ||
184 | # CONFIG_BAUD_19200 is not set | ||
185 | # CONFIG_BAUD_38400 is not set | ||
186 | CONFIG_BAUD_57600=y | ||
187 | # CONFIG_BAUD_115200 is not set | ||
188 | CONFIG_BAUD_NO_PARITY=y | ||
189 | # CONFIG_BAUD_PARITY is not set | ||
190 | CONFIG_BAUD_1_STOPBIT=y | ||
191 | # CONFIG_BAUD_2_STOPBIT is not set | ||
192 | |||
193 | # | ||
194 | # Blackfin Kernel Optimizations | ||
195 | # | ||
196 | |||
197 | # | ||
198 | # Timer Tick | ||
199 | # | ||
200 | # CONFIG_HZ_100 is not set | ||
201 | CONFIG_HZ_250=y | ||
202 | # CONFIG_HZ_1000 is not set | ||
203 | CONFIG_HZ=250 | ||
204 | |||
205 | # | ||
206 | # Memory Optimizations | ||
207 | # | ||
208 | CONFIG_I_ENTRY_L1=y | ||
209 | CONFIG_EXCPT_IRQ_SYSC_L1=y | ||
210 | CONFIG_DO_IRQ_L1=y | ||
211 | CONFIG_CORE_TIMER_IRQ_L1=y | ||
212 | CONFIG_IDLE_L1=y | ||
213 | CONFIG_SCHEDULE_L1=y | ||
214 | CONFIG_ARITHMETIC_OPS_L1=y | ||
215 | CONFIG_ACCESS_OK_L1=y | ||
216 | CONFIG_MEMSET_L1=y | ||
217 | CONFIG_MEMCPY_L1=y | ||
218 | CONFIG_SYS_BFIN_SPINLOCK_L1=y | ||
219 | # CONFIG_IP_CHECKSUM_L1 is not set | ||
220 | # CONFIG_SYSCALL_TAB_L1 is not set | ||
221 | # CONFIG_CPLB_SWITCH_TAB_L1 is not set | ||
222 | CONFIG_RAMKERNEL=y | ||
223 | # CONFIG_ROMKERNEL is not set | ||
224 | CONFIG_SELECT_MEMORY_MODEL=y | ||
225 | CONFIG_FLATMEM_MANUAL=y | ||
226 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
227 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
228 | CONFIG_FLATMEM=y | ||
229 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
230 | # CONFIG_SPARSEMEM_STATIC is not set | ||
231 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
232 | # CONFIG_RESOURCES_64BIT is not set | ||
233 | CONFIG_LARGE_ALLOCS=y | ||
234 | CONFIG_BFIN_DMA_5XX=y | ||
235 | # CONFIG_DMA_UNCACHED_2M is not set | ||
236 | CONFIG_DMA_UNCACHED_1M=y | ||
237 | # CONFIG_DMA_UNCACHED_NONE is not set | ||
238 | |||
239 | # | ||
240 | # Cache Support | ||
241 | # | ||
242 | CONFIG_BLKFIN_CACHE=y | ||
243 | CONFIG_BLKFIN_DCACHE=y | ||
244 | # CONFIG_BLKFIN_DCACHE_BANKA is not set | ||
245 | # CONFIG_BLKFIN_CACHE_LOCK is not set | ||
246 | # CONFIG_BLKFIN_WB is not set | ||
247 | CONFIG_BLKFIN_WT=y | ||
248 | CONFIG_L1_MAX_PIECE=16 | ||
249 | |||
250 | # | ||
251 | # Clock Settings | ||
252 | # | ||
253 | # CONFIG_BFIN_KERNEL_CLOCK is not set | ||
254 | |||
255 | # | ||
256 | # Asynchonous Memory Configuration | ||
257 | # | ||
258 | |||
259 | # | ||
260 | # EBIU_AMBCTL Global Control | ||
261 | # | ||
262 | CONFIG_C_AMCKEN=y | ||
263 | CONFIG_C_CDPRIO=y | ||
264 | # CONFIG_C_AMBEN is not set | ||
265 | # CONFIG_C_AMBEN_B0 is not set | ||
266 | # CONFIG_C_AMBEN_B0_B1 is not set | ||
267 | # CONFIG_C_AMBEN_B0_B1_B2 is not set | ||
268 | CONFIG_C_AMBEN_ALL=y | ||
269 | |||
270 | # | ||
271 | # EBIU_AMBCTL Control | ||
272 | # | ||
273 | CONFIG_BANK_0=0x7BB0 | ||
274 | CONFIG_BANK_1=0x7BB0 | ||
275 | CONFIG_BANK_2=0x7BB0 | ||
276 | CONFIG_BANK_3=0x99B3 | ||
277 | |||
278 | # | ||
279 | # Bus options (PCI, PCMCIA, EISA, MCA, ISA) | ||
280 | # | ||
281 | # CONFIG_PCI is not set | ||
282 | |||
283 | # | ||
284 | # PCCARD (PCMCIA/CardBus) support | ||
285 | # | ||
286 | # CONFIG_PCCARD is not set | ||
287 | |||
288 | # | ||
289 | # PCI Hotplug Support | ||
290 | # | ||
291 | |||
292 | # | ||
293 | # Executable file formats | ||
294 | # | ||
295 | CONFIG_BINFMT_ELF_FDPIC=y | ||
296 | CONFIG_BINFMT_FLAT=y | ||
297 | CONFIG_BINFMT_ZFLAT=y | ||
298 | # CONFIG_BINFMT_SHARED_FLAT is not set | ||
299 | # CONFIG_BINFMT_MISC is not set | ||
300 | |||
301 | # | ||
302 | # Power management options | ||
303 | # | ||
304 | CONFIG_PM=y | ||
305 | CONFIG_PM_LEGACY=y | ||
306 | # CONFIG_PM_DEBUG is not set | ||
307 | # CONFIG_PM_SYSFS_DEPRECATED is not set | ||
308 | CONFIG_PM_WAKEUP_GPIO_BY_SIC_IWR=y | ||
309 | # CONFIG_PM_WAKEUP_BY_GPIO is not set | ||
310 | # CONFIG_PM_WAKEUP_GPIO_API is not set | ||
311 | CONFIG_PM_WAKEUP_SIC_IWR=0x100000 | ||
312 | |||
313 | # | ||
314 | # CPU Frequency scaling | ||
315 | # | ||
316 | # CONFIG_CPU_FREQ is not set | ||
317 | |||
318 | # | ||
319 | # Networking | ||
320 | # | ||
321 | CONFIG_NET=y | ||
322 | |||
323 | # | ||
324 | # Networking options | ||
325 | # | ||
326 | # CONFIG_NETDEBUG is not set | ||
327 | CONFIG_PACKET=y | ||
328 | # CONFIG_PACKET_MMAP is not set | ||
329 | CONFIG_UNIX=y | ||
330 | CONFIG_XFRM=y | ||
331 | # CONFIG_XFRM_USER is not set | ||
332 | # CONFIG_XFRM_SUB_POLICY is not set | ||
333 | # CONFIG_NET_KEY is not set | ||
334 | CONFIG_INET=y | ||
335 | # CONFIG_IP_MULTICAST is not set | ||
336 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
337 | CONFIG_IP_FIB_HASH=y | ||
338 | CONFIG_IP_PNP=y | ||
339 | # CONFIG_IP_PNP_DHCP is not set | ||
340 | # CONFIG_IP_PNP_BOOTP is not set | ||
341 | # CONFIG_IP_PNP_RARP is not set | ||
342 | # CONFIG_NET_IPIP is not set | ||
343 | # CONFIG_NET_IPGRE is not set | ||
344 | # CONFIG_ARPD is not set | ||
345 | CONFIG_SYN_COOKIES=y | ||
346 | # CONFIG_INET_AH is not set | ||
347 | # CONFIG_INET_ESP is not set | ||
348 | # CONFIG_INET_IPCOMP is not set | ||
349 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
350 | # CONFIG_INET_TUNNEL is not set | ||
351 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
352 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
353 | CONFIG_INET_XFRM_MODE_BEET=y | ||
354 | CONFIG_INET_DIAG=y | ||
355 | CONFIG_INET_TCP_DIAG=y | ||
356 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
357 | CONFIG_TCP_CONG_CUBIC=y | ||
358 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
359 | # CONFIG_IPV6 is not set | ||
360 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
361 | # CONFIG_INET6_TUNNEL is not set | ||
362 | # CONFIG_NETLABEL is not set | ||
363 | # CONFIG_NETWORK_SECMARK is not set | ||
364 | # CONFIG_NETFILTER is not set | ||
365 | |||
366 | # | ||
367 | # DCCP Configuration (EXPERIMENTAL) | ||
368 | # | ||
369 | # CONFIG_IP_DCCP is not set | ||
370 | |||
371 | # | ||
372 | # SCTP Configuration (EXPERIMENTAL) | ||
373 | # | ||
374 | # CONFIG_IP_SCTP is not set | ||
375 | |||
376 | # | ||
377 | # TIPC Configuration (EXPERIMENTAL) | ||
378 | # | ||
379 | # CONFIG_TIPC is not set | ||
380 | # CONFIG_ATM is not set | ||
381 | # CONFIG_BRIDGE is not set | ||
382 | # CONFIG_VLAN_8021Q is not set | ||
383 | # CONFIG_DECNET is not set | ||
384 | # CONFIG_LLC2 is not set | ||
385 | # CONFIG_IPX is not set | ||
386 | # CONFIG_ATALK is not set | ||
387 | # CONFIG_X25 is not set | ||
388 | # CONFIG_LAPB is not set | ||
389 | # CONFIG_ECONET is not set | ||
390 | # CONFIG_WAN_ROUTER is not set | ||
391 | |||
392 | # | ||
393 | # QoS and/or fair queueing | ||
394 | # | ||
395 | # CONFIG_NET_SCHED is not set | ||
396 | |||
397 | # | ||
398 | # Network testing | ||
399 | # | ||
400 | # CONFIG_NET_PKTGEN is not set | ||
401 | # CONFIG_HAMRADIO is not set | ||
402 | # CONFIG_IRDA is not set | ||
403 | # CONFIG_BT is not set | ||
404 | # CONFIG_IEEE80211 is not set | ||
405 | |||
406 | # | ||
407 | # Device Drivers | ||
408 | # | ||
409 | |||
410 | # | ||
411 | # Generic Driver Options | ||
412 | # | ||
413 | CONFIG_STANDALONE=y | ||
414 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
415 | # CONFIG_FW_LOADER is not set | ||
416 | # CONFIG_SYS_HYPERVISOR is not set | ||
417 | |||
418 | # | ||
419 | # Connector - unified userspace <-> kernelspace linker | ||
420 | # | ||
421 | # CONFIG_CONNECTOR is not set | ||
422 | |||
423 | # | ||
424 | # Memory Technology Devices (MTD) | ||
425 | # | ||
426 | CONFIG_MTD=y | ||
427 | # CONFIG_MTD_DEBUG is not set | ||
428 | # CONFIG_MTD_CONCAT is not set | ||
429 | CONFIG_MTD_PARTITIONS=y | ||
430 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
431 | # CONFIG_MTD_CMDLINE_PARTS is not set | ||
432 | |||
433 | # | ||
434 | # User Modules And Translation Layers | ||
435 | # | ||
436 | CONFIG_MTD_CHAR=m | ||
437 | CONFIG_MTD_BLOCK=y | ||
438 | # CONFIG_FTL is not set | ||
439 | # CONFIG_NFTL is not set | ||
440 | # CONFIG_INFTL is not set | ||
441 | # CONFIG_RFD_FTL is not set | ||
442 | # CONFIG_SSFDC is not set | ||
443 | |||
444 | # | ||
445 | # RAM/ROM/Flash chip drivers | ||
446 | # | ||
447 | # CONFIG_MTD_CFI is not set | ||
448 | CONFIG_MTD_JEDECPROBE=m | ||
449 | CONFIG_MTD_GEN_PROBE=m | ||
450 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
451 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
452 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
453 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
454 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
455 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
456 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
457 | CONFIG_MTD_CFI_I1=y | ||
458 | CONFIG_MTD_CFI_I2=y | ||
459 | # CONFIG_MTD_CFI_I4 is not set | ||
460 | # CONFIG_MTD_CFI_I8 is not set | ||
461 | # CONFIG_MTD_CFI_INTELEXT is not set | ||
462 | # CONFIG_MTD_CFI_AMDSTD is not set | ||
463 | # CONFIG_MTD_CFI_STAA is not set | ||
464 | CONFIG_MTD_MW320D=m | ||
465 | CONFIG_MTD_RAM=y | ||
466 | CONFIG_MTD_ROM=m | ||
467 | # CONFIG_MTD_ABSENT is not set | ||
468 | # CONFIG_MTD_OBSOLETE_CHIPS is not set | ||
469 | |||
470 | # | ||
471 | # Mapping drivers for chip access | ||
472 | # | ||
473 | CONFIG_MTD_COMPLEX_MAPPINGS=y | ||
474 | # CONFIG_MTD_PHYSMAP is not set | ||
475 | CONFIG_MTD_BF5xx=m | ||
476 | CONFIG_BFIN_FLASH_SIZE=0x400000 | ||
477 | CONFIG_EBIU_FLASH_BASE=0x20000000 | ||
478 | |||
479 | # | ||
480 | # FLASH_EBIU_AMBCTL Control | ||
481 | # | ||
482 | CONFIG_BFIN_FLASH_BANK_0=0x7BB0 | ||
483 | CONFIG_BFIN_FLASH_BANK_1=0x7BB0 | ||
484 | CONFIG_BFIN_FLASH_BANK_2=0x7BB0 | ||
485 | CONFIG_BFIN_FLASH_BANK_3=0x7BB0 | ||
486 | # CONFIG_MTD_UCLINUX is not set | ||
487 | # CONFIG_MTD_PLATRAM is not set | ||
488 | |||
489 | # | ||
490 | # Self-contained MTD device drivers | ||
491 | # | ||
492 | # CONFIG_MTD_SLRAM is not set | ||
493 | # CONFIG_MTD_PHRAM is not set | ||
494 | # CONFIG_MTD_MTDRAM is not set | ||
495 | # CONFIG_MTD_BLOCK2MTD is not set | ||
496 | |||
497 | # | ||
498 | # Disk-On-Chip Device Drivers | ||
499 | # | ||
500 | # CONFIG_MTD_DOC2000 is not set | ||
501 | # CONFIG_MTD_DOC2001 is not set | ||
502 | # CONFIG_MTD_DOC2001PLUS is not set | ||
503 | |||
504 | # | ||
505 | # NAND Flash Device Drivers | ||
506 | # | ||
507 | # CONFIG_MTD_NAND is not set | ||
508 | |||
509 | # | ||
510 | # OneNAND Flash Device Drivers | ||
511 | # | ||
512 | # CONFIG_MTD_ONENAND is not set | ||
513 | |||
514 | # | ||
515 | # Parallel port support | ||
516 | # | ||
517 | # CONFIG_PARPORT is not set | ||
518 | |||
519 | # | ||
520 | # Plug and Play support | ||
521 | # | ||
522 | |||
523 | # | ||
524 | # Block devices | ||
525 | # | ||
526 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
527 | # CONFIG_BLK_DEV_LOOP is not set | ||
528 | # CONFIG_BLK_DEV_NBD is not set | ||
529 | CONFIG_BLK_DEV_RAM=y | ||
530 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
531 | CONFIG_BLK_DEV_RAM_SIZE=4096 | ||
532 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
533 | # CONFIG_BLK_DEV_INITRD is not set | ||
534 | # CONFIG_CDROM_PKTCDVD is not set | ||
535 | # CONFIG_ATA_OVER_ETH is not set | ||
536 | |||
537 | # | ||
538 | # Misc devices | ||
539 | # | ||
540 | # CONFIG_TIFM_CORE is not set | ||
541 | |||
542 | # | ||
543 | # ATA/ATAPI/MFM/RLL support | ||
544 | # | ||
545 | # CONFIG_IDE is not set | ||
546 | |||
547 | # | ||
548 | # SCSI device support | ||
549 | # | ||
550 | # CONFIG_RAID_ATTRS is not set | ||
551 | # CONFIG_SCSI is not set | ||
552 | # CONFIG_SCSI_NETLINK is not set | ||
553 | |||
554 | # | ||
555 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | ||
556 | # | ||
557 | # CONFIG_ATA is not set | ||
558 | |||
559 | # | ||
560 | # Multi-device support (RAID and LVM) | ||
561 | # | ||
562 | # CONFIG_MD is not set | ||
563 | |||
564 | # | ||
565 | # Fusion MPT device support | ||
566 | # | ||
567 | # CONFIG_FUSION is not set | ||
568 | |||
569 | # | ||
570 | # IEEE 1394 (FireWire) support | ||
571 | # | ||
572 | |||
573 | # | ||
574 | # I2O device support | ||
575 | # | ||
576 | |||
577 | # | ||
578 | # Network device support | ||
579 | # | ||
580 | CONFIG_NETDEVICES=y | ||
581 | # CONFIG_DUMMY is not set | ||
582 | # CONFIG_BONDING is not set | ||
583 | # CONFIG_EQUALIZER is not set | ||
584 | # CONFIG_TUN is not set | ||
585 | |||
586 | # | ||
587 | # PHY device support | ||
588 | # | ||
589 | # CONFIG_PHYLIB is not set | ||
590 | |||
591 | # | ||
592 | # Ethernet (10 or 100Mbit) | ||
593 | # | ||
594 | CONFIG_NET_ETHERNET=y | ||
595 | CONFIG_MII=y | ||
596 | CONFIG_SMC91X=y | ||
597 | |||
598 | # | ||
599 | # Ethernet (1000 Mbit) | ||
600 | # | ||
601 | |||
602 | # | ||
603 | # Ethernet (10000 Mbit) | ||
604 | # | ||
605 | |||
606 | # | ||
607 | # Token Ring devices | ||
608 | # | ||
609 | |||
610 | # | ||
611 | # Wireless LAN (non-hamradio) | ||
612 | # | ||
613 | # CONFIG_NET_RADIO is not set | ||
614 | |||
615 | # | ||
616 | # Wan interfaces | ||
617 | # | ||
618 | # CONFIG_WAN is not set | ||
619 | # CONFIG_PPP is not set | ||
620 | # CONFIG_SLIP is not set | ||
621 | # CONFIG_SHAPER is not set | ||
622 | # CONFIG_NETCONSOLE is not set | ||
623 | # CONFIG_NETPOLL is not set | ||
624 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
625 | |||
626 | # | ||
627 | # ISDN subsystem | ||
628 | # | ||
629 | # CONFIG_ISDN is not set | ||
630 | |||
631 | # | ||
632 | # Telephony Support | ||
633 | # | ||
634 | # CONFIG_PHONE is not set | ||
635 | |||
636 | # | ||
637 | # Input device support | ||
638 | # | ||
639 | # CONFIG_INPUT is not set | ||
640 | |||
641 | # | ||
642 | # Hardware I/O ports | ||
643 | # | ||
644 | # CONFIG_SERIO is not set | ||
645 | # CONFIG_GAMEPORT is not set | ||
646 | |||
647 | # | ||
648 | # Character devices | ||
649 | # | ||
650 | # CONFIG_AD9960 is not set | ||
651 | # CONFIG_SPI_ADC_BF533 is not set | ||
652 | # CONFIG_BF533_PFLAGS is not set | ||
653 | # CONFIG_BF5xx_PPIFCD is not set | ||
654 | # CONFIG_BF5xx_TIMERS is not set | ||
655 | # CONFIG_BF5xx_PPI is not set | ||
656 | # CONFIG_BFIN_SPORT is not set | ||
657 | # CONFIG_BFIN_TIMER_LATENCY is not set | ||
658 | # CONFIG_VT is not set | ||
659 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
660 | |||
661 | # | ||
662 | # Serial drivers | ||
663 | # | ||
664 | # CONFIG_SERIAL_8250 is not set | ||
665 | |||
666 | # | ||
667 | # Non-8250 serial port support | ||
668 | # | ||
669 | CONFIG_SERIAL_BFIN=y | ||
670 | CONFIG_SERIAL_BFIN_CONSOLE=y | ||
671 | CONFIG_SERIAL_BFIN_DMA=y | ||
672 | # CONFIG_SERIAL_BFIN_PIO is not set | ||
673 | CONFIG_SERIAL_BFIN_UART0=y | ||
674 | # CONFIG_BFIN_UART0_CTSRTS is not set | ||
675 | CONFIG_SERIAL_CORE=y | ||
676 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
677 | # CONFIG_SERIAL_BFIN_SPORT is not set | ||
678 | CONFIG_UNIX98_PTYS=y | ||
679 | # CONFIG_LEGACY_PTYS is not set | ||
680 | |||
681 | # | ||
682 | # CAN, the car bus and industrial fieldbus | ||
683 | # | ||
684 | # CONFIG_CAN4LINUX is not set | ||
685 | |||
686 | # | ||
687 | # IPMI | ||
688 | # | ||
689 | # CONFIG_IPMI_HANDLER is not set | ||
690 | |||
691 | # | ||
692 | # Watchdog Cards | ||
693 | # | ||
694 | # CONFIG_WATCHDOG is not set | ||
695 | CONFIG_HW_RANDOM=y | ||
696 | # CONFIG_GEN_RTC is not set | ||
697 | CONFIG_BLACKFIN_DPMC=y | ||
698 | # CONFIG_DTLK is not set | ||
699 | # CONFIG_R3964 is not set | ||
700 | |||
701 | # | ||
702 | # Ftape, the floppy tape device driver | ||
703 | # | ||
704 | # CONFIG_RAW_DRIVER is not set | ||
705 | |||
706 | # | ||
707 | # TPM devices | ||
708 | # | ||
709 | # CONFIG_TCG_TPM is not set | ||
710 | |||
711 | # | ||
712 | # I2C support | ||
713 | # | ||
714 | # CONFIG_I2C is not set | ||
715 | |||
716 | # | ||
717 | # SPI support | ||
718 | # | ||
719 | # CONFIG_SPI is not set | ||
720 | # CONFIG_SPI_MASTER is not set | ||
721 | |||
722 | # | ||
723 | # Dallas's 1-wire bus | ||
724 | # | ||
725 | # CONFIG_W1 is not set | ||
726 | |||
727 | # | ||
728 | # Hardware Monitoring support | ||
729 | # | ||
730 | CONFIG_HWMON=y | ||
731 | # CONFIG_HWMON_VID is not set | ||
732 | # CONFIG_SENSORS_ABITUGURU is not set | ||
733 | # CONFIG_SENSORS_F71805F is not set | ||
734 | # CONFIG_SENSORS_VT1211 is not set | ||
735 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
736 | |||
737 | # | ||
738 | # Multimedia devices | ||
739 | # | ||
740 | # CONFIG_VIDEO_DEV is not set | ||
741 | |||
742 | # | ||
743 | # Digital Video Broadcasting Devices | ||
744 | # | ||
745 | # CONFIG_DVB is not set | ||
746 | |||
747 | # | ||
748 | # Graphics support | ||
749 | # | ||
750 | CONFIG_FIRMWARE_EDID=y | ||
751 | # CONFIG_FB is not set | ||
752 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
753 | |||
754 | # | ||
755 | # Sound | ||
756 | # | ||
757 | # CONFIG_SOUND is not set | ||
758 | |||
759 | # | ||
760 | # USB support | ||
761 | # | ||
762 | CONFIG_USB_ARCH_HAS_HCD=y | ||
763 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
764 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
765 | # CONFIG_USB is not set | ||
766 | |||
767 | # | ||
768 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
769 | # | ||
770 | |||
771 | # | ||
772 | # USB Gadget Support | ||
773 | # | ||
774 | # CONFIG_USB_GADGET is not set | ||
775 | |||
776 | # | ||
777 | # MMC/SD Card support | ||
778 | # | ||
779 | # CONFIG_MMC is not set | ||
780 | |||
781 | # | ||
782 | # LED devices | ||
783 | # | ||
784 | # CONFIG_NEW_LEDS is not set | ||
785 | |||
786 | # | ||
787 | # LED drivers | ||
788 | # | ||
789 | |||
790 | # | ||
791 | # LED Triggers | ||
792 | # | ||
793 | |||
794 | # | ||
795 | # InfiniBand support | ||
796 | # | ||
797 | |||
798 | # | ||
799 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) | ||
800 | # | ||
801 | |||
802 | # | ||
803 | # Real Time Clock | ||
804 | # | ||
805 | CONFIG_RTC_LIB=y | ||
806 | CONFIG_RTC_CLASS=y | ||
807 | CONFIG_RTC_HCTOSYS=y | ||
808 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
809 | # CONFIG_RTC_DEBUG is not set | ||
810 | |||
811 | # | ||
812 | # RTC interfaces | ||
813 | # | ||
814 | CONFIG_RTC_INTF_SYSFS=y | ||
815 | CONFIG_RTC_INTF_PROC=y | ||
816 | CONFIG_RTC_INTF_DEV=y | ||
817 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
818 | |||
819 | # | ||
820 | # RTC drivers | ||
821 | # | ||
822 | # CONFIG_RTC_DRV_DS1553 is not set | ||
823 | # CONFIG_RTC_DRV_DS1742 is not set | ||
824 | # CONFIG_RTC_DRV_M48T86 is not set | ||
825 | # CONFIG_RTC_DRV_TEST is not set | ||
826 | # CONFIG_RTC_DRV_V3020 is not set | ||
827 | CONFIG_RTC_DRV_BFIN=y | ||
828 | |||
829 | # | ||
830 | # DMA Engine support | ||
831 | # | ||
832 | # CONFIG_DMA_ENGINE is not set | ||
833 | |||
834 | # | ||
835 | # DMA Clients | ||
836 | # | ||
837 | |||
838 | # | ||
839 | # DMA Devices | ||
840 | # | ||
841 | |||
842 | # | ||
843 | # PBX support | ||
844 | # | ||
845 | # CONFIG_PBX is not set | ||
846 | |||
847 | # | ||
848 | # File systems | ||
849 | # | ||
850 | CONFIG_EXT2_FS=y | ||
851 | CONFIG_EXT2_FS_XATTR=y | ||
852 | # CONFIG_EXT2_FS_POSIX_ACL is not set | ||
853 | # CONFIG_EXT2_FS_SECURITY is not set | ||
854 | # CONFIG_EXT3_FS is not set | ||
855 | # CONFIG_EXT4DEV_FS is not set | ||
856 | CONFIG_FS_MBCACHE=y | ||
857 | # CONFIG_REISERFS_FS is not set | ||
858 | # CONFIG_JFS_FS is not set | ||
859 | # CONFIG_FS_POSIX_ACL is not set | ||
860 | # CONFIG_XFS_FS is not set | ||
861 | # CONFIG_GFS2_FS is not set | ||
862 | # CONFIG_OCFS2_FS is not set | ||
863 | # CONFIG_MINIX_FS is not set | ||
864 | # CONFIG_ROMFS_FS is not set | ||
865 | # CONFIG_INOTIFY is not set | ||
866 | # CONFIG_QUOTA is not set | ||
867 | # CONFIG_DNOTIFY is not set | ||
868 | # CONFIG_AUTOFS_FS is not set | ||
869 | # CONFIG_AUTOFS4_FS is not set | ||
870 | # CONFIG_FUSE_FS is not set | ||
871 | |||
872 | # | ||
873 | # CD-ROM/DVD Filesystems | ||
874 | # | ||
875 | # CONFIG_ISO9660_FS is not set | ||
876 | # CONFIG_UDF_FS is not set | ||
877 | |||
878 | # | ||
879 | # DOS/FAT/NT Filesystems | ||
880 | # | ||
881 | # CONFIG_MSDOS_FS is not set | ||
882 | # CONFIG_VFAT_FS is not set | ||
883 | # CONFIG_NTFS_FS is not set | ||
884 | |||
885 | # | ||
886 | # Pseudo filesystems | ||
887 | # | ||
888 | CONFIG_PROC_FS=y | ||
889 | CONFIG_PROC_SYSCTL=y | ||
890 | CONFIG_SYSFS=y | ||
891 | # CONFIG_TMPFS is not set | ||
892 | # CONFIG_HUGETLB_PAGE is not set | ||
893 | CONFIG_RAMFS=y | ||
894 | # CONFIG_CONFIGFS_FS is not set | ||
895 | |||
896 | # | ||
897 | # Miscellaneous filesystems | ||
898 | # | ||
899 | # CONFIG_ADFS_FS is not set | ||
900 | # CONFIG_AFFS_FS is not set | ||
901 | # CONFIG_HFS_FS is not set | ||
902 | # CONFIG_HFSPLUS_FS is not set | ||
903 | # CONFIG_BEFS_FS is not set | ||
904 | # CONFIG_BFS_FS is not set | ||
905 | # CONFIG_EFS_FS is not set | ||
906 | CONFIG_YAFFS_FS=m | ||
907 | CONFIG_YAFFS_YAFFS1=y | ||
908 | # CONFIG_YAFFS_DOES_ECC is not set | ||
909 | CONFIG_YAFFS_YAFFS2=y | ||
910 | CONFIG_YAFFS_AUTO_YAFFS2=y | ||
911 | # CONFIG_YAFFS_DISABLE_LAZY_LOAD is not set | ||
912 | CONFIG_YAFFS_CHECKPOINT_RESERVED_BLOCKS=10 | ||
913 | # CONFIG_YAFFS_DISABLE_WIDE_TNODES is not set | ||
914 | # CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED is not set | ||
915 | CONFIG_YAFFS_SHORT_NAMES_IN_RAM=y | ||
916 | # CONFIG_JFFS_FS is not set | ||
917 | CONFIG_JFFS2_FS=m | ||
918 | CONFIG_JFFS2_FS_DEBUG=0 | ||
919 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
920 | # CONFIG_JFFS2_SUMMARY is not set | ||
921 | # CONFIG_JFFS2_FS_XATTR is not set | ||
922 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
923 | CONFIG_JFFS2_ZLIB=y | ||
924 | CONFIG_JFFS2_RTIME=y | ||
925 | # CONFIG_JFFS2_RUBIN is not set | ||
926 | # CONFIG_CRAMFS is not set | ||
927 | # CONFIG_VXFS_FS is not set | ||
928 | # CONFIG_HPFS_FS is not set | ||
929 | # CONFIG_QNX4FS_FS is not set | ||
930 | # CONFIG_SYSV_FS is not set | ||
931 | # CONFIG_UFS_FS is not set | ||
932 | |||
933 | # | ||
934 | # Network File Systems | ||
935 | # | ||
936 | CONFIG_NFS_FS=m | ||
937 | CONFIG_NFS_V3=y | ||
938 | # CONFIG_NFS_V3_ACL is not set | ||
939 | # CONFIG_NFS_V4 is not set | ||
940 | # CONFIG_NFS_DIRECTIO is not set | ||
941 | # CONFIG_NFSD is not set | ||
942 | CONFIG_LOCKD=m | ||
943 | CONFIG_LOCKD_V4=y | ||
944 | CONFIG_NFS_COMMON=y | ||
945 | CONFIG_SUNRPC=m | ||
946 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
947 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
948 | # CONFIG_SMB_FS is not set | ||
949 | # CONFIG_CIFS is not set | ||
950 | # CONFIG_NCP_FS is not set | ||
951 | # CONFIG_CODA_FS is not set | ||
952 | # CONFIG_AFS_FS is not set | ||
953 | # CONFIG_9P_FS is not set | ||
954 | |||
955 | # | ||
956 | # Partition Types | ||
957 | # | ||
958 | # CONFIG_PARTITION_ADVANCED is not set | ||
959 | CONFIG_MSDOS_PARTITION=y | ||
960 | |||
961 | # | ||
962 | # Native Language Support | ||
963 | # | ||
964 | # CONFIG_NLS is not set | ||
965 | |||
966 | # | ||
967 | # Profiling support | ||
968 | # | ||
969 | # CONFIG_PROFILING is not set | ||
970 | |||
971 | # | ||
972 | # Kernel hacking | ||
973 | # | ||
974 | # CONFIG_PRINTK_TIME is not set | ||
975 | CONFIG_ENABLE_MUST_CHECK=y | ||
976 | # CONFIG_MAGIC_SYSRQ is not set | ||
977 | # CONFIG_UNUSED_SYMBOLS is not set | ||
978 | # CONFIG_DEBUG_KERNEL is not set | ||
979 | CONFIG_LOG_BUF_SHIFT=14 | ||
980 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
981 | # CONFIG_DEBUG_FS is not set | ||
982 | # CONFIG_UNWIND_INFO is not set | ||
983 | # CONFIG_HEADERS_CHECK is not set | ||
984 | # CONFIG_DEBUG_SERIAL_EARLY_INIT is not set | ||
985 | CONFIG_DEBUG_HUNT_FOR_ZERO=y | ||
986 | # CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE is not set | ||
987 | # CONFIG_BOOTPARAM is not set | ||
988 | # CONFIG_NO_KERNEL_MSG is not set | ||
989 | CONFIG_CPLB_INFO=y | ||
990 | # CONFIG_NO_ACCESS_CHECK is not set | ||
991 | |||
992 | # | ||
993 | # Security options | ||
994 | # | ||
995 | # CONFIG_KEYS is not set | ||
996 | CONFIG_SECURITY=y | ||
997 | # CONFIG_SECURITY_NETWORK is not set | ||
998 | CONFIG_SECURITY_CAPABILITIES=y | ||
999 | |||
1000 | # | ||
1001 | # Cryptographic options | ||
1002 | # | ||
1003 | # CONFIG_CRYPTO is not set | ||
1004 | |||
1005 | # | ||
1006 | # Library routines | ||
1007 | # | ||
1008 | # CONFIG_CRC_CCITT is not set | ||
1009 | # CONFIG_CRC16 is not set | ||
1010 | CONFIG_CRC32=y | ||
1011 | # CONFIG_LIBCRC32C is not set | ||
1012 | CONFIG_ZLIB_INFLATE=y | ||
1013 | CONFIG_ZLIB_DEFLATE=m | ||
1014 | CONFIG_PLIST=y | ||
diff --git a/arch/blackfin/configs/BF533-STAMP_defconfig b/arch/blackfin/configs/BF533-STAMP_defconfig new file mode 100644 index 000000000000..14a948c288a5 --- /dev/null +++ b/arch/blackfin/configs/BF533-STAMP_defconfig | |||
@@ -0,0 +1,1296 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.20.4 | ||
4 | # | ||
5 | # CONFIG_MMU is not set | ||
6 | # CONFIG_FPU is not set | ||
7 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
8 | # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set | ||
9 | CONFIG_BLACKFIN=y | ||
10 | CONFIG_BFIN=y | ||
11 | CONFIG_SEMAPHORE_SLEEPERS=y | ||
12 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
13 | CONFIG_GENERIC_HWEIGHT=y | ||
14 | CONFIG_GENERIC_HARDIRQS=y | ||
15 | CONFIG_GENERIC_IRQ_PROBE=y | ||
16 | # CONFIG_GENERIC_TIME is not set | ||
17 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
18 | CONFIG_FORCE_MAX_ZONEORDER=14 | ||
19 | CONFIG_IRQCHIP_DEMUX_GPIO=y | ||
20 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
21 | |||
22 | # | ||
23 | # Code maturity level options | ||
24 | # | ||
25 | CONFIG_EXPERIMENTAL=y | ||
26 | CONFIG_BROKEN_ON_SMP=y | ||
27 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
28 | |||
29 | # | ||
30 | # General setup | ||
31 | # | ||
32 | CONFIG_LOCALVERSION="" | ||
33 | CONFIG_LOCALVERSION_AUTO=y | ||
34 | CONFIG_SYSVIPC=y | ||
35 | # CONFIG_IPC_NS is not set | ||
36 | # CONFIG_POSIX_MQUEUE is not set | ||
37 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
38 | # CONFIG_TASKSTATS is not set | ||
39 | # CONFIG_UTS_NS is not set | ||
40 | # CONFIG_AUDIT is not set | ||
41 | # CONFIG_IKCONFIG is not set | ||
42 | CONFIG_SYSFS_DEPRECATED=y | ||
43 | # CONFIG_RELAY is not set | ||
44 | CONFIG_INITRAMFS_SOURCE="" | ||
45 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
46 | CONFIG_SYSCTL=y | ||
47 | CONFIG_EMBEDDED=y | ||
48 | CONFIG_UID16=y | ||
49 | CONFIG_SYSCTL_SYSCALL=y | ||
50 | CONFIG_KALLSYMS=y | ||
51 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
52 | CONFIG_HOTPLUG=y | ||
53 | CONFIG_PRINTK=y | ||
54 | CONFIG_BUG=y | ||
55 | CONFIG_ELF_CORE=y | ||
56 | CONFIG_BASE_FULL=y | ||
57 | CONFIG_FUTEX=y | ||
58 | CONFIG_EPOLL=y | ||
59 | CONFIG_BIG_ORDER_ALLOC_NOFAIL_MAGIC=3 | ||
60 | # CONFIG_LIMIT_PAGECACHE is not set | ||
61 | CONFIG_BUDDY=y | ||
62 | # CONFIG_NP2 is not set | ||
63 | CONFIG_SLAB=y | ||
64 | CONFIG_VM_EVENT_COUNTERS=y | ||
65 | CONFIG_RT_MUTEXES=y | ||
66 | CONFIG_TINY_SHMEM=y | ||
67 | CONFIG_BASE_SMALL=0 | ||
68 | # CONFIG_SLOB is not set | ||
69 | |||
70 | # | ||
71 | # Loadable module support | ||
72 | # | ||
73 | CONFIG_MODULES=y | ||
74 | CONFIG_MODULE_UNLOAD=y | ||
75 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
76 | # CONFIG_MODVERSIONS is not set | ||
77 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
78 | CONFIG_KMOD=y | ||
79 | |||
80 | # | ||
81 | # Block layer | ||
82 | # | ||
83 | CONFIG_BLOCK=y | ||
84 | # CONFIG_LBD is not set | ||
85 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
86 | # CONFIG_LSF is not set | ||
87 | |||
88 | # | ||
89 | # IO Schedulers | ||
90 | # | ||
91 | CONFIG_IOSCHED_NOOP=y | ||
92 | CONFIG_IOSCHED_AS=y | ||
93 | # CONFIG_IOSCHED_DEADLINE is not set | ||
94 | CONFIG_IOSCHED_CFQ=y | ||
95 | CONFIG_DEFAULT_AS=y | ||
96 | # CONFIG_DEFAULT_DEADLINE is not set | ||
97 | # CONFIG_DEFAULT_CFQ is not set | ||
98 | # CONFIG_DEFAULT_NOOP is not set | ||
99 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
100 | # CONFIG_PREEMPT_NONE is not set | ||
101 | CONFIG_PREEMPT_VOLUNTARY=y | ||
102 | # CONFIG_PREEMPT is not set | ||
103 | |||
104 | # | ||
105 | # Blackfin Processor Options | ||
106 | # | ||
107 | |||
108 | # | ||
109 | # Processor and Board Settings | ||
110 | # | ||
111 | # CONFIG_BF531 is not set | ||
112 | # CONFIG_BF532 is not set | ||
113 | CONFIG_BF533=y | ||
114 | # CONFIG_BF534 is not set | ||
115 | # CONFIG_BF536 is not set | ||
116 | # CONFIG_BF537 is not set | ||
117 | # CONFIG_BF561 is not set | ||
118 | # CONFIG_BF_REV_0_2 is not set | ||
119 | CONFIG_BF_REV_0_3=y | ||
120 | # CONFIG_BF_REV_0_4 is not set | ||
121 | # CONFIG_BF_REV_0_5 is not set | ||
122 | CONFIG_BFIN_SINGLE_CORE=y | ||
123 | # CONFIG_BFIN533_EZKIT is not set | ||
124 | CONFIG_BFIN533_STAMP=y | ||
125 | # CONFIG_BFIN537_STAMP is not set | ||
126 | # CONFIG_BFIN533_BLUETECHNIX_CM is not set | ||
127 | # CONFIG_BFIN537_BLUETECHNIX_CM is not set | ||
128 | # CONFIG_BFIN561_BLUETECHNIX_CM is not set | ||
129 | # CONFIG_BFIN561_EZKIT is not set | ||
130 | # CONFIG_PNAV10 is not set | ||
131 | # CONFIG_GENERIC_BOARD is not set | ||
132 | CONFIG_MEM_MT48LC64M4A2FB_7E=y | ||
133 | CONFIG_BFIN_SHARED_FLASH_ENET=y | ||
134 | |||
135 | # | ||
136 | # BF533/2/1 Specific Configuration | ||
137 | # | ||
138 | |||
139 | # | ||
140 | # Interrupt Priority Assignment | ||
141 | # | ||
142 | |||
143 | # | ||
144 | # Priority | ||
145 | # | ||
146 | CONFIG_UART_ERROR=7 | ||
147 | CONFIG_SPORT0_ERROR=7 | ||
148 | CONFIG_SPI_ERROR=7 | ||
149 | CONFIG_SPORT1_ERROR=7 | ||
150 | CONFIG_PPI_ERROR=7 | ||
151 | CONFIG_DMA_ERROR=7 | ||
152 | CONFIG_PLLWAKE_ERROR=7 | ||
153 | CONFIG_RTC_ERROR=8 | ||
154 | CONFIG_DMA0_PPI=8 | ||
155 | CONFIG_DMA1_SPORT0RX=9 | ||
156 | CONFIG_DMA2_SPORT0TX=9 | ||
157 | CONFIG_DMA3_SPORT1RX=9 | ||
158 | CONFIG_DMA4_SPORT1TX=9 | ||
159 | CONFIG_DMA5_SPI=10 | ||
160 | CONFIG_DMA6_UARTRX=10 | ||
161 | CONFIG_DMA7_UARTTX=10 | ||
162 | CONFIG_TIMER0=11 | ||
163 | CONFIG_TIMER1=11 | ||
164 | CONFIG_TIMER2=11 | ||
165 | CONFIG_PFA=12 | ||
166 | CONFIG_PFB=12 | ||
167 | CONFIG_MEMDMA0=13 | ||
168 | CONFIG_MEMDMA1=13 | ||
169 | CONFIG_WDTIMER=13 | ||
170 | |||
171 | # | ||
172 | # Board customizations | ||
173 | # | ||
174 | # CONFIG_CMDLINE_BOOL is not set | ||
175 | |||
176 | # | ||
177 | # Board Setup | ||
178 | # | ||
179 | CONFIG_CLKIN_HZ=11059200 | ||
180 | CONFIG_MEM_SIZE=128 | ||
181 | CONFIG_MEM_ADD_WIDTH=11 | ||
182 | CONFIG_ENET_FLASH_PIN=0 | ||
183 | CONFIG_BOOT_LOAD=0x1000 | ||
184 | |||
185 | # | ||
186 | # LED Status Indicators | ||
187 | # | ||
188 | # CONFIG_BFIN_ALIVE_LED is not set | ||
189 | # CONFIG_BFIN_IDLE_LED is not set | ||
190 | CONFIG_BFIN_ALIVE_LED_PORT=0xFFC00700 | ||
191 | CONFIG_BFIN_ALIVE_LED_DPORT=0xFFC00730 | ||
192 | CONFIG_BFIN_IDLE_LED_PORT=0xFFC00700 | ||
193 | CONFIG_BFIN_IDLE_LED_DPORT=0xFFC00730 | ||
194 | |||
195 | # | ||
196 | # Console UART Setup | ||
197 | # | ||
198 | # CONFIG_BAUD_9600 is not set | ||
199 | # CONFIG_BAUD_19200 is not set | ||
200 | # CONFIG_BAUD_38400 is not set | ||
201 | CONFIG_BAUD_57600=y | ||
202 | # CONFIG_BAUD_115200 is not set | ||
203 | CONFIG_BAUD_NO_PARITY=y | ||
204 | # CONFIG_BAUD_PARITY is not set | ||
205 | CONFIG_BAUD_1_STOPBIT=y | ||
206 | # CONFIG_BAUD_2_STOPBIT is not set | ||
207 | |||
208 | # | ||
209 | # Blackfin Kernel Optimizations | ||
210 | # | ||
211 | |||
212 | # | ||
213 | # Timer Tick | ||
214 | # | ||
215 | # CONFIG_HZ_100 is not set | ||
216 | CONFIG_HZ_250=y | ||
217 | # CONFIG_HZ_300 is not set | ||
218 | # CONFIG_HZ_1000 is not set | ||
219 | CONFIG_HZ=250 | ||
220 | |||
221 | # | ||
222 | # Memory Optimizations | ||
223 | # | ||
224 | CONFIG_I_ENTRY_L1=y | ||
225 | CONFIG_EXCPT_IRQ_SYSC_L1=y | ||
226 | CONFIG_DO_IRQ_L1=y | ||
227 | CONFIG_CORE_TIMER_IRQ_L1=y | ||
228 | CONFIG_IDLE_L1=y | ||
229 | CONFIG_SCHEDULE_L1=y | ||
230 | CONFIG_ARITHMETIC_OPS_L1=y | ||
231 | CONFIG_ACCESS_OK_L1=y | ||
232 | CONFIG_MEMSET_L1=y | ||
233 | CONFIG_MEMCPY_L1=y | ||
234 | CONFIG_SYS_BFIN_SPINLOCK_L1=y | ||
235 | # CONFIG_IP_CHECKSUM_L1 is not set | ||
236 | # CONFIG_SYSCALL_TAB_L1 is not set | ||
237 | # CONFIG_CPLB_SWITCH_TAB_L1 is not set | ||
238 | CONFIG_RAMKERNEL=y | ||
239 | # CONFIG_ROMKERNEL is not set | ||
240 | CONFIG_SELECT_MEMORY_MODEL=y | ||
241 | CONFIG_FLATMEM_MANUAL=y | ||
242 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
243 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
244 | CONFIG_FLATMEM=y | ||
245 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
246 | # CONFIG_SPARSEMEM_STATIC is not set | ||
247 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
248 | # CONFIG_RESOURCES_64BIT is not set | ||
249 | CONFIG_LARGE_ALLOCS=y | ||
250 | CONFIG_BFIN_DMA_5XX=y | ||
251 | # CONFIG_DMA_UNCACHED_2M is not set | ||
252 | CONFIG_DMA_UNCACHED_1M=y | ||
253 | # CONFIG_DMA_UNCACHED_NONE is not set | ||
254 | |||
255 | # | ||
256 | # Cache Support | ||
257 | # | ||
258 | CONFIG_BLKFIN_CACHE=y | ||
259 | CONFIG_BLKFIN_DCACHE=y | ||
260 | # CONFIG_BLKFIN_DCACHE_BANKA is not set | ||
261 | # CONFIG_BLKFIN_CACHE_LOCK is not set | ||
262 | # CONFIG_BLKFIN_WB is not set | ||
263 | CONFIG_BLKFIN_WT=y | ||
264 | CONFIG_L1_MAX_PIECE=16 | ||
265 | |||
266 | # | ||
267 | # Clock Settings | ||
268 | # | ||
269 | # CONFIG_BFIN_KERNEL_CLOCK is not set | ||
270 | |||
271 | # | ||
272 | # Asynchonous Memory Configuration | ||
273 | # | ||
274 | |||
275 | # | ||
276 | # EBIU_AMBCTL Global Control | ||
277 | # | ||
278 | CONFIG_C_AMCKEN=y | ||
279 | CONFIG_C_CDPRIO=y | ||
280 | # CONFIG_C_AMBEN is not set | ||
281 | # CONFIG_C_AMBEN_B0 is not set | ||
282 | # CONFIG_C_AMBEN_B0_B1 is not set | ||
283 | # CONFIG_C_AMBEN_B0_B1_B2 is not set | ||
284 | CONFIG_C_AMBEN_ALL=y | ||
285 | |||
286 | # | ||
287 | # EBIU_AMBCTL Control | ||
288 | # | ||
289 | CONFIG_BANK_0=0x7BB0 | ||
290 | CONFIG_BANK_1=0x7BB0 | ||
291 | CONFIG_BANK_2=0x7BB0 | ||
292 | CONFIG_BANK_3=0x99B3 | ||
293 | |||
294 | # | ||
295 | # Bus options (PCI, PCMCIA, EISA, MCA, ISA) | ||
296 | # | ||
297 | # CONFIG_PCI is not set | ||
298 | |||
299 | # | ||
300 | # PCCARD (PCMCIA/CardBus) support | ||
301 | # | ||
302 | # CONFIG_PCCARD is not set | ||
303 | |||
304 | # | ||
305 | # PCI Hotplug Support | ||
306 | # | ||
307 | |||
308 | # | ||
309 | # Executable file formats | ||
310 | # | ||
311 | CONFIG_BINFMT_ELF_FDPIC=y | ||
312 | CONFIG_BINFMT_FLAT=y | ||
313 | CONFIG_BINFMT_ZFLAT=y | ||
314 | # CONFIG_BINFMT_SHARED_FLAT is not set | ||
315 | # CONFIG_BINFMT_MISC is not set | ||
316 | |||
317 | # | ||
318 | # Power management options | ||
319 | # | ||
320 | CONFIG_PM=y | ||
321 | CONFIG_PM_LEGACY=y | ||
322 | # CONFIG_PM_DEBUG is not set | ||
323 | # CONFIG_PM_SYSFS_DEPRECATED is not set | ||
324 | CONFIG_PM_WAKEUP_GPIO_BY_SIC_IWR=y | ||
325 | # CONFIG_PM_WAKEUP_BY_GPIO is not set | ||
326 | # CONFIG_PM_WAKEUP_GPIO_API is not set | ||
327 | CONFIG_PM_WAKEUP_SIC_IWR=0x100000 | ||
328 | |||
329 | # | ||
330 | # CPU Frequency scaling | ||
331 | # | ||
332 | # CONFIG_CPU_FREQ is not set | ||
333 | |||
334 | # | ||
335 | # Networking | ||
336 | # | ||
337 | CONFIG_NET=y | ||
338 | |||
339 | # | ||
340 | # Networking options | ||
341 | # | ||
342 | # CONFIG_NETDEBUG is not set | ||
343 | CONFIG_PACKET=y | ||
344 | # CONFIG_PACKET_MMAP is not set | ||
345 | CONFIG_UNIX=y | ||
346 | CONFIG_XFRM=y | ||
347 | # CONFIG_XFRM_USER is not set | ||
348 | # CONFIG_XFRM_SUB_POLICY is not set | ||
349 | # CONFIG_NET_KEY is not set | ||
350 | CONFIG_INET=y | ||
351 | # CONFIG_IP_MULTICAST is not set | ||
352 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
353 | CONFIG_IP_FIB_HASH=y | ||
354 | CONFIG_IP_PNP=y | ||
355 | # CONFIG_IP_PNP_DHCP is not set | ||
356 | # CONFIG_IP_PNP_BOOTP is not set | ||
357 | # CONFIG_IP_PNP_RARP is not set | ||
358 | # CONFIG_NET_IPIP is not set | ||
359 | # CONFIG_NET_IPGRE is not set | ||
360 | # CONFIG_ARPD is not set | ||
361 | CONFIG_SYN_COOKIES=y | ||
362 | # CONFIG_INET_AH is not set | ||
363 | # CONFIG_INET_ESP is not set | ||
364 | # CONFIG_INET_IPCOMP is not set | ||
365 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
366 | # CONFIG_INET_TUNNEL is not set | ||
367 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
368 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
369 | CONFIG_INET_XFRM_MODE_BEET=y | ||
370 | CONFIG_INET_DIAG=y | ||
371 | CONFIG_INET_TCP_DIAG=y | ||
372 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
373 | CONFIG_TCP_CONG_CUBIC=y | ||
374 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
375 | # CONFIG_TCP_MD5SIG is not set | ||
376 | # CONFIG_IPV6 is not set | ||
377 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
378 | # CONFIG_INET6_TUNNEL is not set | ||
379 | # CONFIG_NETLABEL is not set | ||
380 | # CONFIG_NETWORK_SECMARK is not set | ||
381 | # CONFIG_NETFILTER is not set | ||
382 | |||
383 | # | ||
384 | # DCCP Configuration (EXPERIMENTAL) | ||
385 | # | ||
386 | # CONFIG_IP_DCCP is not set | ||
387 | |||
388 | # | ||
389 | # SCTP Configuration (EXPERIMENTAL) | ||
390 | # | ||
391 | # CONFIG_IP_SCTP is not set | ||
392 | |||
393 | # | ||
394 | # TIPC Configuration (EXPERIMENTAL) | ||
395 | # | ||
396 | # CONFIG_TIPC is not set | ||
397 | # CONFIG_ATM is not set | ||
398 | # CONFIG_BRIDGE is not set | ||
399 | # CONFIG_VLAN_8021Q is not set | ||
400 | # CONFIG_DECNET is not set | ||
401 | # CONFIG_LLC2 is not set | ||
402 | # CONFIG_IPX is not set | ||
403 | # CONFIG_ATALK is not set | ||
404 | # CONFIG_X25 is not set | ||
405 | # CONFIG_LAPB is not set | ||
406 | # CONFIG_ECONET is not set | ||
407 | # CONFIG_WAN_ROUTER is not set | ||
408 | |||
409 | # | ||
410 | # QoS and/or fair queueing | ||
411 | # | ||
412 | # CONFIG_NET_SCHED is not set | ||
413 | |||
414 | # | ||
415 | # Network testing | ||
416 | # | ||
417 | # CONFIG_NET_PKTGEN is not set | ||
418 | # CONFIG_HAMRADIO is not set | ||
419 | CONFIG_IRDA=m | ||
420 | |||
421 | # | ||
422 | # IrDA protocols | ||
423 | # | ||
424 | CONFIG_IRLAN=m | ||
425 | CONFIG_IRCOMM=m | ||
426 | # CONFIG_IRDA_ULTRA is not set | ||
427 | |||
428 | # | ||
429 | # IrDA options | ||
430 | # | ||
431 | CONFIG_IRDA_CACHE_LAST_LSAP=y | ||
432 | # CONFIG_IRDA_FAST_RR is not set | ||
433 | # CONFIG_IRDA_DEBUG is not set | ||
434 | |||
435 | # | ||
436 | # Infrared-port device drivers | ||
437 | # | ||
438 | |||
439 | # | ||
440 | # SIR device drivers | ||
441 | # | ||
442 | CONFIG_IRTTY_SIR=m | ||
443 | |||
444 | # | ||
445 | # Dongle support | ||
446 | # | ||
447 | # CONFIG_DONGLE is not set | ||
448 | |||
449 | # | ||
450 | # Old SIR device drivers | ||
451 | # | ||
452 | # CONFIG_IRPORT_SIR is not set | ||
453 | |||
454 | # | ||
455 | # Old Serial dongle support | ||
456 | # | ||
457 | |||
458 | # | ||
459 | # FIR device drivers | ||
460 | # | ||
461 | # CONFIG_BT is not set | ||
462 | # CONFIG_IEEE80211 is not set | ||
463 | |||
464 | # | ||
465 | # Device Drivers | ||
466 | # | ||
467 | |||
468 | # | ||
469 | # Generic Driver Options | ||
470 | # | ||
471 | CONFIG_STANDALONE=y | ||
472 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
473 | # CONFIG_FW_LOADER is not set | ||
474 | # CONFIG_SYS_HYPERVISOR is not set | ||
475 | |||
476 | # | ||
477 | # Connector - unified userspace <-> kernelspace linker | ||
478 | # | ||
479 | # CONFIG_CONNECTOR is not set | ||
480 | |||
481 | # | ||
482 | # Memory Technology Devices (MTD) | ||
483 | # | ||
484 | CONFIG_MTD=y | ||
485 | # CONFIG_MTD_DEBUG is not set | ||
486 | # CONFIG_MTD_CONCAT is not set | ||
487 | CONFIG_MTD_PARTITIONS=y | ||
488 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
489 | # CONFIG_MTD_CMDLINE_PARTS is not set | ||
490 | |||
491 | # | ||
492 | # User Modules And Translation Layers | ||
493 | # | ||
494 | CONFIG_MTD_CHAR=m | ||
495 | CONFIG_MTD_BLKDEVS=y | ||
496 | CONFIG_MTD_BLOCK=y | ||
497 | # CONFIG_FTL is not set | ||
498 | # CONFIG_NFTL is not set | ||
499 | # CONFIG_INFTL is not set | ||
500 | # CONFIG_RFD_FTL is not set | ||
501 | # CONFIG_SSFDC is not set | ||
502 | |||
503 | # | ||
504 | # RAM/ROM/Flash chip drivers | ||
505 | # | ||
506 | # CONFIG_MTD_CFI is not set | ||
507 | CONFIG_MTD_JEDECPROBE=m | ||
508 | CONFIG_MTD_GEN_PROBE=m | ||
509 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
510 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
511 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
512 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
513 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
514 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
515 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
516 | CONFIG_MTD_CFI_I1=y | ||
517 | CONFIG_MTD_CFI_I2=y | ||
518 | # CONFIG_MTD_CFI_I4 is not set | ||
519 | # CONFIG_MTD_CFI_I8 is not set | ||
520 | # CONFIG_MTD_CFI_INTELEXT is not set | ||
521 | # CONFIG_MTD_CFI_AMDSTD is not set | ||
522 | # CONFIG_MTD_CFI_STAA is not set | ||
523 | CONFIG_MTD_MW320D=m | ||
524 | CONFIG_MTD_RAM=y | ||
525 | CONFIG_MTD_ROM=m | ||
526 | # CONFIG_MTD_ABSENT is not set | ||
527 | # CONFIG_MTD_OBSOLETE_CHIPS is not set | ||
528 | |||
529 | # | ||
530 | # Mapping drivers for chip access | ||
531 | # | ||
532 | CONFIG_MTD_COMPLEX_MAPPINGS=y | ||
533 | # CONFIG_MTD_PHYSMAP is not set | ||
534 | CONFIG_MTD_BF5xx=m | ||
535 | CONFIG_BFIN_FLASH_SIZE=0x400000 | ||
536 | CONFIG_EBIU_FLASH_BASE=0x20000000 | ||
537 | |||
538 | # | ||
539 | # FLASH_EBIU_AMBCTL Control | ||
540 | # | ||
541 | CONFIG_BFIN_FLASH_BANK_0=0x7BB0 | ||
542 | CONFIG_BFIN_FLASH_BANK_1=0x7BB0 | ||
543 | CONFIG_BFIN_FLASH_BANK_2=0x7BB0 | ||
544 | CONFIG_BFIN_FLASH_BANK_3=0x7BB0 | ||
545 | # CONFIG_MTD_UCLINUX is not set | ||
546 | # CONFIG_MTD_PLATRAM is not set | ||
547 | |||
548 | # | ||
549 | # Self-contained MTD device drivers | ||
550 | # | ||
551 | # CONFIG_MTD_DATAFLASH is not set | ||
552 | # CONFIG_MTD_M25P80 is not set | ||
553 | # CONFIG_MTD_SLRAM is not set | ||
554 | # CONFIG_MTD_PHRAM is not set | ||
555 | # CONFIG_MTD_MTDRAM is not set | ||
556 | # CONFIG_MTD_BLOCK2MTD is not set | ||
557 | |||
558 | # | ||
559 | # Disk-On-Chip Device Drivers | ||
560 | # | ||
561 | # CONFIG_MTD_DOC2000 is not set | ||
562 | # CONFIG_MTD_DOC2001 is not set | ||
563 | # CONFIG_MTD_DOC2001PLUS is not set | ||
564 | |||
565 | # | ||
566 | # NAND Flash Device Drivers | ||
567 | # | ||
568 | # CONFIG_MTD_NAND is not set | ||
569 | |||
570 | # | ||
571 | # OneNAND Flash Device Drivers | ||
572 | # | ||
573 | # CONFIG_MTD_ONENAND is not set | ||
574 | |||
575 | # | ||
576 | # Parallel port support | ||
577 | # | ||
578 | # CONFIG_PARPORT is not set | ||
579 | |||
580 | # | ||
581 | # Plug and Play support | ||
582 | # | ||
583 | |||
584 | # | ||
585 | # Block devices | ||
586 | # | ||
587 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
588 | # CONFIG_BLK_DEV_LOOP is not set | ||
589 | # CONFIG_BLK_DEV_NBD is not set | ||
590 | CONFIG_BLK_DEV_RAM=y | ||
591 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
592 | CONFIG_BLK_DEV_RAM_SIZE=4096 | ||
593 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
594 | # CONFIG_BLK_DEV_INITRD is not set | ||
595 | # CONFIG_CDROM_PKTCDVD is not set | ||
596 | # CONFIG_ATA_OVER_ETH is not set | ||
597 | |||
598 | # | ||
599 | # Misc devices | ||
600 | # | ||
601 | # CONFIG_TIFM_CORE is not set | ||
602 | |||
603 | # | ||
604 | # ATA/ATAPI/MFM/RLL support | ||
605 | # | ||
606 | # CONFIG_IDE is not set | ||
607 | |||
608 | # | ||
609 | # SCSI device support | ||
610 | # | ||
611 | # CONFIG_RAID_ATTRS is not set | ||
612 | # CONFIG_SCSI is not set | ||
613 | # CONFIG_SCSI_NETLINK is not set | ||
614 | |||
615 | # | ||
616 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | ||
617 | # | ||
618 | # CONFIG_ATA is not set | ||
619 | |||
620 | # | ||
621 | # Multi-device support (RAID and LVM) | ||
622 | # | ||
623 | # CONFIG_MD is not set | ||
624 | |||
625 | # | ||
626 | # Fusion MPT device support | ||
627 | # | ||
628 | # CONFIG_FUSION is not set | ||
629 | |||
630 | # | ||
631 | # IEEE 1394 (FireWire) support | ||
632 | # | ||
633 | |||
634 | # | ||
635 | # I2O device support | ||
636 | # | ||
637 | |||
638 | # | ||
639 | # Network device support | ||
640 | # | ||
641 | CONFIG_NETDEVICES=y | ||
642 | # CONFIG_DUMMY is not set | ||
643 | # CONFIG_BONDING is not set | ||
644 | # CONFIG_EQUALIZER is not set | ||
645 | # CONFIG_TUN is not set | ||
646 | |||
647 | # | ||
648 | # PHY device support | ||
649 | # | ||
650 | # CONFIG_PHYLIB is not set | ||
651 | |||
652 | # | ||
653 | # Ethernet (10 or 100Mbit) | ||
654 | # | ||
655 | CONFIG_NET_ETHERNET=y | ||
656 | CONFIG_MII=y | ||
657 | CONFIG_SMC91X=y | ||
658 | |||
659 | # | ||
660 | # Ethernet (1000 Mbit) | ||
661 | # | ||
662 | |||
663 | # | ||
664 | # Ethernet (10000 Mbit) | ||
665 | # | ||
666 | |||
667 | # | ||
668 | # Token Ring devices | ||
669 | # | ||
670 | |||
671 | # | ||
672 | # Wireless LAN (non-hamradio) | ||
673 | # | ||
674 | # CONFIG_NET_RADIO is not set | ||
675 | |||
676 | # | ||
677 | # Wan interfaces | ||
678 | # | ||
679 | # CONFIG_WAN is not set | ||
680 | # CONFIG_PPP is not set | ||
681 | # CONFIG_SLIP is not set | ||
682 | # CONFIG_SHAPER is not set | ||
683 | # CONFIG_NETCONSOLE is not set | ||
684 | # CONFIG_NETPOLL is not set | ||
685 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
686 | |||
687 | # | ||
688 | # ISDN subsystem | ||
689 | # | ||
690 | # CONFIG_ISDN is not set | ||
691 | |||
692 | # | ||
693 | # Telephony Support | ||
694 | # | ||
695 | # CONFIG_PHONE is not set | ||
696 | |||
697 | # | ||
698 | # Input device support | ||
699 | # | ||
700 | CONFIG_INPUT=y | ||
701 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
702 | |||
703 | # | ||
704 | # Userland interfaces | ||
705 | # | ||
706 | # CONFIG_INPUT_MOUSEDEV is not set | ||
707 | # CONFIG_INPUT_JOYDEV is not set | ||
708 | # CONFIG_INPUT_TSDEV is not set | ||
709 | CONFIG_INPUT_EVDEV=m | ||
710 | # CONFIG_INPUT_EVBUG is not set | ||
711 | |||
712 | # | ||
713 | # Input Device Drivers | ||
714 | # | ||
715 | # CONFIG_INPUT_KEYBOARD is not set | ||
716 | # CONFIG_INPUT_MOUSE is not set | ||
717 | # CONFIG_INPUT_JOYSTICK is not set | ||
718 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
719 | CONFIG_INPUT_MISC=y | ||
720 | # CONFIG_INPUT_UINPUT is not set | ||
721 | # CONFIG_BF53X_PFBUTTONS is not set | ||
722 | CONFIG_TWI_KEYPAD=m | ||
723 | CONFIG_BFIN_TWIKEYPAD_IRQ_PFX=39 | ||
724 | |||
725 | # | ||
726 | # Hardware I/O ports | ||
727 | # | ||
728 | # CONFIG_SERIO is not set | ||
729 | # CONFIG_GAMEPORT is not set | ||
730 | |||
731 | # | ||
732 | # Character devices | ||
733 | # | ||
734 | # CONFIG_AD9960 is not set | ||
735 | # CONFIG_SPI_ADC_BF533 is not set | ||
736 | # CONFIG_BF533_PFLAGS is not set | ||
737 | # CONFIG_BF5xx_PPIFCD is not set | ||
738 | # CONFIG_BF5xx_TIMERS is not set | ||
739 | # CONFIG_BF5xx_PPI is not set | ||
740 | CONFIG_BFIN_SPORT=y | ||
741 | # CONFIG_BFIN_TIMER_LATENCY is not set | ||
742 | CONFIG_TWI_LCD=m | ||
743 | CONFIG_TWI_LCD_SLAVE_ADDR=34 | ||
744 | # CONFIG_AD5304 is not set | ||
745 | # CONFIG_VT is not set | ||
746 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
747 | |||
748 | # | ||
749 | # Serial drivers | ||
750 | # | ||
751 | # CONFIG_SERIAL_8250 is not set | ||
752 | |||
753 | # | ||
754 | # Non-8250 serial port support | ||
755 | # | ||
756 | CONFIG_SERIAL_BFIN=y | ||
757 | CONFIG_SERIAL_BFIN_CONSOLE=y | ||
758 | CONFIG_SERIAL_BFIN_DMA=y | ||
759 | # CONFIG_SERIAL_BFIN_PIO is not set | ||
760 | CONFIG_SERIAL_BFIN_UART0=y | ||
761 | # CONFIG_BFIN_UART0_CTSRTS is not set | ||
762 | CONFIG_SERIAL_CORE=y | ||
763 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
764 | # CONFIG_SERIAL_BFIN_SPORT is not set | ||
765 | CONFIG_UNIX98_PTYS=y | ||
766 | # CONFIG_LEGACY_PTYS is not set | ||
767 | |||
768 | # | ||
769 | # CAN, the car bus and industrial fieldbus | ||
770 | # | ||
771 | # CONFIG_CAN4LINUX is not set | ||
772 | |||
773 | # | ||
774 | # IPMI | ||
775 | # | ||
776 | # CONFIG_IPMI_HANDLER is not set | ||
777 | |||
778 | # | ||
779 | # Watchdog Cards | ||
780 | # | ||
781 | # CONFIG_WATCHDOG is not set | ||
782 | CONFIG_HW_RANDOM=y | ||
783 | # CONFIG_GEN_RTC is not set | ||
784 | CONFIG_BLACKFIN_DPMC=y | ||
785 | # CONFIG_DTLK is not set | ||
786 | # CONFIG_R3964 is not set | ||
787 | # CONFIG_RAW_DRIVER is not set | ||
788 | |||
789 | # | ||
790 | # TPM devices | ||
791 | # | ||
792 | # CONFIG_TCG_TPM is not set | ||
793 | |||
794 | # | ||
795 | # I2C support | ||
796 | # | ||
797 | CONFIG_I2C=m | ||
798 | CONFIG_I2C_CHARDEV=m | ||
799 | |||
800 | # | ||
801 | # I2C Algorithms | ||
802 | # | ||
803 | CONFIG_I2C_ALGOBIT=m | ||
804 | # CONFIG_I2C_ALGOPCF is not set | ||
805 | # CONFIG_I2C_ALGOPCA is not set | ||
806 | |||
807 | # | ||
808 | # I2C Hardware Bus support | ||
809 | # | ||
810 | # CONFIG_I2C_BLACKFIN_GPIO is not set | ||
811 | # CONFIG_I2C_OCORES is not set | ||
812 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
813 | # CONFIG_I2C_STUB is not set | ||
814 | # CONFIG_I2C_PCA_ISA is not set | ||
815 | |||
816 | # | ||
817 | # Miscellaneous I2C Chip support | ||
818 | # | ||
819 | # CONFIG_SENSORS_DS1337 is not set | ||
820 | # CONFIG_SENSORS_DS1374 is not set | ||
821 | # CONFIG_SENSORS_AD5252 is not set | ||
822 | # CONFIG_SENSORS_EEPROM is not set | ||
823 | # CONFIG_SENSORS_PCF8574 is not set | ||
824 | # CONFIG_SENSORS_PCF8575 is not set | ||
825 | # CONFIG_SENSORS_PCA9543 is not set | ||
826 | # CONFIG_SENSORS_PCA9539 is not set | ||
827 | # CONFIG_SENSORS_PCF8591 is not set | ||
828 | # CONFIG_SENSORS_MAX6875 is not set | ||
829 | # CONFIG_I2C_DEBUG_CORE is not set | ||
830 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
831 | # CONFIG_I2C_DEBUG_BUS is not set | ||
832 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
833 | |||
834 | # | ||
835 | # SPI support | ||
836 | # | ||
837 | CONFIG_SPI=y | ||
838 | CONFIG_SPI_MASTER=y | ||
839 | |||
840 | # | ||
841 | # SPI Master Controller Drivers | ||
842 | # | ||
843 | # CONFIG_SPI_BITBANG is not set | ||
844 | |||
845 | # | ||
846 | # SPI Protocol Masters | ||
847 | # | ||
848 | CONFIG_SPI_BFIN=y | ||
849 | |||
850 | # | ||
851 | # Dallas's 1-wire bus | ||
852 | # | ||
853 | # CONFIG_W1 is not set | ||
854 | |||
855 | # | ||
856 | # Hardware Monitoring support | ||
857 | # | ||
858 | CONFIG_HWMON=y | ||
859 | # CONFIG_HWMON_VID is not set | ||
860 | # CONFIG_SENSORS_ABITUGURU is not set | ||
861 | # CONFIG_SENSORS_ADM1021 is not set | ||
862 | # CONFIG_SENSORS_ADM1025 is not set | ||
863 | # CONFIG_SENSORS_ADM1026 is not set | ||
864 | # CONFIG_SENSORS_ADM1031 is not set | ||
865 | # CONFIG_SENSORS_ADM9240 is not set | ||
866 | # CONFIG_SENSORS_ASB100 is not set | ||
867 | # CONFIG_SENSORS_ATXP1 is not set | ||
868 | # CONFIG_SENSORS_DS1621 is not set | ||
869 | # CONFIG_SENSORS_F71805F is not set | ||
870 | # CONFIG_SENSORS_FSCHER is not set | ||
871 | # CONFIG_SENSORS_FSCPOS is not set | ||
872 | # CONFIG_SENSORS_GL518SM is not set | ||
873 | # CONFIG_SENSORS_GL520SM is not set | ||
874 | # CONFIG_SENSORS_IT87 is not set | ||
875 | # CONFIG_SENSORS_LM63 is not set | ||
876 | # CONFIG_SENSORS_LM70 is not set | ||
877 | # CONFIG_SENSORS_LM75 is not set | ||
878 | # CONFIG_SENSORS_LM77 is not set | ||
879 | # CONFIG_SENSORS_LM78 is not set | ||
880 | # CONFIG_SENSORS_LM80 is not set | ||
881 | # CONFIG_SENSORS_LM83 is not set | ||
882 | # CONFIG_SENSORS_LM85 is not set | ||
883 | # CONFIG_SENSORS_LM87 is not set | ||
884 | # CONFIG_SENSORS_LM90 is not set | ||
885 | # CONFIG_SENSORS_LM92 is not set | ||
886 | # CONFIG_SENSORS_MAX1619 is not set | ||
887 | # CONFIG_SENSORS_PC87360 is not set | ||
888 | # CONFIG_SENSORS_PC87427 is not set | ||
889 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
890 | # CONFIG_SENSORS_SMSC47M192 is not set | ||
891 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
892 | # CONFIG_SENSORS_VT1211 is not set | ||
893 | # CONFIG_SENSORS_W83781D is not set | ||
894 | # CONFIG_SENSORS_W83791D is not set | ||
895 | # CONFIG_SENSORS_W83792D is not set | ||
896 | # CONFIG_SENSORS_W83793 is not set | ||
897 | # CONFIG_SENSORS_W83L785TS is not set | ||
898 | # CONFIG_SENSORS_W83627HF is not set | ||
899 | # CONFIG_SENSORS_W83627EHF is not set | ||
900 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
901 | |||
902 | # | ||
903 | # Multimedia devices | ||
904 | # | ||
905 | # CONFIG_VIDEO_DEV is not set | ||
906 | |||
907 | # | ||
908 | # Digital Video Broadcasting Devices | ||
909 | # | ||
910 | # CONFIG_DVB is not set | ||
911 | |||
912 | # | ||
913 | # Graphics support | ||
914 | # | ||
915 | CONFIG_FIRMWARE_EDID=y | ||
916 | CONFIG_FB=m | ||
917 | CONFIG_FB_CFB_FILLRECT=m | ||
918 | CONFIG_FB_CFB_COPYAREA=m | ||
919 | CONFIG_FB_CFB_IMAGEBLIT=m | ||
920 | # CONFIG_FB_MACMODES is not set | ||
921 | # CONFIG_FB_BACKLIGHT is not set | ||
922 | # CONFIG_FB_MODE_HELPERS is not set | ||
923 | # CONFIG_FB_TILEBLITTING is not set | ||
924 | CONFIG_FB_BFIN_7171=m | ||
925 | CONFIG_FB_BFIN_7393=m | ||
926 | CONFIG_NTSC=y | ||
927 | # CONFIG_PAL is not set | ||
928 | # CONFIG_NTSC_640x480 is not set | ||
929 | # CONFIG_PAL_640x480 is not set | ||
930 | # CONFIG_NTSC_YCBCR is not set | ||
931 | # CONFIG_PAL_YCBCR is not set | ||
932 | CONFIG_ADV7393_1XMEM=y | ||
933 | # CONFIG_ADV7393_2XMEM is not set | ||
934 | # CONFIG_FB_S1D13XXX is not set | ||
935 | # CONFIG_FB_VIRTUAL is not set | ||
936 | |||
937 | # | ||
938 | # Logo configuration | ||
939 | # | ||
940 | # CONFIG_LOGO is not set | ||
941 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
942 | |||
943 | # | ||
944 | # Sound | ||
945 | # | ||
946 | CONFIG_SOUND=m | ||
947 | |||
948 | # | ||
949 | # Advanced Linux Sound Architecture | ||
950 | # | ||
951 | CONFIG_SND=m | ||
952 | CONFIG_SND_TIMER=m | ||
953 | CONFIG_SND_PCM=m | ||
954 | # CONFIG_SND_SEQUENCER is not set | ||
955 | CONFIG_SND_OSSEMUL=y | ||
956 | CONFIG_SND_MIXER_OSS=m | ||
957 | CONFIG_SND_PCM_OSS=m | ||
958 | CONFIG_SND_PCM_OSS_PLUGINS=y | ||
959 | # CONFIG_SND_DYNAMIC_MINORS is not set | ||
960 | CONFIG_SND_SUPPORT_OLD_API=y | ||
961 | CONFIG_SND_VERBOSE_PROCFS=y | ||
962 | # CONFIG_SND_VERBOSE_PRINTK is not set | ||
963 | # CONFIG_SND_DEBUG is not set | ||
964 | |||
965 | # | ||
966 | # Generic devices | ||
967 | # | ||
968 | # CONFIG_SND_DUMMY is not set | ||
969 | # CONFIG_SND_MTPAV is not set | ||
970 | # CONFIG_SND_SERIAL_U16550 is not set | ||
971 | # CONFIG_SND_MPU401 is not set | ||
972 | |||
973 | # | ||
974 | # Open Sound System | ||
975 | # | ||
976 | # CONFIG_SOUND_PRIME is not set | ||
977 | |||
978 | # | ||
979 | # HID Devices | ||
980 | # | ||
981 | CONFIG_HID=y | ||
982 | |||
983 | # | ||
984 | # USB support | ||
985 | # | ||
986 | CONFIG_USB_ARCH_HAS_HCD=y | ||
987 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
988 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
989 | # CONFIG_USB is not set | ||
990 | |||
991 | # | ||
992 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
993 | # | ||
994 | |||
995 | # | ||
996 | # USB Gadget Support | ||
997 | # | ||
998 | # CONFIG_USB_GADGET is not set | ||
999 | |||
1000 | # | ||
1001 | # MMC/SD Card support | ||
1002 | # | ||
1003 | # CONFIG_SPI_MMC is not set | ||
1004 | # CONFIG_MMC is not set | ||
1005 | |||
1006 | # | ||
1007 | # LED devices | ||
1008 | # | ||
1009 | # CONFIG_NEW_LEDS is not set | ||
1010 | |||
1011 | # | ||
1012 | # LED drivers | ||
1013 | # | ||
1014 | |||
1015 | # | ||
1016 | # LED Triggers | ||
1017 | # | ||
1018 | |||
1019 | # | ||
1020 | # InfiniBand support | ||
1021 | # | ||
1022 | |||
1023 | # | ||
1024 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) | ||
1025 | # | ||
1026 | |||
1027 | # | ||
1028 | # Real Time Clock | ||
1029 | # | ||
1030 | CONFIG_RTC_LIB=y | ||
1031 | CONFIG_RTC_CLASS=y | ||
1032 | CONFIG_RTC_HCTOSYS=y | ||
1033 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
1034 | # CONFIG_RTC_DEBUG is not set | ||
1035 | |||
1036 | # | ||
1037 | # RTC interfaces | ||
1038 | # | ||
1039 | CONFIG_RTC_INTF_SYSFS=y | ||
1040 | CONFIG_RTC_INTF_PROC=y | ||
1041 | CONFIG_RTC_INTF_DEV=y | ||
1042 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
1043 | |||
1044 | # | ||
1045 | # RTC drivers | ||
1046 | # | ||
1047 | # CONFIG_RTC_DRV_X1205 is not set | ||
1048 | # CONFIG_RTC_DRV_DS1307 is not set | ||
1049 | # CONFIG_RTC_DRV_DS1553 is not set | ||
1050 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
1051 | # CONFIG_RTC_DRV_DS1672 is not set | ||
1052 | # CONFIG_RTC_DRV_DS1742 is not set | ||
1053 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
1054 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
1055 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
1056 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
1057 | # CONFIG_RTC_DRV_M48T86 is not set | ||
1058 | # CONFIG_RTC_DRV_TEST is not set | ||
1059 | # CONFIG_RTC_DRV_MAX6902 is not set | ||
1060 | # CONFIG_RTC_DRV_V3020 is not set | ||
1061 | CONFIG_RTC_DRV_BFIN=y | ||
1062 | |||
1063 | # | ||
1064 | # DMA Engine support | ||
1065 | # | ||
1066 | # CONFIG_DMA_ENGINE is not set | ||
1067 | |||
1068 | # | ||
1069 | # DMA Clients | ||
1070 | # | ||
1071 | |||
1072 | # | ||
1073 | # DMA Devices | ||
1074 | # | ||
1075 | |||
1076 | # | ||
1077 | # Virtualization | ||
1078 | # | ||
1079 | |||
1080 | # | ||
1081 | # PBX support | ||
1082 | # | ||
1083 | # CONFIG_PBX is not set | ||
1084 | |||
1085 | # | ||
1086 | # File systems | ||
1087 | # | ||
1088 | CONFIG_EXT2_FS=y | ||
1089 | CONFIG_EXT2_FS_XATTR=y | ||
1090 | # CONFIG_EXT2_FS_POSIX_ACL is not set | ||
1091 | # CONFIG_EXT2_FS_SECURITY is not set | ||
1092 | # CONFIG_EXT3_FS is not set | ||
1093 | # CONFIG_EXT4DEV_FS is not set | ||
1094 | CONFIG_FS_MBCACHE=y | ||
1095 | # CONFIG_REISERFS_FS is not set | ||
1096 | # CONFIG_JFS_FS is not set | ||
1097 | # CONFIG_FS_POSIX_ACL is not set | ||
1098 | # CONFIG_XFS_FS is not set | ||
1099 | # CONFIG_GFS2_FS is not set | ||
1100 | # CONFIG_OCFS2_FS is not set | ||
1101 | # CONFIG_MINIX_FS is not set | ||
1102 | # CONFIG_ROMFS_FS is not set | ||
1103 | CONFIG_INOTIFY=y | ||
1104 | CONFIG_INOTIFY_USER=y | ||
1105 | # CONFIG_QUOTA is not set | ||
1106 | CONFIG_DNOTIFY=y | ||
1107 | # CONFIG_AUTOFS_FS is not set | ||
1108 | # CONFIG_AUTOFS4_FS is not set | ||
1109 | # CONFIG_FUSE_FS is not set | ||
1110 | |||
1111 | # | ||
1112 | # CD-ROM/DVD Filesystems | ||
1113 | # | ||
1114 | # CONFIG_ISO9660_FS is not set | ||
1115 | # CONFIG_UDF_FS is not set | ||
1116 | |||
1117 | # | ||
1118 | # DOS/FAT/NT Filesystems | ||
1119 | # | ||
1120 | # CONFIG_MSDOS_FS is not set | ||
1121 | # CONFIG_VFAT_FS is not set | ||
1122 | # CONFIG_NTFS_FS is not set | ||
1123 | |||
1124 | # | ||
1125 | # Pseudo filesystems | ||
1126 | # | ||
1127 | CONFIG_PROC_FS=y | ||
1128 | CONFIG_PROC_SYSCTL=y | ||
1129 | CONFIG_SYSFS=y | ||
1130 | # CONFIG_TMPFS is not set | ||
1131 | # CONFIG_HUGETLB_PAGE is not set | ||
1132 | CONFIG_RAMFS=y | ||
1133 | # CONFIG_CONFIGFS_FS is not set | ||
1134 | |||
1135 | # | ||
1136 | # Miscellaneous filesystems | ||
1137 | # | ||
1138 | # CONFIG_ADFS_FS is not set | ||
1139 | # CONFIG_AFFS_FS is not set | ||
1140 | # CONFIG_HFS_FS is not set | ||
1141 | # CONFIG_HFSPLUS_FS is not set | ||
1142 | # CONFIG_BEFS_FS is not set | ||
1143 | # CONFIG_BFS_FS is not set | ||
1144 | # CONFIG_EFS_FS is not set | ||
1145 | CONFIG_YAFFS_FS=m | ||
1146 | CONFIG_YAFFS_YAFFS1=y | ||
1147 | # CONFIG_YAFFS_DOES_ECC is not set | ||
1148 | CONFIG_YAFFS_YAFFS2=y | ||
1149 | CONFIG_YAFFS_AUTO_YAFFS2=y | ||
1150 | # CONFIG_YAFFS_DISABLE_LAZY_LOAD is not set | ||
1151 | CONFIG_YAFFS_CHECKPOINT_RESERVED_BLOCKS=10 | ||
1152 | # CONFIG_YAFFS_DISABLE_WIDE_TNODES is not set | ||
1153 | # CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED is not set | ||
1154 | CONFIG_YAFFS_SHORT_NAMES_IN_RAM=y | ||
1155 | CONFIG_JFFS2_FS=m | ||
1156 | CONFIG_JFFS2_FS_DEBUG=0 | ||
1157 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
1158 | # CONFIG_JFFS2_SUMMARY is not set | ||
1159 | # CONFIG_JFFS2_FS_XATTR is not set | ||
1160 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
1161 | CONFIG_JFFS2_ZLIB=y | ||
1162 | CONFIG_JFFS2_RTIME=y | ||
1163 | # CONFIG_JFFS2_RUBIN is not set | ||
1164 | # CONFIG_CRAMFS is not set | ||
1165 | # CONFIG_VXFS_FS is not set | ||
1166 | # CONFIG_HPFS_FS is not set | ||
1167 | # CONFIG_QNX4FS_FS is not set | ||
1168 | # CONFIG_SYSV_FS is not set | ||
1169 | # CONFIG_UFS_FS is not set | ||
1170 | |||
1171 | # | ||
1172 | # Network File Systems | ||
1173 | # | ||
1174 | CONFIG_NFS_FS=m | ||
1175 | CONFIG_NFS_V3=y | ||
1176 | # CONFIG_NFS_V3_ACL is not set | ||
1177 | # CONFIG_NFS_V4 is not set | ||
1178 | # CONFIG_NFS_DIRECTIO is not set | ||
1179 | # CONFIG_NFSD is not set | ||
1180 | CONFIG_LOCKD=m | ||
1181 | CONFIG_LOCKD_V4=y | ||
1182 | CONFIG_NFS_COMMON=y | ||
1183 | CONFIG_SUNRPC=m | ||
1184 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
1185 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
1186 | CONFIG_SMB_FS=m | ||
1187 | # CONFIG_SMB_NLS_DEFAULT is not set | ||
1188 | # CONFIG_CIFS is not set | ||
1189 | # CONFIG_NCP_FS is not set | ||
1190 | # CONFIG_CODA_FS is not set | ||
1191 | # CONFIG_AFS_FS is not set | ||
1192 | # CONFIG_9P_FS is not set | ||
1193 | |||
1194 | # | ||
1195 | # Partition Types | ||
1196 | # | ||
1197 | # CONFIG_PARTITION_ADVANCED is not set | ||
1198 | CONFIG_MSDOS_PARTITION=y | ||
1199 | |||
1200 | # | ||
1201 | # Native Language Support | ||
1202 | # | ||
1203 | CONFIG_NLS=m | ||
1204 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
1205 | # CONFIG_NLS_CODEPAGE_437 is not set | ||
1206 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
1207 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
1208 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
1209 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
1210 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
1211 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
1212 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
1213 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
1214 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
1215 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
1216 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
1217 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
1218 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
1219 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
1220 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
1221 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
1222 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
1223 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
1224 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
1225 | # CONFIG_NLS_ISO8859_8 is not set | ||
1226 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
1227 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
1228 | # CONFIG_NLS_ASCII is not set | ||
1229 | # CONFIG_NLS_ISO8859_1 is not set | ||
1230 | # CONFIG_NLS_ISO8859_2 is not set | ||
1231 | # CONFIG_NLS_ISO8859_3 is not set | ||
1232 | # CONFIG_NLS_ISO8859_4 is not set | ||
1233 | # CONFIG_NLS_ISO8859_5 is not set | ||
1234 | # CONFIG_NLS_ISO8859_6 is not set | ||
1235 | # CONFIG_NLS_ISO8859_7 is not set | ||
1236 | # CONFIG_NLS_ISO8859_9 is not set | ||
1237 | # CONFIG_NLS_ISO8859_13 is not set | ||
1238 | # CONFIG_NLS_ISO8859_14 is not set | ||
1239 | # CONFIG_NLS_ISO8859_15 is not set | ||
1240 | # CONFIG_NLS_KOI8_R is not set | ||
1241 | # CONFIG_NLS_KOI8_U is not set | ||
1242 | # CONFIG_NLS_UTF8 is not set | ||
1243 | |||
1244 | # | ||
1245 | # Distributed Lock Manager | ||
1246 | # | ||
1247 | # CONFIG_DLM is not set | ||
1248 | |||
1249 | # | ||
1250 | # Profiling support | ||
1251 | # | ||
1252 | # CONFIG_PROFILING is not set | ||
1253 | |||
1254 | # | ||
1255 | # Kernel hacking | ||
1256 | # | ||
1257 | # CONFIG_PRINTK_TIME is not set | ||
1258 | CONFIG_ENABLE_MUST_CHECK=y | ||
1259 | # CONFIG_MAGIC_SYSRQ is not set | ||
1260 | # CONFIG_UNUSED_SYMBOLS is not set | ||
1261 | # CONFIG_DEBUG_FS is not set | ||
1262 | # CONFIG_HEADERS_CHECK is not set | ||
1263 | # CONFIG_DEBUG_KERNEL is not set | ||
1264 | CONFIG_LOG_BUF_SHIFT=14 | ||
1265 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
1266 | # CONFIG_DEBUG_SERIAL_EARLY_INIT is not set | ||
1267 | CONFIG_DEBUG_HUNT_FOR_ZERO=y | ||
1268 | # CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE is not set | ||
1269 | CONFIG_CPLB_INFO=y | ||
1270 | CONFIG_ACCESS_CHECK=y | ||
1271 | |||
1272 | # | ||
1273 | # Security options | ||
1274 | # | ||
1275 | # CONFIG_KEYS is not set | ||
1276 | CONFIG_SECURITY=y | ||
1277 | # CONFIG_SECURITY_NETWORK is not set | ||
1278 | CONFIG_SECURITY_CAPABILITIES=y | ||
1279 | |||
1280 | # | ||
1281 | # Cryptographic options | ||
1282 | # | ||
1283 | # CONFIG_CRYPTO is not set | ||
1284 | |||
1285 | # | ||
1286 | # Library routines | ||
1287 | # | ||
1288 | CONFIG_BITREVERSE=y | ||
1289 | CONFIG_CRC_CCITT=m | ||
1290 | # CONFIG_CRC16 is not set | ||
1291 | CONFIG_CRC32=y | ||
1292 | # CONFIG_LIBCRC32C is not set | ||
1293 | CONFIG_ZLIB_INFLATE=y | ||
1294 | CONFIG_ZLIB_DEFLATE=m | ||
1295 | CONFIG_PLIST=y | ||
1296 | CONFIG_IOMAP_COPY=y | ||
diff --git a/arch/blackfin/configs/BF537-STAMP_defconfig b/arch/blackfin/configs/BF537-STAMP_defconfig new file mode 100644 index 000000000000..8ed67dc450fd --- /dev/null +++ b/arch/blackfin/configs/BF537-STAMP_defconfig | |||
@@ -0,0 +1,1332 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.20.4 | ||
4 | # | ||
5 | # CONFIG_MMU is not set | ||
6 | # CONFIG_FPU is not set | ||
7 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
8 | # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set | ||
9 | CONFIG_BLACKFIN=y | ||
10 | CONFIG_BFIN=y | ||
11 | CONFIG_SEMAPHORE_SLEEPERS=y | ||
12 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
13 | CONFIG_GENERIC_HWEIGHT=y | ||
14 | CONFIG_GENERIC_HARDIRQS=y | ||
15 | CONFIG_GENERIC_IRQ_PROBE=y | ||
16 | # CONFIG_GENERIC_TIME is not set | ||
17 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
18 | CONFIG_FORCE_MAX_ZONEORDER=14 | ||
19 | CONFIG_IRQCHIP_DEMUX_GPIO=y | ||
20 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
21 | |||
22 | # | ||
23 | # Code maturity level options | ||
24 | # | ||
25 | CONFIG_EXPERIMENTAL=y | ||
26 | CONFIG_BROKEN_ON_SMP=y | ||
27 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
28 | |||
29 | # | ||
30 | # General setup | ||
31 | # | ||
32 | CONFIG_LOCALVERSION="" | ||
33 | CONFIG_LOCALVERSION_AUTO=y | ||
34 | CONFIG_SYSVIPC=y | ||
35 | # CONFIG_IPC_NS is not set | ||
36 | # CONFIG_POSIX_MQUEUE is not set | ||
37 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
38 | # CONFIG_TASKSTATS is not set | ||
39 | # CONFIG_UTS_NS is not set | ||
40 | # CONFIG_AUDIT is not set | ||
41 | # CONFIG_IKCONFIG is not set | ||
42 | CONFIG_SYSFS_DEPRECATED=y | ||
43 | # CONFIG_RELAY is not set | ||
44 | CONFIG_INITRAMFS_SOURCE="" | ||
45 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
46 | CONFIG_SYSCTL=y | ||
47 | CONFIG_EMBEDDED=y | ||
48 | CONFIG_UID16=y | ||
49 | CONFIG_SYSCTL_SYSCALL=y | ||
50 | CONFIG_KALLSYMS=y | ||
51 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
52 | CONFIG_HOTPLUG=y | ||
53 | CONFIG_PRINTK=y | ||
54 | CONFIG_BUG=y | ||
55 | CONFIG_ELF_CORE=y | ||
56 | CONFIG_BASE_FULL=y | ||
57 | CONFIG_FUTEX=y | ||
58 | CONFIG_EPOLL=y | ||
59 | CONFIG_BIG_ORDER_ALLOC_NOFAIL_MAGIC=3 | ||
60 | # CONFIG_LIMIT_PAGECACHE is not set | ||
61 | CONFIG_BUDDY=y | ||
62 | # CONFIG_NP2 is not set | ||
63 | CONFIG_SLAB=y | ||
64 | CONFIG_VM_EVENT_COUNTERS=y | ||
65 | CONFIG_RT_MUTEXES=y | ||
66 | CONFIG_TINY_SHMEM=y | ||
67 | CONFIG_BASE_SMALL=0 | ||
68 | # CONFIG_SLOB is not set | ||
69 | |||
70 | # | ||
71 | # Loadable module support | ||
72 | # | ||
73 | CONFIG_MODULES=y | ||
74 | CONFIG_MODULE_UNLOAD=y | ||
75 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
76 | # CONFIG_MODVERSIONS is not set | ||
77 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
78 | CONFIG_KMOD=y | ||
79 | |||
80 | # | ||
81 | # Block layer | ||
82 | # | ||
83 | CONFIG_BLOCK=y | ||
84 | # CONFIG_LBD is not set | ||
85 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
86 | # CONFIG_LSF is not set | ||
87 | |||
88 | # | ||
89 | # IO Schedulers | ||
90 | # | ||
91 | CONFIG_IOSCHED_NOOP=y | ||
92 | CONFIG_IOSCHED_AS=y | ||
93 | # CONFIG_IOSCHED_DEADLINE is not set | ||
94 | CONFIG_IOSCHED_CFQ=y | ||
95 | CONFIG_DEFAULT_AS=y | ||
96 | # CONFIG_DEFAULT_DEADLINE is not set | ||
97 | # CONFIG_DEFAULT_CFQ is not set | ||
98 | # CONFIG_DEFAULT_NOOP is not set | ||
99 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
100 | # CONFIG_PREEMPT_NONE is not set | ||
101 | CONFIG_PREEMPT_VOLUNTARY=y | ||
102 | # CONFIG_PREEMPT is not set | ||
103 | |||
104 | # | ||
105 | # Blackfin Processor Options | ||
106 | # | ||
107 | |||
108 | # | ||
109 | # Processor and Board Settings | ||
110 | # | ||
111 | # CONFIG_BF531 is not set | ||
112 | # CONFIG_BF532 is not set | ||
113 | # CONFIG_BF533 is not set | ||
114 | # CONFIG_BF534 is not set | ||
115 | # CONFIG_BF536 is not set | ||
116 | CONFIG_BF537=y | ||
117 | # CONFIG_BF561 is not set | ||
118 | CONFIG_BF_REV_0_2=y | ||
119 | # CONFIG_BF_REV_0_3 is not set | ||
120 | # CONFIG_BF_REV_0_4 is not set | ||
121 | # CONFIG_BF_REV_0_5 is not set | ||
122 | CONFIG_BFIN_SINGLE_CORE=y | ||
123 | # CONFIG_BFIN533_EZKIT is not set | ||
124 | # CONFIG_BFIN533_STAMP is not set | ||
125 | CONFIG_BFIN537_STAMP=y | ||
126 | # CONFIG_BFIN533_BLUETECHNIX_CM is not set | ||
127 | # CONFIG_BFIN537_BLUETECHNIX_CM is not set | ||
128 | # CONFIG_BFIN561_BLUETECHNIX_CM is not set | ||
129 | # CONFIG_BFIN561_EZKIT is not set | ||
130 | # CONFIG_PNAV10 is not set | ||
131 | # CONFIG_GENERIC_BOARD is not set | ||
132 | CONFIG_MEM_MT48LC32M8A2_75=y | ||
133 | CONFIG_IRQ_PLL_WAKEUP=7 | ||
134 | |||
135 | # | ||
136 | # BF537 Specific Configuration | ||
137 | # | ||
138 | |||
139 | # | ||
140 | # PORT F/G Selection | ||
141 | # | ||
142 | CONFIG_BF537_PORT_F=y | ||
143 | # CONFIG_BF537_PORT_G is not set | ||
144 | # CONFIG_BF537_PORT_H is not set | ||
145 | |||
146 | # | ||
147 | # Interrupt Priority Assignment | ||
148 | # | ||
149 | |||
150 | # | ||
151 | # Priority | ||
152 | # | ||
153 | CONFIG_IRQ_DMA_ERROR=7 | ||
154 | CONFIG_IRQ_ERROR=7 | ||
155 | CONFIG_IRQ_RTC=8 | ||
156 | CONFIG_IRQ_PPI=8 | ||
157 | CONFIG_IRQ_SPORT0_RX=9 | ||
158 | CONFIG_IRQ_SPORT0_TX=9 | ||
159 | CONFIG_IRQ_SPORT1_RX=9 | ||
160 | CONFIG_IRQ_SPORT1_TX=9 | ||
161 | CONFIG_IRQ_TWI=10 | ||
162 | CONFIG_IRQ_SPI=10 | ||
163 | CONFIG_IRQ_UART0_RX=10 | ||
164 | CONFIG_IRQ_UART0_TX=10 | ||
165 | CONFIG_IRQ_UART1_RX=10 | ||
166 | CONFIG_IRQ_UART1_TX=10 | ||
167 | CONFIG_IRQ_CAN_RX=11 | ||
168 | CONFIG_IRQ_CAN_TX=11 | ||
169 | CONFIG_IRQ_MAC_RX=11 | ||
170 | CONFIG_IRQ_MAC_TX=11 | ||
171 | CONFIG_IRQ_TMR0=12 | ||
172 | CONFIG_IRQ_TMR1=12 | ||
173 | CONFIG_IRQ_TMR2=12 | ||
174 | CONFIG_IRQ_TMR3=12 | ||
175 | CONFIG_IRQ_TMR4=12 | ||
176 | CONFIG_IRQ_TMR5=12 | ||
177 | CONFIG_IRQ_TMR6=12 | ||
178 | CONFIG_IRQ_TMR7=12 | ||
179 | CONFIG_IRQ_PROG_INTA=12 | ||
180 | CONFIG_IRQ_PORTG_INTB=12 | ||
181 | CONFIG_IRQ_MEM_DMA0=13 | ||
182 | CONFIG_IRQ_MEM_DMA1=13 | ||
183 | CONFIG_IRQ_WATCH=13 | ||
184 | |||
185 | # | ||
186 | # Board customizations | ||
187 | # | ||
188 | # CONFIG_CMDLINE_BOOL is not set | ||
189 | |||
190 | # | ||
191 | # Board Setup | ||
192 | # | ||
193 | CONFIG_CLKIN_HZ=25000000 | ||
194 | CONFIG_MEM_SIZE=64 | ||
195 | CONFIG_MEM_ADD_WIDTH=10 | ||
196 | CONFIG_BOOT_LOAD=0x1000 | ||
197 | |||
198 | # | ||
199 | # Console UART Setup | ||
200 | # | ||
201 | # CONFIG_BAUD_9600 is not set | ||
202 | # CONFIG_BAUD_19200 is not set | ||
203 | # CONFIG_BAUD_38400 is not set | ||
204 | CONFIG_BAUD_57600=y | ||
205 | # CONFIG_BAUD_115200 is not set | ||
206 | CONFIG_BAUD_NO_PARITY=y | ||
207 | # CONFIG_BAUD_PARITY is not set | ||
208 | CONFIG_BAUD_1_STOPBIT=y | ||
209 | # CONFIG_BAUD_2_STOPBIT is not set | ||
210 | |||
211 | # | ||
212 | # Blackfin Kernel Optimizations | ||
213 | # | ||
214 | |||
215 | # | ||
216 | # Timer Tick | ||
217 | # | ||
218 | # CONFIG_HZ_100 is not set | ||
219 | CONFIG_HZ_250=y | ||
220 | # CONFIG_HZ_300 is not set | ||
221 | # CONFIG_HZ_1000 is not set | ||
222 | CONFIG_HZ=250 | ||
223 | |||
224 | # | ||
225 | # Memory Optimizations | ||
226 | # | ||
227 | CONFIG_I_ENTRY_L1=y | ||
228 | CONFIG_EXCPT_IRQ_SYSC_L1=y | ||
229 | CONFIG_DO_IRQ_L1=y | ||
230 | CONFIG_CORE_TIMER_IRQ_L1=y | ||
231 | CONFIG_IDLE_L1=y | ||
232 | CONFIG_SCHEDULE_L1=y | ||
233 | CONFIG_ARITHMETIC_OPS_L1=y | ||
234 | CONFIG_ACCESS_OK_L1=y | ||
235 | CONFIG_MEMSET_L1=y | ||
236 | CONFIG_MEMCPY_L1=y | ||
237 | CONFIG_SYS_BFIN_SPINLOCK_L1=y | ||
238 | # CONFIG_IP_CHECKSUM_L1 is not set | ||
239 | # CONFIG_SYSCALL_TAB_L1 is not set | ||
240 | # CONFIG_CPLB_SWITCH_TAB_L1 is not set | ||
241 | CONFIG_RAMKERNEL=y | ||
242 | # CONFIG_ROMKERNEL is not set | ||
243 | CONFIG_SELECT_MEMORY_MODEL=y | ||
244 | CONFIG_FLATMEM_MANUAL=y | ||
245 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
246 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
247 | CONFIG_FLATMEM=y | ||
248 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
249 | # CONFIG_SPARSEMEM_STATIC is not set | ||
250 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
251 | # CONFIG_RESOURCES_64BIT is not set | ||
252 | CONFIG_LARGE_ALLOCS=y | ||
253 | CONFIG_BFIN_DMA_5XX=y | ||
254 | # CONFIG_DMA_UNCACHED_2M is not set | ||
255 | CONFIG_DMA_UNCACHED_1M=y | ||
256 | # CONFIG_DMA_UNCACHED_NONE is not set | ||
257 | |||
258 | # | ||
259 | # Cache Support | ||
260 | # | ||
261 | CONFIG_BLKFIN_CACHE=y | ||
262 | CONFIG_BLKFIN_DCACHE=y | ||
263 | # CONFIG_BLKFIN_DCACHE_BANKA is not set | ||
264 | # CONFIG_BLKFIN_CACHE_LOCK is not set | ||
265 | # CONFIG_BLKFIN_WB is not set | ||
266 | CONFIG_BLKFIN_WT=y | ||
267 | CONFIG_L1_MAX_PIECE=16 | ||
268 | |||
269 | # | ||
270 | # Clock Settings | ||
271 | # | ||
272 | # CONFIG_BFIN_KERNEL_CLOCK is not set | ||
273 | |||
274 | # | ||
275 | # Asynchonous Memory Configuration | ||
276 | # | ||
277 | |||
278 | # | ||
279 | # EBIU_AMBCTL Global Control | ||
280 | # | ||
281 | CONFIG_C_AMCKEN=y | ||
282 | CONFIG_C_CDPRIO=y | ||
283 | # CONFIG_C_AMBEN is not set | ||
284 | # CONFIG_C_AMBEN_B0 is not set | ||
285 | # CONFIG_C_AMBEN_B0_B1 is not set | ||
286 | # CONFIG_C_AMBEN_B0_B1_B2 is not set | ||
287 | CONFIG_C_AMBEN_ALL=y | ||
288 | |||
289 | # | ||
290 | # EBIU_AMBCTL Control | ||
291 | # | ||
292 | CONFIG_BANK_0=0x7BB0 | ||
293 | CONFIG_BANK_1=0x7BB0 | ||
294 | CONFIG_BANK_2=0x7BB0 | ||
295 | CONFIG_BANK_3=0x99B3 | ||
296 | |||
297 | # | ||
298 | # Bus options (PCI, PCMCIA, EISA, MCA, ISA) | ||
299 | # | ||
300 | # CONFIG_PCI is not set | ||
301 | |||
302 | # | ||
303 | # PCCARD (PCMCIA/CardBus) support | ||
304 | # | ||
305 | # CONFIG_PCCARD is not set | ||
306 | |||
307 | # | ||
308 | # PCI Hotplug Support | ||
309 | # | ||
310 | |||
311 | # | ||
312 | # Executable file formats | ||
313 | # | ||
314 | CONFIG_BINFMT_ELF_FDPIC=y | ||
315 | CONFIG_BINFMT_FLAT=y | ||
316 | CONFIG_BINFMT_ZFLAT=y | ||
317 | # CONFIG_BINFMT_SHARED_FLAT is not set | ||
318 | # CONFIG_BINFMT_MISC is not set | ||
319 | |||
320 | # | ||
321 | # Power management options | ||
322 | # | ||
323 | CONFIG_PM=y | ||
324 | CONFIG_PM_LEGACY=y | ||
325 | # CONFIG_PM_DEBUG is not set | ||
326 | # CONFIG_PM_SYSFS_DEPRECATED is not set | ||
327 | CONFIG_PM_WAKEUP_GPIO_BY_SIC_IWR=y | ||
328 | # CONFIG_PM_WAKEUP_BY_GPIO is not set | ||
329 | # CONFIG_PM_WAKEUP_GPIO_API is not set | ||
330 | CONFIG_PM_WAKEUP_SIC_IWR=0x80000000 | ||
331 | |||
332 | # | ||
333 | # CPU Frequency scaling | ||
334 | # | ||
335 | # CONFIG_CPU_FREQ is not set | ||
336 | |||
337 | # | ||
338 | # Networking | ||
339 | # | ||
340 | CONFIG_NET=y | ||
341 | |||
342 | # | ||
343 | # Networking options | ||
344 | # | ||
345 | # CONFIG_NETDEBUG is not set | ||
346 | CONFIG_PACKET=y | ||
347 | # CONFIG_PACKET_MMAP is not set | ||
348 | CONFIG_UNIX=y | ||
349 | CONFIG_XFRM=y | ||
350 | # CONFIG_XFRM_USER is not set | ||
351 | # CONFIG_XFRM_SUB_POLICY is not set | ||
352 | # CONFIG_NET_KEY is not set | ||
353 | CONFIG_INET=y | ||
354 | # CONFIG_IP_MULTICAST is not set | ||
355 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
356 | CONFIG_IP_FIB_HASH=y | ||
357 | CONFIG_IP_PNP=y | ||
358 | # CONFIG_IP_PNP_DHCP is not set | ||
359 | # CONFIG_IP_PNP_BOOTP is not set | ||
360 | # CONFIG_IP_PNP_RARP is not set | ||
361 | # CONFIG_NET_IPIP is not set | ||
362 | # CONFIG_NET_IPGRE is not set | ||
363 | # CONFIG_ARPD is not set | ||
364 | CONFIG_SYN_COOKIES=y | ||
365 | # CONFIG_INET_AH is not set | ||
366 | # CONFIG_INET_ESP is not set | ||
367 | # CONFIG_INET_IPCOMP is not set | ||
368 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
369 | # CONFIG_INET_TUNNEL is not set | ||
370 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
371 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
372 | CONFIG_INET_XFRM_MODE_BEET=y | ||
373 | CONFIG_INET_DIAG=y | ||
374 | CONFIG_INET_TCP_DIAG=y | ||
375 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
376 | CONFIG_TCP_CONG_CUBIC=y | ||
377 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
378 | # CONFIG_TCP_MD5SIG is not set | ||
379 | # CONFIG_IPV6 is not set | ||
380 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
381 | # CONFIG_INET6_TUNNEL is not set | ||
382 | # CONFIG_NETLABEL is not set | ||
383 | # CONFIG_NETWORK_SECMARK is not set | ||
384 | # CONFIG_NETFILTER is not set | ||
385 | |||
386 | # | ||
387 | # DCCP Configuration (EXPERIMENTAL) | ||
388 | # | ||
389 | # CONFIG_IP_DCCP is not set | ||
390 | |||
391 | # | ||
392 | # SCTP Configuration (EXPERIMENTAL) | ||
393 | # | ||
394 | # CONFIG_IP_SCTP is not set | ||
395 | |||
396 | # | ||
397 | # TIPC Configuration (EXPERIMENTAL) | ||
398 | # | ||
399 | # CONFIG_TIPC is not set | ||
400 | # CONFIG_ATM is not set | ||
401 | # CONFIG_BRIDGE is not set | ||
402 | # CONFIG_VLAN_8021Q is not set | ||
403 | # CONFIG_DECNET is not set | ||
404 | # CONFIG_LLC2 is not set | ||
405 | # CONFIG_IPX is not set | ||
406 | # CONFIG_ATALK is not set | ||
407 | # CONFIG_X25 is not set | ||
408 | # CONFIG_LAPB is not set | ||
409 | # CONFIG_ECONET is not set | ||
410 | # CONFIG_WAN_ROUTER is not set | ||
411 | |||
412 | # | ||
413 | # QoS and/or fair queueing | ||
414 | # | ||
415 | # CONFIG_NET_SCHED is not set | ||
416 | |||
417 | # | ||
418 | # Network testing | ||
419 | # | ||
420 | # CONFIG_NET_PKTGEN is not set | ||
421 | # CONFIG_HAMRADIO is not set | ||
422 | CONFIG_IRDA=m | ||
423 | |||
424 | # | ||
425 | # IrDA protocols | ||
426 | # | ||
427 | CONFIG_IRLAN=m | ||
428 | CONFIG_IRCOMM=m | ||
429 | # CONFIG_IRDA_ULTRA is not set | ||
430 | |||
431 | # | ||
432 | # IrDA options | ||
433 | # | ||
434 | CONFIG_IRDA_CACHE_LAST_LSAP=y | ||
435 | # CONFIG_IRDA_FAST_RR is not set | ||
436 | # CONFIG_IRDA_DEBUG is not set | ||
437 | |||
438 | # | ||
439 | # Infrared-port device drivers | ||
440 | # | ||
441 | |||
442 | # | ||
443 | # SIR device drivers | ||
444 | # | ||
445 | CONFIG_IRTTY_SIR=m | ||
446 | |||
447 | # | ||
448 | # Dongle support | ||
449 | # | ||
450 | # CONFIG_DONGLE is not set | ||
451 | |||
452 | # | ||
453 | # Old SIR device drivers | ||
454 | # | ||
455 | # CONFIG_IRPORT_SIR is not set | ||
456 | |||
457 | # | ||
458 | # Old Serial dongle support | ||
459 | # | ||
460 | |||
461 | # | ||
462 | # FIR device drivers | ||
463 | # | ||
464 | # CONFIG_BT is not set | ||
465 | # CONFIG_IEEE80211 is not set | ||
466 | |||
467 | # | ||
468 | # Device Drivers | ||
469 | # | ||
470 | |||
471 | # | ||
472 | # Generic Driver Options | ||
473 | # | ||
474 | CONFIG_STANDALONE=y | ||
475 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
476 | # CONFIG_FW_LOADER is not set | ||
477 | # CONFIG_SYS_HYPERVISOR is not set | ||
478 | |||
479 | # | ||
480 | # Connector - unified userspace <-> kernelspace linker | ||
481 | # | ||
482 | # CONFIG_CONNECTOR is not set | ||
483 | |||
484 | # | ||
485 | # Memory Technology Devices (MTD) | ||
486 | # | ||
487 | CONFIG_MTD=y | ||
488 | # CONFIG_MTD_DEBUG is not set | ||
489 | # CONFIG_MTD_CONCAT is not set | ||
490 | CONFIG_MTD_PARTITIONS=y | ||
491 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
492 | # CONFIG_MTD_CMDLINE_PARTS is not set | ||
493 | |||
494 | # | ||
495 | # User Modules And Translation Layers | ||
496 | # | ||
497 | CONFIG_MTD_CHAR=m | ||
498 | CONFIG_MTD_BLKDEVS=y | ||
499 | CONFIG_MTD_BLOCK=y | ||
500 | # CONFIG_FTL is not set | ||
501 | # CONFIG_NFTL is not set | ||
502 | # CONFIG_INFTL is not set | ||
503 | # CONFIG_RFD_FTL is not set | ||
504 | # CONFIG_SSFDC is not set | ||
505 | |||
506 | # | ||
507 | # RAM/ROM/Flash chip drivers | ||
508 | # | ||
509 | # CONFIG_MTD_CFI is not set | ||
510 | CONFIG_MTD_JEDECPROBE=m | ||
511 | CONFIG_MTD_GEN_PROBE=m | ||
512 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
513 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
514 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
515 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
516 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
517 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
518 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
519 | CONFIG_MTD_CFI_I1=y | ||
520 | CONFIG_MTD_CFI_I2=y | ||
521 | # CONFIG_MTD_CFI_I4 is not set | ||
522 | # CONFIG_MTD_CFI_I8 is not set | ||
523 | # CONFIG_MTD_CFI_INTELEXT is not set | ||
524 | # CONFIG_MTD_CFI_AMDSTD is not set | ||
525 | # CONFIG_MTD_CFI_STAA is not set | ||
526 | CONFIG_MTD_MW320D=m | ||
527 | CONFIG_MTD_RAM=y | ||
528 | CONFIG_MTD_ROM=m | ||
529 | # CONFIG_MTD_ABSENT is not set | ||
530 | # CONFIG_MTD_OBSOLETE_CHIPS is not set | ||
531 | |||
532 | # | ||
533 | # Mapping drivers for chip access | ||
534 | # | ||
535 | CONFIG_MTD_COMPLEX_MAPPINGS=y | ||
536 | # CONFIG_MTD_PHYSMAP is not set | ||
537 | CONFIG_MTD_BF5xx=m | ||
538 | CONFIG_BFIN_FLASH_SIZE=0x400000 | ||
539 | CONFIG_EBIU_FLASH_BASE=0x20000000 | ||
540 | |||
541 | # | ||
542 | # FLASH_EBIU_AMBCTL Control | ||
543 | # | ||
544 | CONFIG_BFIN_FLASH_BANK_0=0x7BB0 | ||
545 | CONFIG_BFIN_FLASH_BANK_1=0x7BB0 | ||
546 | CONFIG_BFIN_FLASH_BANK_2=0x7BB0 | ||
547 | CONFIG_BFIN_FLASH_BANK_3=0x7BB0 | ||
548 | # CONFIG_MTD_UCLINUX is not set | ||
549 | # CONFIG_MTD_PLATRAM is not set | ||
550 | |||
551 | # | ||
552 | # Self-contained MTD device drivers | ||
553 | # | ||
554 | # CONFIG_MTD_DATAFLASH is not set | ||
555 | # CONFIG_MTD_M25P80 is not set | ||
556 | # CONFIG_MTD_SLRAM is not set | ||
557 | # CONFIG_MTD_PHRAM is not set | ||
558 | # CONFIG_MTD_MTDRAM is not set | ||
559 | # CONFIG_MTD_BLOCK2MTD is not set | ||
560 | |||
561 | # | ||
562 | # Disk-On-Chip Device Drivers | ||
563 | # | ||
564 | # CONFIG_MTD_DOC2000 is not set | ||
565 | # CONFIG_MTD_DOC2001 is not set | ||
566 | # CONFIG_MTD_DOC2001PLUS is not set | ||
567 | |||
568 | # | ||
569 | # NAND Flash Device Drivers | ||
570 | # | ||
571 | CONFIG_MTD_NAND=m | ||
572 | # CONFIG_MTD_NAND_VERIFY_WRITE is not set | ||
573 | # CONFIG_MTD_NAND_ECC_SMC is not set | ||
574 | CONFIG_MTD_NAND_BFIN=m | ||
575 | CONFIG_BFIN_NAND_BASE=0x20212000 | ||
576 | CONFIG_BFIN_NAND_CLE=2 | ||
577 | CONFIG_BFIN_NAND_ALE=1 | ||
578 | CONFIG_BFIN_NAND_READY=3 | ||
579 | CONFIG_MTD_NAND_IDS=m | ||
580 | # CONFIG_MTD_NAND_DISKONCHIP is not set | ||
581 | # CONFIG_MTD_NAND_NANDSIM is not set | ||
582 | |||
583 | # | ||
584 | # OneNAND Flash Device Drivers | ||
585 | # | ||
586 | # CONFIG_MTD_ONENAND is not set | ||
587 | |||
588 | # | ||
589 | # Parallel port support | ||
590 | # | ||
591 | # CONFIG_PARPORT is not set | ||
592 | |||
593 | # | ||
594 | # Plug and Play support | ||
595 | # | ||
596 | |||
597 | # | ||
598 | # Block devices | ||
599 | # | ||
600 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
601 | # CONFIG_BLK_DEV_LOOP is not set | ||
602 | # CONFIG_BLK_DEV_NBD is not set | ||
603 | CONFIG_BLK_DEV_RAM=y | ||
604 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
605 | CONFIG_BLK_DEV_RAM_SIZE=4096 | ||
606 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
607 | # CONFIG_BLK_DEV_INITRD is not set | ||
608 | # CONFIG_CDROM_PKTCDVD is not set | ||
609 | # CONFIG_ATA_OVER_ETH is not set | ||
610 | |||
611 | # | ||
612 | # Misc devices | ||
613 | # | ||
614 | # CONFIG_TIFM_CORE is not set | ||
615 | |||
616 | # | ||
617 | # ATA/ATAPI/MFM/RLL support | ||
618 | # | ||
619 | # CONFIG_IDE is not set | ||
620 | |||
621 | # | ||
622 | # SCSI device support | ||
623 | # | ||
624 | # CONFIG_RAID_ATTRS is not set | ||
625 | # CONFIG_SCSI is not set | ||
626 | # CONFIG_SCSI_NETLINK is not set | ||
627 | |||
628 | # | ||
629 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | ||
630 | # | ||
631 | # CONFIG_ATA is not set | ||
632 | |||
633 | # | ||
634 | # Multi-device support (RAID and LVM) | ||
635 | # | ||
636 | # CONFIG_MD is not set | ||
637 | |||
638 | # | ||
639 | # Fusion MPT device support | ||
640 | # | ||
641 | # CONFIG_FUSION is not set | ||
642 | |||
643 | # | ||
644 | # IEEE 1394 (FireWire) support | ||
645 | # | ||
646 | |||
647 | # | ||
648 | # I2O device support | ||
649 | # | ||
650 | |||
651 | # | ||
652 | # Network device support | ||
653 | # | ||
654 | CONFIG_NETDEVICES=y | ||
655 | # CONFIG_DUMMY is not set | ||
656 | # CONFIG_BONDING is not set | ||
657 | # CONFIG_EQUALIZER is not set | ||
658 | # CONFIG_TUN is not set | ||
659 | |||
660 | # | ||
661 | # PHY device support | ||
662 | # | ||
663 | # CONFIG_PHYLIB is not set | ||
664 | |||
665 | # | ||
666 | # Ethernet (10 or 100Mbit) | ||
667 | # | ||
668 | CONFIG_NET_ETHERNET=y | ||
669 | CONFIG_MII=y | ||
670 | # CONFIG_SMC91X is not set | ||
671 | CONFIG_BFIN_MAC=y | ||
672 | CONFIG_BFIN_MAC_USE_L1=y | ||
673 | CONFIG_BFIN_TX_DESC_NUM=10 | ||
674 | CONFIG_BFIN_RX_DESC_NUM=20 | ||
675 | # CONFIG_BFIN_MAC_RMII is not set | ||
676 | |||
677 | # | ||
678 | # Ethernet (1000 Mbit) | ||
679 | # | ||
680 | |||
681 | # | ||
682 | # Ethernet (10000 Mbit) | ||
683 | # | ||
684 | |||
685 | # | ||
686 | # Token Ring devices | ||
687 | # | ||
688 | |||
689 | # | ||
690 | # Wireless LAN (non-hamradio) | ||
691 | # | ||
692 | # CONFIG_NET_RADIO is not set | ||
693 | |||
694 | # | ||
695 | # Wan interfaces | ||
696 | # | ||
697 | # CONFIG_WAN is not set | ||
698 | # CONFIG_PPP is not set | ||
699 | # CONFIG_SLIP is not set | ||
700 | # CONFIG_SHAPER is not set | ||
701 | # CONFIG_NETCONSOLE is not set | ||
702 | # CONFIG_NETPOLL is not set | ||
703 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
704 | |||
705 | # | ||
706 | # ISDN subsystem | ||
707 | # | ||
708 | # CONFIG_ISDN is not set | ||
709 | |||
710 | # | ||
711 | # Telephony Support | ||
712 | # | ||
713 | # CONFIG_PHONE is not set | ||
714 | |||
715 | # | ||
716 | # Input device support | ||
717 | # | ||
718 | CONFIG_INPUT=y | ||
719 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
720 | |||
721 | # | ||
722 | # Userland interfaces | ||
723 | # | ||
724 | # CONFIG_INPUT_MOUSEDEV is not set | ||
725 | # CONFIG_INPUT_JOYDEV is not set | ||
726 | # CONFIG_INPUT_TSDEV is not set | ||
727 | CONFIG_INPUT_EVDEV=m | ||
728 | # CONFIG_INPUT_EVBUG is not set | ||
729 | |||
730 | # | ||
731 | # Input Device Drivers | ||
732 | # | ||
733 | # CONFIG_INPUT_KEYBOARD is not set | ||
734 | # CONFIG_INPUT_MOUSE is not set | ||
735 | # CONFIG_INPUT_JOYSTICK is not set | ||
736 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
737 | CONFIG_INPUT_MISC=y | ||
738 | # CONFIG_INPUT_UINPUT is not set | ||
739 | # CONFIG_BF53X_PFBUTTONS is not set | ||
740 | CONFIG_TWI_KEYPAD=m | ||
741 | CONFIG_BFIN_TWIKEYPAD_IRQ_PFX=72 | ||
742 | |||
743 | # | ||
744 | # Hardware I/O ports | ||
745 | # | ||
746 | # CONFIG_SERIO is not set | ||
747 | # CONFIG_GAMEPORT is not set | ||
748 | |||
749 | # | ||
750 | # Character devices | ||
751 | # | ||
752 | # CONFIG_AD9960 is not set | ||
753 | # CONFIG_SPI_ADC_BF533 is not set | ||
754 | # CONFIG_BF533_PFLAGS is not set | ||
755 | # CONFIG_BF5xx_PPIFCD is not set | ||
756 | # CONFIG_BF5xx_TIMERS is not set | ||
757 | # CONFIG_BF5xx_PPI is not set | ||
758 | CONFIG_BFIN_SPORT=y | ||
759 | # CONFIG_BFIN_TIMER_LATENCY is not set | ||
760 | CONFIG_TWI_LCD=m | ||
761 | CONFIG_TWI_LCD_SLAVE_ADDR=34 | ||
762 | # CONFIG_AD5304 is not set | ||
763 | # CONFIG_VT is not set | ||
764 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
765 | |||
766 | # | ||
767 | # Serial drivers | ||
768 | # | ||
769 | # CONFIG_SERIAL_8250 is not set | ||
770 | |||
771 | # | ||
772 | # Non-8250 serial port support | ||
773 | # | ||
774 | CONFIG_SERIAL_BFIN=y | ||
775 | CONFIG_SERIAL_BFIN_CONSOLE=y | ||
776 | CONFIG_SERIAL_BFIN_DMA=y | ||
777 | # CONFIG_SERIAL_BFIN_PIO is not set | ||
778 | CONFIG_SERIAL_BFIN_UART0=y | ||
779 | # CONFIG_BFIN_UART0_CTSRTS is not set | ||
780 | # CONFIG_SERIAL_BFIN_UART1 is not set | ||
781 | CONFIG_SERIAL_CORE=y | ||
782 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
783 | # CONFIG_SERIAL_BFIN_SPORT is not set | ||
784 | CONFIG_UNIX98_PTYS=y | ||
785 | # CONFIG_LEGACY_PTYS is not set | ||
786 | |||
787 | # | ||
788 | # CAN, the car bus and industrial fieldbus | ||
789 | # | ||
790 | CONFIG_CAN4LINUX=y | ||
791 | |||
792 | # | ||
793 | # linux embedded drivers | ||
794 | # | ||
795 | # CONFIG_CAN_MCF5282 is not set | ||
796 | # CONFIG_CAN_UNCTWINCAN is not set | ||
797 | CONFIG_CAN_BLACKFIN=m | ||
798 | |||
799 | # | ||
800 | # IPMI | ||
801 | # | ||
802 | # CONFIG_IPMI_HANDLER is not set | ||
803 | |||
804 | # | ||
805 | # Watchdog Cards | ||
806 | # | ||
807 | # CONFIG_WATCHDOG is not set | ||
808 | CONFIG_HW_RANDOM=y | ||
809 | # CONFIG_GEN_RTC is not set | ||
810 | CONFIG_BLACKFIN_DPMC=y | ||
811 | # CONFIG_DTLK is not set | ||
812 | # CONFIG_R3964 is not set | ||
813 | # CONFIG_RAW_DRIVER is not set | ||
814 | |||
815 | # | ||
816 | # TPM devices | ||
817 | # | ||
818 | # CONFIG_TCG_TPM is not set | ||
819 | |||
820 | # | ||
821 | # I2C support | ||
822 | # | ||
823 | CONFIG_I2C=m | ||
824 | CONFIG_I2C_CHARDEV=m | ||
825 | |||
826 | # | ||
827 | # I2C Algorithms | ||
828 | # | ||
829 | # CONFIG_I2C_ALGOBIT is not set | ||
830 | # CONFIG_I2C_ALGOPCF is not set | ||
831 | # CONFIG_I2C_ALGOPCA is not set | ||
832 | |||
833 | # | ||
834 | # I2C Hardware Bus support | ||
835 | # | ||
836 | # CONFIG_I2C_BLACKFIN_GPIO is not set | ||
837 | CONFIG_I2C_BLACKFIN_TWI=m | ||
838 | CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ=50 | ||
839 | # CONFIG_I2C_OCORES is not set | ||
840 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
841 | # CONFIG_I2C_STUB is not set | ||
842 | # CONFIG_I2C_PCA_ISA is not set | ||
843 | |||
844 | # | ||
845 | # Miscellaneous I2C Chip support | ||
846 | # | ||
847 | # CONFIG_SENSORS_DS1337 is not set | ||
848 | # CONFIG_SENSORS_DS1374 is not set | ||
849 | CONFIG_SENSORS_AD5252=m | ||
850 | # CONFIG_SENSORS_EEPROM is not set | ||
851 | # CONFIG_SENSORS_PCF8574 is not set | ||
852 | # CONFIG_SENSORS_PCF8575 is not set | ||
853 | # CONFIG_SENSORS_PCA9543 is not set | ||
854 | # CONFIG_SENSORS_PCA9539 is not set | ||
855 | # CONFIG_SENSORS_PCF8591 is not set | ||
856 | # CONFIG_SENSORS_MAX6875 is not set | ||
857 | # CONFIG_I2C_DEBUG_CORE is not set | ||
858 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
859 | # CONFIG_I2C_DEBUG_BUS is not set | ||
860 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
861 | |||
862 | # | ||
863 | # SPI support | ||
864 | # | ||
865 | CONFIG_SPI=y | ||
866 | CONFIG_SPI_MASTER=y | ||
867 | |||
868 | # | ||
869 | # SPI Master Controller Drivers | ||
870 | # | ||
871 | # CONFIG_SPI_BITBANG is not set | ||
872 | |||
873 | # | ||
874 | # SPI Protocol Masters | ||
875 | # | ||
876 | CONFIG_SPI_BFIN=y | ||
877 | |||
878 | # | ||
879 | # Dallas's 1-wire bus | ||
880 | # | ||
881 | # CONFIG_W1 is not set | ||
882 | |||
883 | # | ||
884 | # Hardware Monitoring support | ||
885 | # | ||
886 | CONFIG_HWMON=y | ||
887 | # CONFIG_HWMON_VID is not set | ||
888 | # CONFIG_SENSORS_ABITUGURU is not set | ||
889 | # CONFIG_SENSORS_ADM1021 is not set | ||
890 | # CONFIG_SENSORS_ADM1025 is not set | ||
891 | # CONFIG_SENSORS_ADM1026 is not set | ||
892 | # CONFIG_SENSORS_ADM1031 is not set | ||
893 | # CONFIG_SENSORS_ADM9240 is not set | ||
894 | # CONFIG_SENSORS_ASB100 is not set | ||
895 | # CONFIG_SENSORS_ATXP1 is not set | ||
896 | # CONFIG_SENSORS_DS1621 is not set | ||
897 | # CONFIG_SENSORS_F71805F is not set | ||
898 | # CONFIG_SENSORS_FSCHER is not set | ||
899 | # CONFIG_SENSORS_FSCPOS is not set | ||
900 | # CONFIG_SENSORS_GL518SM is not set | ||
901 | # CONFIG_SENSORS_GL520SM is not set | ||
902 | # CONFIG_SENSORS_IT87 is not set | ||
903 | # CONFIG_SENSORS_LM63 is not set | ||
904 | # CONFIG_SENSORS_LM70 is not set | ||
905 | # CONFIG_SENSORS_LM75 is not set | ||
906 | # CONFIG_SENSORS_LM77 is not set | ||
907 | # CONFIG_SENSORS_LM78 is not set | ||
908 | # CONFIG_SENSORS_LM80 is not set | ||
909 | # CONFIG_SENSORS_LM83 is not set | ||
910 | # CONFIG_SENSORS_LM85 is not set | ||
911 | # CONFIG_SENSORS_LM87 is not set | ||
912 | # CONFIG_SENSORS_LM90 is not set | ||
913 | # CONFIG_SENSORS_LM92 is not set | ||
914 | # CONFIG_SENSORS_MAX1619 is not set | ||
915 | # CONFIG_SENSORS_PC87360 is not set | ||
916 | # CONFIG_SENSORS_PC87427 is not set | ||
917 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
918 | # CONFIG_SENSORS_SMSC47M192 is not set | ||
919 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
920 | # CONFIG_SENSORS_VT1211 is not set | ||
921 | # CONFIG_SENSORS_W83781D is not set | ||
922 | # CONFIG_SENSORS_W83791D is not set | ||
923 | # CONFIG_SENSORS_W83792D is not set | ||
924 | # CONFIG_SENSORS_W83793 is not set | ||
925 | # CONFIG_SENSORS_W83L785TS is not set | ||
926 | # CONFIG_SENSORS_W83627HF is not set | ||
927 | # CONFIG_SENSORS_W83627EHF is not set | ||
928 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
929 | |||
930 | # | ||
931 | # Multimedia devices | ||
932 | # | ||
933 | # CONFIG_VIDEO_DEV is not set | ||
934 | |||
935 | # | ||
936 | # Digital Video Broadcasting Devices | ||
937 | # | ||
938 | # CONFIG_DVB is not set | ||
939 | |||
940 | # | ||
941 | # Graphics support | ||
942 | # | ||
943 | CONFIG_FIRMWARE_EDID=y | ||
944 | CONFIG_FB=m | ||
945 | CONFIG_FB_CFB_FILLRECT=m | ||
946 | CONFIG_FB_CFB_COPYAREA=m | ||
947 | CONFIG_FB_CFB_IMAGEBLIT=m | ||
948 | # CONFIG_FB_MACMODES is not set | ||
949 | # CONFIG_FB_BACKLIGHT is not set | ||
950 | # CONFIG_FB_MODE_HELPERS is not set | ||
951 | # CONFIG_FB_TILEBLITTING is not set | ||
952 | CONFIG_FB_BFIN_7171=m | ||
953 | CONFIG_FB_BFIN_7393=m | ||
954 | CONFIG_NTSC=y | ||
955 | # CONFIG_PAL is not set | ||
956 | # CONFIG_NTSC_640x480 is not set | ||
957 | # CONFIG_PAL_640x480 is not set | ||
958 | # CONFIG_NTSC_YCBCR is not set | ||
959 | # CONFIG_PAL_YCBCR is not set | ||
960 | CONFIG_ADV7393_1XMEM=y | ||
961 | # CONFIG_ADV7393_2XMEM is not set | ||
962 | CONFIG_FB_BF537_LQ035=m | ||
963 | CONFIG_LQ035_SLAVE_ADDR=0x58 | ||
964 | # CONFIG_FB_BFIN_LANDSCAPE is not set | ||
965 | # CONFIG_FB_BFIN_BGR is not set | ||
966 | # CONFIG_FB_S1D13XXX is not set | ||
967 | # CONFIG_FB_VIRTUAL is not set | ||
968 | |||
969 | # | ||
970 | # Logo configuration | ||
971 | # | ||
972 | # CONFIG_LOGO is not set | ||
973 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | ||
974 | CONFIG_BACKLIGHT_CLASS_DEVICE=m | ||
975 | CONFIG_BACKLIGHT_DEVICE=y | ||
976 | CONFIG_LCD_CLASS_DEVICE=m | ||
977 | CONFIG_LCD_DEVICE=y | ||
978 | |||
979 | # | ||
980 | # Sound | ||
981 | # | ||
982 | CONFIG_SOUND=m | ||
983 | |||
984 | # | ||
985 | # Advanced Linux Sound Architecture | ||
986 | # | ||
987 | CONFIG_SND=m | ||
988 | CONFIG_SND_TIMER=m | ||
989 | CONFIG_SND_PCM=m | ||
990 | # CONFIG_SND_SEQUENCER is not set | ||
991 | CONFIG_SND_OSSEMUL=y | ||
992 | CONFIG_SND_MIXER_OSS=m | ||
993 | CONFIG_SND_PCM_OSS=m | ||
994 | CONFIG_SND_PCM_OSS_PLUGINS=y | ||
995 | # CONFIG_SND_DYNAMIC_MINORS is not set | ||
996 | CONFIG_SND_SUPPORT_OLD_API=y | ||
997 | CONFIG_SND_VERBOSE_PROCFS=y | ||
998 | # CONFIG_SND_VERBOSE_PRINTK is not set | ||
999 | # CONFIG_SND_DEBUG is not set | ||
1000 | |||
1001 | # | ||
1002 | # Generic devices | ||
1003 | # | ||
1004 | # CONFIG_SND_DUMMY is not set | ||
1005 | # CONFIG_SND_MTPAV is not set | ||
1006 | # CONFIG_SND_SERIAL_U16550 is not set | ||
1007 | # CONFIG_SND_MPU401 is not set | ||
1008 | |||
1009 | # | ||
1010 | # Open Sound System | ||
1011 | # | ||
1012 | # CONFIG_SOUND_PRIME is not set | ||
1013 | |||
1014 | # | ||
1015 | # HID Devices | ||
1016 | # | ||
1017 | CONFIG_HID=y | ||
1018 | |||
1019 | # | ||
1020 | # USB support | ||
1021 | # | ||
1022 | CONFIG_USB_ARCH_HAS_HCD=y | ||
1023 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
1024 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
1025 | # CONFIG_USB is not set | ||
1026 | |||
1027 | # | ||
1028 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
1029 | # | ||
1030 | |||
1031 | # | ||
1032 | # USB Gadget Support | ||
1033 | # | ||
1034 | # CONFIG_USB_GADGET is not set | ||
1035 | |||
1036 | # | ||
1037 | # MMC/SD Card support | ||
1038 | # | ||
1039 | # CONFIG_SPI_MMC is not set | ||
1040 | # CONFIG_MMC is not set | ||
1041 | |||
1042 | # | ||
1043 | # LED devices | ||
1044 | # | ||
1045 | # CONFIG_NEW_LEDS is not set | ||
1046 | |||
1047 | # | ||
1048 | # LED drivers | ||
1049 | # | ||
1050 | |||
1051 | # | ||
1052 | # LED Triggers | ||
1053 | # | ||
1054 | |||
1055 | # | ||
1056 | # InfiniBand support | ||
1057 | # | ||
1058 | |||
1059 | # | ||
1060 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) | ||
1061 | # | ||
1062 | |||
1063 | # | ||
1064 | # Real Time Clock | ||
1065 | # | ||
1066 | CONFIG_RTC_LIB=y | ||
1067 | CONFIG_RTC_CLASS=y | ||
1068 | CONFIG_RTC_HCTOSYS=y | ||
1069 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
1070 | # CONFIG_RTC_DEBUG is not set | ||
1071 | |||
1072 | # | ||
1073 | # RTC interfaces | ||
1074 | # | ||
1075 | CONFIG_RTC_INTF_SYSFS=y | ||
1076 | CONFIG_RTC_INTF_PROC=y | ||
1077 | CONFIG_RTC_INTF_DEV=y | ||
1078 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
1079 | |||
1080 | # | ||
1081 | # RTC drivers | ||
1082 | # | ||
1083 | # CONFIG_RTC_DRV_X1205 is not set | ||
1084 | # CONFIG_RTC_DRV_DS1307 is not set | ||
1085 | # CONFIG_RTC_DRV_DS1553 is not set | ||
1086 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
1087 | # CONFIG_RTC_DRV_DS1672 is not set | ||
1088 | # CONFIG_RTC_DRV_DS1742 is not set | ||
1089 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
1090 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
1091 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
1092 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
1093 | # CONFIG_RTC_DRV_M48T86 is not set | ||
1094 | # CONFIG_RTC_DRV_TEST is not set | ||
1095 | # CONFIG_RTC_DRV_MAX6902 is not set | ||
1096 | # CONFIG_RTC_DRV_V3020 is not set | ||
1097 | CONFIG_RTC_DRV_BFIN=y | ||
1098 | |||
1099 | # | ||
1100 | # DMA Engine support | ||
1101 | # | ||
1102 | # CONFIG_DMA_ENGINE is not set | ||
1103 | |||
1104 | # | ||
1105 | # DMA Clients | ||
1106 | # | ||
1107 | |||
1108 | # | ||
1109 | # DMA Devices | ||
1110 | # | ||
1111 | |||
1112 | # | ||
1113 | # Virtualization | ||
1114 | # | ||
1115 | |||
1116 | # | ||
1117 | # PBX support | ||
1118 | # | ||
1119 | # CONFIG_PBX is not set | ||
1120 | |||
1121 | # | ||
1122 | # File systems | ||
1123 | # | ||
1124 | CONFIG_EXT2_FS=y | ||
1125 | CONFIG_EXT2_FS_XATTR=y | ||
1126 | # CONFIG_EXT2_FS_POSIX_ACL is not set | ||
1127 | # CONFIG_EXT2_FS_SECURITY is not set | ||
1128 | # CONFIG_EXT3_FS is not set | ||
1129 | # CONFIG_EXT4DEV_FS is not set | ||
1130 | CONFIG_FS_MBCACHE=y | ||
1131 | # CONFIG_REISERFS_FS is not set | ||
1132 | # CONFIG_JFS_FS is not set | ||
1133 | # CONFIG_FS_POSIX_ACL is not set | ||
1134 | # CONFIG_XFS_FS is not set | ||
1135 | # CONFIG_GFS2_FS is not set | ||
1136 | # CONFIG_OCFS2_FS is not set | ||
1137 | # CONFIG_MINIX_FS is not set | ||
1138 | # CONFIG_ROMFS_FS is not set | ||
1139 | CONFIG_INOTIFY=y | ||
1140 | CONFIG_INOTIFY_USER=y | ||
1141 | # CONFIG_QUOTA is not set | ||
1142 | CONFIG_DNOTIFY=y | ||
1143 | # CONFIG_AUTOFS_FS is not set | ||
1144 | # CONFIG_AUTOFS4_FS is not set | ||
1145 | # CONFIG_FUSE_FS is not set | ||
1146 | |||
1147 | # | ||
1148 | # CD-ROM/DVD Filesystems | ||
1149 | # | ||
1150 | # CONFIG_ISO9660_FS is not set | ||
1151 | # CONFIG_UDF_FS is not set | ||
1152 | |||
1153 | # | ||
1154 | # DOS/FAT/NT Filesystems | ||
1155 | # | ||
1156 | # CONFIG_MSDOS_FS is not set | ||
1157 | # CONFIG_VFAT_FS is not set | ||
1158 | # CONFIG_NTFS_FS is not set | ||
1159 | |||
1160 | # | ||
1161 | # Pseudo filesystems | ||
1162 | # | ||
1163 | CONFIG_PROC_FS=y | ||
1164 | CONFIG_PROC_SYSCTL=y | ||
1165 | CONFIG_SYSFS=y | ||
1166 | # CONFIG_TMPFS is not set | ||
1167 | # CONFIG_HUGETLB_PAGE is not set | ||
1168 | CONFIG_RAMFS=y | ||
1169 | # CONFIG_CONFIGFS_FS is not set | ||
1170 | |||
1171 | # | ||
1172 | # Miscellaneous filesystems | ||
1173 | # | ||
1174 | # CONFIG_ADFS_FS is not set | ||
1175 | # CONFIG_AFFS_FS is not set | ||
1176 | # CONFIG_HFS_FS is not set | ||
1177 | # CONFIG_HFSPLUS_FS is not set | ||
1178 | # CONFIG_BEFS_FS is not set | ||
1179 | # CONFIG_BFS_FS is not set | ||
1180 | # CONFIG_EFS_FS is not set | ||
1181 | CONFIG_YAFFS_FS=m | ||
1182 | CONFIG_YAFFS_YAFFS1=y | ||
1183 | # CONFIG_YAFFS_DOES_ECC is not set | ||
1184 | CONFIG_YAFFS_YAFFS2=y | ||
1185 | CONFIG_YAFFS_AUTO_YAFFS2=y | ||
1186 | # CONFIG_YAFFS_DISABLE_LAZY_LOAD is not set | ||
1187 | CONFIG_YAFFS_CHECKPOINT_RESERVED_BLOCKS=10 | ||
1188 | # CONFIG_YAFFS_DISABLE_WIDE_TNODES is not set | ||
1189 | # CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED is not set | ||
1190 | CONFIG_YAFFS_SHORT_NAMES_IN_RAM=y | ||
1191 | CONFIG_JFFS2_FS=m | ||
1192 | CONFIG_JFFS2_FS_DEBUG=0 | ||
1193 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
1194 | # CONFIG_JFFS2_SUMMARY is not set | ||
1195 | # CONFIG_JFFS2_FS_XATTR is not set | ||
1196 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
1197 | CONFIG_JFFS2_ZLIB=y | ||
1198 | CONFIG_JFFS2_RTIME=y | ||
1199 | # CONFIG_JFFS2_RUBIN is not set | ||
1200 | # CONFIG_CRAMFS is not set | ||
1201 | # CONFIG_VXFS_FS is not set | ||
1202 | # CONFIG_HPFS_FS is not set | ||
1203 | # CONFIG_QNX4FS_FS is not set | ||
1204 | # CONFIG_SYSV_FS is not set | ||
1205 | # CONFIG_UFS_FS is not set | ||
1206 | |||
1207 | # | ||
1208 | # Network File Systems | ||
1209 | # | ||
1210 | CONFIG_NFS_FS=m | ||
1211 | CONFIG_NFS_V3=y | ||
1212 | # CONFIG_NFS_V3_ACL is not set | ||
1213 | # CONFIG_NFS_V4 is not set | ||
1214 | # CONFIG_NFS_DIRECTIO is not set | ||
1215 | # CONFIG_NFSD is not set | ||
1216 | CONFIG_LOCKD=m | ||
1217 | CONFIG_LOCKD_V4=y | ||
1218 | CONFIG_NFS_COMMON=y | ||
1219 | CONFIG_SUNRPC=m | ||
1220 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
1221 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
1222 | CONFIG_SMB_FS=m | ||
1223 | # CONFIG_SMB_NLS_DEFAULT is not set | ||
1224 | # CONFIG_CIFS is not set | ||
1225 | # CONFIG_NCP_FS is not set | ||
1226 | # CONFIG_CODA_FS is not set | ||
1227 | # CONFIG_AFS_FS is not set | ||
1228 | # CONFIG_9P_FS is not set | ||
1229 | |||
1230 | # | ||
1231 | # Partition Types | ||
1232 | # | ||
1233 | # CONFIG_PARTITION_ADVANCED is not set | ||
1234 | CONFIG_MSDOS_PARTITION=y | ||
1235 | |||
1236 | # | ||
1237 | # Native Language Support | ||
1238 | # | ||
1239 | CONFIG_NLS=m | ||
1240 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
1241 | # CONFIG_NLS_CODEPAGE_437 is not set | ||
1242 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
1243 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
1244 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
1245 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
1246 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
1247 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
1248 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
1249 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
1250 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
1251 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
1252 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
1253 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
1254 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
1255 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
1256 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
1257 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
1258 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
1259 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
1260 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
1261 | # CONFIG_NLS_ISO8859_8 is not set | ||
1262 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
1263 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
1264 | # CONFIG_NLS_ASCII is not set | ||
1265 | # CONFIG_NLS_ISO8859_1 is not set | ||
1266 | # CONFIG_NLS_ISO8859_2 is not set | ||
1267 | # CONFIG_NLS_ISO8859_3 is not set | ||
1268 | # CONFIG_NLS_ISO8859_4 is not set | ||
1269 | # CONFIG_NLS_ISO8859_5 is not set | ||
1270 | # CONFIG_NLS_ISO8859_6 is not set | ||
1271 | # CONFIG_NLS_ISO8859_7 is not set | ||
1272 | # CONFIG_NLS_ISO8859_9 is not set | ||
1273 | # CONFIG_NLS_ISO8859_13 is not set | ||
1274 | # CONFIG_NLS_ISO8859_14 is not set | ||
1275 | # CONFIG_NLS_ISO8859_15 is not set | ||
1276 | # CONFIG_NLS_KOI8_R is not set | ||
1277 | # CONFIG_NLS_KOI8_U is not set | ||
1278 | # CONFIG_NLS_UTF8 is not set | ||
1279 | |||
1280 | # | ||
1281 | # Distributed Lock Manager | ||
1282 | # | ||
1283 | # CONFIG_DLM is not set | ||
1284 | |||
1285 | # | ||
1286 | # Profiling support | ||
1287 | # | ||
1288 | # CONFIG_PROFILING is not set | ||
1289 | |||
1290 | # | ||
1291 | # Kernel hacking | ||
1292 | # | ||
1293 | # CONFIG_PRINTK_TIME is not set | ||
1294 | CONFIG_ENABLE_MUST_CHECK=y | ||
1295 | # CONFIG_MAGIC_SYSRQ is not set | ||
1296 | # CONFIG_UNUSED_SYMBOLS is not set | ||
1297 | # CONFIG_DEBUG_FS is not set | ||
1298 | # CONFIG_HEADERS_CHECK is not set | ||
1299 | # CONFIG_DEBUG_KERNEL is not set | ||
1300 | CONFIG_LOG_BUF_SHIFT=14 | ||
1301 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
1302 | # CONFIG_DEBUG_SERIAL_EARLY_INIT is not set | ||
1303 | CONFIG_DEBUG_HUNT_FOR_ZERO=y | ||
1304 | # CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE is not set | ||
1305 | CONFIG_CPLB_INFO=y | ||
1306 | CONFIG_ACCESS_CHECK=y | ||
1307 | |||
1308 | # | ||
1309 | # Security options | ||
1310 | # | ||
1311 | # CONFIG_KEYS is not set | ||
1312 | CONFIG_SECURITY=y | ||
1313 | # CONFIG_SECURITY_NETWORK is not set | ||
1314 | CONFIG_SECURITY_CAPABILITIES=y | ||
1315 | |||
1316 | # | ||
1317 | # Cryptographic options | ||
1318 | # | ||
1319 | # CONFIG_CRYPTO is not set | ||
1320 | |||
1321 | # | ||
1322 | # Library routines | ||
1323 | # | ||
1324 | CONFIG_BITREVERSE=y | ||
1325 | CONFIG_CRC_CCITT=m | ||
1326 | # CONFIG_CRC16 is not set | ||
1327 | CONFIG_CRC32=y | ||
1328 | # CONFIG_LIBCRC32C is not set | ||
1329 | CONFIG_ZLIB_INFLATE=y | ||
1330 | CONFIG_ZLIB_DEFLATE=m | ||
1331 | CONFIG_PLIST=y | ||
1332 | CONFIG_IOMAP_COPY=y | ||
diff --git a/arch/blackfin/configs/BF561-EZKIT_defconfig b/arch/blackfin/configs/BF561-EZKIT_defconfig new file mode 100644 index 000000000000..e32ca2072cbf --- /dev/null +++ b/arch/blackfin/configs/BF561-EZKIT_defconfig | |||
@@ -0,0 +1,1073 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.19.3 | ||
4 | # | ||
5 | # CONFIG_MMU is not set | ||
6 | # CONFIG_FPU is not set | ||
7 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
8 | # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set | ||
9 | CONFIG_BLACKFIN=y | ||
10 | CONFIG_BFIN=y | ||
11 | CONFIG_SEMAPHORE_SLEEPERS=y | ||
12 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
13 | CONFIG_GENERIC_HWEIGHT=y | ||
14 | CONFIG_GENERIC_HARDIRQS=y | ||
15 | CONFIG_GENERIC_IRQ_PROBE=y | ||
16 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
17 | CONFIG_UCLINUX=y | ||
18 | CONFIG_FORCE_MAX_ZONEORDER=14 | ||
19 | CONFIG_IRQCHIP_DEMUX_GPIO=y | ||
20 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
21 | |||
22 | # | ||
23 | # Code maturity level options | ||
24 | # | ||
25 | CONFIG_EXPERIMENTAL=y | ||
26 | CONFIG_BROKEN_ON_SMP=y | ||
27 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
28 | |||
29 | # | ||
30 | # General setup | ||
31 | # | ||
32 | CONFIG_LOCALVERSION="" | ||
33 | CONFIG_LOCALVERSION_AUTO=y | ||
34 | CONFIG_SYSVIPC=y | ||
35 | # CONFIG_IPC_NS is not set | ||
36 | # CONFIG_POSIX_MQUEUE is not set | ||
37 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
38 | # CONFIG_TASKSTATS is not set | ||
39 | # CONFIG_UTS_NS is not set | ||
40 | # CONFIG_AUDIT is not set | ||
41 | # CONFIG_IKCONFIG is not set | ||
42 | # CONFIG_RELAY is not set | ||
43 | CONFIG_INITRAMFS_SOURCE="" | ||
44 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
45 | CONFIG_SYSCTL=y | ||
46 | CONFIG_EMBEDDED=y | ||
47 | # CONFIG_UID16 is not set | ||
48 | CONFIG_SYSCTL_SYSCALL=y | ||
49 | CONFIG_KALLSYMS=y | ||
50 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
51 | CONFIG_HOTPLUG=y | ||
52 | CONFIG_PRINTK=y | ||
53 | CONFIG_BUG=y | ||
54 | CONFIG_ELF_CORE=y | ||
55 | CONFIG_BASE_FULL=y | ||
56 | CONFIG_FUTEX=y | ||
57 | CONFIG_EPOLL=y | ||
58 | CONFIG_BIG_ORDER_ALLOC_NOFAIL_MAGIC=3 | ||
59 | # CONFIG_LIMIT_PAGECACHE is not set | ||
60 | CONFIG_BUDDY=y | ||
61 | # CONFIG_NP2 is not set | ||
62 | CONFIG_SLAB=y | ||
63 | CONFIG_VM_EVENT_COUNTERS=y | ||
64 | CONFIG_RT_MUTEXES=y | ||
65 | CONFIG_TINY_SHMEM=y | ||
66 | CONFIG_BASE_SMALL=0 | ||
67 | # CONFIG_SLOB is not set | ||
68 | |||
69 | # | ||
70 | # Loadable module support | ||
71 | # | ||
72 | CONFIG_MODULES=y | ||
73 | CONFIG_MODULE_UNLOAD=y | ||
74 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
75 | # CONFIG_MODVERSIONS is not set | ||
76 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
77 | CONFIG_KMOD=y | ||
78 | |||
79 | # | ||
80 | # Block layer | ||
81 | # | ||
82 | CONFIG_BLOCK=y | ||
83 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
84 | |||
85 | # | ||
86 | # IO Schedulers | ||
87 | # | ||
88 | CONFIG_IOSCHED_NOOP=y | ||
89 | CONFIG_IOSCHED_AS=y | ||
90 | # CONFIG_IOSCHED_DEADLINE is not set | ||
91 | CONFIG_IOSCHED_CFQ=y | ||
92 | CONFIG_DEFAULT_AS=y | ||
93 | # CONFIG_DEFAULT_DEADLINE is not set | ||
94 | # CONFIG_DEFAULT_CFQ is not set | ||
95 | # CONFIG_DEFAULT_NOOP is not set | ||
96 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
97 | # CONFIG_PREEMPT_NONE is not set | ||
98 | CONFIG_PREEMPT_VOLUNTARY=y | ||
99 | # CONFIG_PREEMPT is not set | ||
100 | |||
101 | # | ||
102 | # Blackfin Processor Options | ||
103 | # | ||
104 | |||
105 | # | ||
106 | # Processor and Board Settings | ||
107 | # | ||
108 | # CONFIG_BF531 is not set | ||
109 | # CONFIG_BF532 is not set | ||
110 | # CONFIG_BF533 is not set | ||
111 | # CONFIG_BF534 is not set | ||
112 | # CONFIG_BF535 is not set | ||
113 | # CONFIG_BF536 is not set | ||
114 | # CONFIG_BF537 is not set | ||
115 | CONFIG_BF561=y | ||
116 | # CONFIG_BF_REV_0_2 is not set | ||
117 | CONFIG_BF_REV_0_3=y | ||
118 | # CONFIG_BF_REV_0_4 is not set | ||
119 | # CONFIG_BF_REV_0_5 is not set | ||
120 | CONFIG_BFIN_DUAL_CORE=y | ||
121 | # CONFIG_BFIN533_EZKIT is not set | ||
122 | # CONFIG_BFIN533_STAMP is not set | ||
123 | # CONFIG_BFIN537_STAMP is not set | ||
124 | # CONFIG_BFIN533_BLUETECHNIX_CM is not set | ||
125 | # CONFIG_BFIN537_BLUETECHNIX_CM is not set | ||
126 | # CONFIG_BFIN561_BLUETECHNIX_CM is not set | ||
127 | CONFIG_BFIN561_EZKIT=y | ||
128 | # CONFIG_PNAV10 is not set | ||
129 | # CONFIG_GENERIC_BOARD is not set | ||
130 | CONFIG_MEM_MT48LC16M16A2TG_75=y | ||
131 | |||
132 | # | ||
133 | # BF561 Specific Configuration | ||
134 | # | ||
135 | |||
136 | # | ||
137 | # Core B Support | ||
138 | # | ||
139 | |||
140 | # | ||
141 | # Core B Support | ||
142 | # | ||
143 | CONFIG_BF561_COREB=y | ||
144 | CONFIG_BF561_COREB_RESET=y | ||
145 | |||
146 | # | ||
147 | # Interrupt Priority Assignment | ||
148 | # | ||
149 | |||
150 | # | ||
151 | # Priority | ||
152 | # | ||
153 | CONFIG_IRQ_PLL_WAKEUP=7 | ||
154 | CONFIG_IRQ_DMA1_ERROR=7 | ||
155 | CONFIG_IRQ_DMA2_ERROR=7 | ||
156 | CONFIG_IRQ_IMDMA_ERROR=7 | ||
157 | CONFIG_IRQ_PPI0_ERROR=7 | ||
158 | CONFIG_IRQ_PPI1_ERROR=7 | ||
159 | CONFIG_IRQ_SPORT0_ERROR=7 | ||
160 | CONFIG_IRQ_SPORT1_ERROR=7 | ||
161 | CONFIG_IRQ_SPI_ERROR=7 | ||
162 | CONFIG_IRQ_UART_ERROR=7 | ||
163 | CONFIG_IRQ_RESERVED_ERROR=7 | ||
164 | CONFIG_IRQ_DMA1_0=8 | ||
165 | CONFIG_IRQ_DMA1_1=8 | ||
166 | CONFIG_IRQ_DMA1_2=8 | ||
167 | CONFIG_IRQ_DMA1_3=8 | ||
168 | CONFIG_IRQ_DMA1_4=8 | ||
169 | CONFIG_IRQ_DMA1_5=8 | ||
170 | CONFIG_IRQ_DMA1_6=8 | ||
171 | CONFIG_IRQ_DMA1_7=8 | ||
172 | CONFIG_IRQ_DMA1_8=8 | ||
173 | CONFIG_IRQ_DMA1_9=8 | ||
174 | CONFIG_IRQ_DMA1_10=8 | ||
175 | CONFIG_IRQ_DMA1_11=8 | ||
176 | CONFIG_IRQ_DMA2_0=9 | ||
177 | CONFIG_IRQ_DMA2_1=9 | ||
178 | CONFIG_IRQ_DMA2_2=9 | ||
179 | CONFIG_IRQ_DMA2_3=9 | ||
180 | CONFIG_IRQ_DMA2_4=9 | ||
181 | CONFIG_IRQ_DMA2_5=9 | ||
182 | CONFIG_IRQ_DMA2_6=9 | ||
183 | CONFIG_IRQ_DMA2_7=9 | ||
184 | CONFIG_IRQ_DMA2_8=9 | ||
185 | CONFIG_IRQ_DMA2_9=9 | ||
186 | CONFIG_IRQ_DMA2_10=9 | ||
187 | CONFIG_IRQ_DMA2_11=9 | ||
188 | CONFIG_IRQ_TIMER0=10 | ||
189 | CONFIG_IRQ_TIMER1=10 | ||
190 | CONFIG_IRQ_TIMER2=10 | ||
191 | CONFIG_IRQ_TIMER3=10 | ||
192 | CONFIG_IRQ_TIMER4=10 | ||
193 | CONFIG_IRQ_TIMER5=10 | ||
194 | CONFIG_IRQ_TIMER6=10 | ||
195 | CONFIG_IRQ_TIMER7=10 | ||
196 | CONFIG_IRQ_TIMER8=10 | ||
197 | CONFIG_IRQ_TIMER9=10 | ||
198 | CONFIG_IRQ_TIMER10=10 | ||
199 | CONFIG_IRQ_TIMER11=10 | ||
200 | CONFIG_IRQ_PROG0_INTA=11 | ||
201 | CONFIG_IRQ_PROG0_INTB=11 | ||
202 | CONFIG_IRQ_PROG1_INTA=11 | ||
203 | CONFIG_IRQ_PROG1_INTB=11 | ||
204 | CONFIG_IRQ_PROG2_INTA=11 | ||
205 | CONFIG_IRQ_PROG2_INTB=11 | ||
206 | CONFIG_IRQ_DMA1_WRRD0=8 | ||
207 | CONFIG_IRQ_DMA1_WRRD1=8 | ||
208 | CONFIG_IRQ_DMA2_WRRD0=9 | ||
209 | CONFIG_IRQ_DMA2_WRRD1=9 | ||
210 | CONFIG_IRQ_IMDMA_WRRD0=12 | ||
211 | CONFIG_IRQ_IMDMA_WRRD1=12 | ||
212 | CONFIG_IRQ_WDTIMER=13 | ||
213 | |||
214 | # | ||
215 | # Board customizations | ||
216 | # | ||
217 | |||
218 | # | ||
219 | # Board Setup | ||
220 | # | ||
221 | CONFIG_CLKIN_HZ=30000000 | ||
222 | CONFIG_MEM_SIZE=64 | ||
223 | CONFIG_MEM_ADD_WIDTH=9 | ||
224 | CONFIG_BOOT_LOAD=0x1000 | ||
225 | |||
226 | # | ||
227 | # Console UART Setup | ||
228 | # | ||
229 | # CONFIG_BAUD_9600 is not set | ||
230 | # CONFIG_BAUD_19200 is not set | ||
231 | # CONFIG_BAUD_38400 is not set | ||
232 | CONFIG_BAUD_57600=y | ||
233 | # CONFIG_BAUD_115200 is not set | ||
234 | CONFIG_BAUD_NO_PARITY=y | ||
235 | # CONFIG_BAUD_PARITY is not set | ||
236 | CONFIG_BAUD_1_STOPBIT=y | ||
237 | # CONFIG_BAUD_2_STOPBIT is not set | ||
238 | |||
239 | # | ||
240 | # Blackfin Kernel Optimizations | ||
241 | # | ||
242 | |||
243 | # | ||
244 | # Timer Tick | ||
245 | # | ||
246 | # CONFIG_HZ_100 is not set | ||
247 | CONFIG_HZ_250=y | ||
248 | # CONFIG_HZ_1000 is not set | ||
249 | CONFIG_HZ=250 | ||
250 | |||
251 | # | ||
252 | # Memory Optimizations | ||
253 | # | ||
254 | CONFIG_I_ENTRY_L1=y | ||
255 | CONFIG_EXCPT_IRQ_SYSC_L1=y | ||
256 | CONFIG_DO_IRQ_L1=y | ||
257 | CONFIG_CORE_TIMER_IRQ_L1=y | ||
258 | CONFIG_IDLE_L1=y | ||
259 | CONFIG_SCHEDULE_L1=y | ||
260 | CONFIG_ARITHMETIC_OPS_L1=y | ||
261 | CONFIG_ACCESS_OK_L1=y | ||
262 | CONFIG_MEMSET_L1=y | ||
263 | CONFIG_MEMCPY_L1=y | ||
264 | CONFIG_SYS_BFIN_SPINLOCK_L1=y | ||
265 | # CONFIG_IP_CHECKSUM_L1 is not set | ||
266 | # CONFIG_SYSCALL_TAB_L1 is not set | ||
267 | # CONFIG_CPLB_SWITCH_TAB_L1 is not set | ||
268 | CONFIG_RAMKERNEL=y | ||
269 | # CONFIG_ROMKERNEL is not set | ||
270 | CONFIG_SELECT_MEMORY_MODEL=y | ||
271 | CONFIG_FLATMEM_MANUAL=y | ||
272 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
273 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
274 | CONFIG_FLATMEM=y | ||
275 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
276 | # CONFIG_SPARSEMEM_STATIC is not set | ||
277 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
278 | # CONFIG_RESOURCES_64BIT is not set | ||
279 | CONFIG_LARGE_ALLOCS=y | ||
280 | CONFIG_BFIN_DMA_5XX=y | ||
281 | # CONFIG_DMA_UNCACHED_2M is not set | ||
282 | CONFIG_DMA_UNCACHED_1M=y | ||
283 | # CONFIG_DMA_UNCACHED_NONE is not set | ||
284 | |||
285 | # | ||
286 | # Cache Support | ||
287 | # | ||
288 | CONFIG_BLKFIN_CACHE=y | ||
289 | CONFIG_BLKFIN_DCACHE=y | ||
290 | # CONFIG_BLKFIN_DCACHE_BANKA is not set | ||
291 | # CONFIG_BLKFIN_CACHE_LOCK is not set | ||
292 | # CONFIG_BLKFIN_WB is not set | ||
293 | CONFIG_BLKFIN_WT=y | ||
294 | CONFIG_L1_MAX_PIECE=16 | ||
295 | |||
296 | # | ||
297 | # Clock Settings | ||
298 | # | ||
299 | # CONFIG_BFIN_KERNEL_CLOCK is not set | ||
300 | |||
301 | # | ||
302 | # Asynchonous Memory Configuration | ||
303 | # | ||
304 | |||
305 | # | ||
306 | # EBIU_AMBCTL Global Control | ||
307 | # | ||
308 | CONFIG_C_AMCKEN=y | ||
309 | CONFIG_C_CDPRIO=y | ||
310 | CONFIG_C_B0PEN=y | ||
311 | CONFIG_C_B1PEN=y | ||
312 | CONFIG_C_B2PEN=y | ||
313 | # CONFIG_C_B3PEN is not set | ||
314 | # CONFIG_C_AMBEN is not set | ||
315 | # CONFIG_C_AMBEN_B0 is not set | ||
316 | # CONFIG_C_AMBEN_B0_B1 is not set | ||
317 | # CONFIG_C_AMBEN_B0_B1_B2 is not set | ||
318 | CONFIG_C_AMBEN_ALL=y | ||
319 | |||
320 | # | ||
321 | # EBIU_AMBCTL Control | ||
322 | # | ||
323 | CONFIG_BANK_0=0x7BB0 | ||
324 | CONFIG_BANK_1=0x7BB0 | ||
325 | CONFIG_BANK_2=0x7BB0 | ||
326 | CONFIG_BANK_3=0x99B3 | ||
327 | |||
328 | # | ||
329 | # Bus options (PCI, PCMCIA, EISA, MCA, ISA) | ||
330 | # | ||
331 | # CONFIG_PCI is not set | ||
332 | |||
333 | # | ||
334 | # PCCARD (PCMCIA/CardBus) support | ||
335 | # | ||
336 | # CONFIG_PCCARD is not set | ||
337 | |||
338 | # | ||
339 | # PCI Hotplug Support | ||
340 | # | ||
341 | |||
342 | # | ||
343 | # Executable file formats | ||
344 | # | ||
345 | CONFIG_BINFMT_ELF_FDPIC=y | ||
346 | CONFIG_BINFMT_FLAT=y | ||
347 | CONFIG_BINFMT_ZFLAT=y | ||
348 | # CONFIG_BINFMT_SHARED_FLAT is not set | ||
349 | # CONFIG_BINFMT_MISC is not set | ||
350 | |||
351 | # | ||
352 | # Power management options | ||
353 | # | ||
354 | # CONFIG_PM is not set | ||
355 | |||
356 | # | ||
357 | # Networking | ||
358 | # | ||
359 | CONFIG_NET=y | ||
360 | |||
361 | # | ||
362 | # Networking options | ||
363 | # | ||
364 | # CONFIG_NETDEBUG is not set | ||
365 | CONFIG_PACKET=y | ||
366 | # CONFIG_PACKET_MMAP is not set | ||
367 | CONFIG_UNIX=y | ||
368 | CONFIG_XFRM=y | ||
369 | # CONFIG_XFRM_USER is not set | ||
370 | # CONFIG_XFRM_SUB_POLICY is not set | ||
371 | # CONFIG_NET_KEY is not set | ||
372 | CONFIG_INET=y | ||
373 | # CONFIG_IP_MULTICAST is not set | ||
374 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
375 | CONFIG_IP_FIB_HASH=y | ||
376 | CONFIG_IP_PNP=y | ||
377 | # CONFIG_IP_PNP_DHCP is not set | ||
378 | # CONFIG_IP_PNP_BOOTP is not set | ||
379 | # CONFIG_IP_PNP_RARP is not set | ||
380 | # CONFIG_NET_IPIP is not set | ||
381 | # CONFIG_NET_IPGRE is not set | ||
382 | # CONFIG_ARPD is not set | ||
383 | CONFIG_SYN_COOKIES=y | ||
384 | # CONFIG_INET_AH is not set | ||
385 | # CONFIG_INET_ESP is not set | ||
386 | # CONFIG_INET_IPCOMP is not set | ||
387 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
388 | # CONFIG_INET_TUNNEL is not set | ||
389 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
390 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
391 | CONFIG_INET_XFRM_MODE_BEET=y | ||
392 | CONFIG_INET_DIAG=y | ||
393 | CONFIG_INET_TCP_DIAG=y | ||
394 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
395 | CONFIG_TCP_CONG_CUBIC=y | ||
396 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
397 | # CONFIG_IPV6 is not set | ||
398 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
399 | # CONFIG_INET6_TUNNEL is not set | ||
400 | # CONFIG_NETLABEL is not set | ||
401 | # CONFIG_NETWORK_SECMARK is not set | ||
402 | # CONFIG_NETFILTER is not set | ||
403 | |||
404 | # | ||
405 | # DCCP Configuration (EXPERIMENTAL) | ||
406 | # | ||
407 | # CONFIG_IP_DCCP is not set | ||
408 | |||
409 | # | ||
410 | # SCTP Configuration (EXPERIMENTAL) | ||
411 | # | ||
412 | # CONFIG_IP_SCTP is not set | ||
413 | |||
414 | # | ||
415 | # TIPC Configuration (EXPERIMENTAL) | ||
416 | # | ||
417 | # CONFIG_TIPC is not set | ||
418 | # CONFIG_ATM is not set | ||
419 | # CONFIG_BRIDGE is not set | ||
420 | # CONFIG_VLAN_8021Q is not set | ||
421 | # CONFIG_DECNET is not set | ||
422 | # CONFIG_LLC2 is not set | ||
423 | # CONFIG_IPX is not set | ||
424 | # CONFIG_ATALK is not set | ||
425 | # CONFIG_X25 is not set | ||
426 | # CONFIG_LAPB is not set | ||
427 | # CONFIG_ECONET is not set | ||
428 | # CONFIG_WAN_ROUTER is not set | ||
429 | |||
430 | # | ||
431 | # QoS and/or fair queueing | ||
432 | # | ||
433 | # CONFIG_NET_SCHED is not set | ||
434 | |||
435 | # | ||
436 | # Network testing | ||
437 | # | ||
438 | # CONFIG_NET_PKTGEN is not set | ||
439 | # CONFIG_HAMRADIO is not set | ||
440 | # CONFIG_IRDA is not set | ||
441 | # CONFIG_BT is not set | ||
442 | # CONFIG_IEEE80211 is not set | ||
443 | |||
444 | # | ||
445 | # Device Drivers | ||
446 | # | ||
447 | |||
448 | # | ||
449 | # Generic Driver Options | ||
450 | # | ||
451 | CONFIG_STANDALONE=y | ||
452 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
453 | # CONFIG_FW_LOADER is not set | ||
454 | # CONFIG_SYS_HYPERVISOR is not set | ||
455 | |||
456 | # | ||
457 | # Connector - unified userspace <-> kernelspace linker | ||
458 | # | ||
459 | # CONFIG_CONNECTOR is not set | ||
460 | |||
461 | # | ||
462 | # Memory Technology Devices (MTD) | ||
463 | # | ||
464 | CONFIG_MTD=y | ||
465 | # CONFIG_MTD_DEBUG is not set | ||
466 | # CONFIG_MTD_CONCAT is not set | ||
467 | CONFIG_MTD_PARTITIONS=y | ||
468 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
469 | # CONFIG_MTD_CMDLINE_PARTS is not set | ||
470 | |||
471 | # | ||
472 | # User Modules And Translation Layers | ||
473 | # | ||
474 | CONFIG_MTD_CHAR=m | ||
475 | CONFIG_MTD_BLOCK=y | ||
476 | # CONFIG_FTL is not set | ||
477 | # CONFIG_NFTL is not set | ||
478 | # CONFIG_INFTL is not set | ||
479 | # CONFIG_RFD_FTL is not set | ||
480 | # CONFIG_SSFDC is not set | ||
481 | |||
482 | # | ||
483 | # RAM/ROM/Flash chip drivers | ||
484 | # | ||
485 | # CONFIG_MTD_CFI is not set | ||
486 | CONFIG_MTD_JEDECPROBE=m | ||
487 | CONFIG_MTD_GEN_PROBE=m | ||
488 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
489 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
490 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
491 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
492 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
493 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
494 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
495 | CONFIG_MTD_CFI_I1=y | ||
496 | CONFIG_MTD_CFI_I2=y | ||
497 | # CONFIG_MTD_CFI_I4 is not set | ||
498 | # CONFIG_MTD_CFI_I8 is not set | ||
499 | # CONFIG_MTD_CFI_INTELEXT is not set | ||
500 | # CONFIG_MTD_CFI_AMDSTD is not set | ||
501 | # CONFIG_MTD_CFI_STAA is not set | ||
502 | CONFIG_MTD_MW320D=m | ||
503 | CONFIG_MTD_RAM=y | ||
504 | CONFIG_MTD_ROM=m | ||
505 | # CONFIG_MTD_ABSENT is not set | ||
506 | # CONFIG_MTD_OBSOLETE_CHIPS is not set | ||
507 | |||
508 | # | ||
509 | # Mapping drivers for chip access | ||
510 | # | ||
511 | CONFIG_MTD_COMPLEX_MAPPINGS=y | ||
512 | # CONFIG_MTD_PHYSMAP is not set | ||
513 | # CONFIG_MTD_EZKIT561 is not set | ||
514 | CONFIG_MTD_BF5xx=m | ||
515 | CONFIG_BFIN_FLASH_SIZE=0x0400000 | ||
516 | CONFIG_EBIU_FLASH_BASE=0x20000000 | ||
517 | |||
518 | # | ||
519 | # FLASH_EBIU_AMBCTL Control | ||
520 | # | ||
521 | CONFIG_BFIN_FLASH_BANK_0=0x7BB0 | ||
522 | CONFIG_BFIN_FLASH_BANK_1=0x7BB0 | ||
523 | CONFIG_BFIN_FLASH_BANK_2=0x7BB0 | ||
524 | CONFIG_BFIN_FLASH_BANK_3=0x7BB0 | ||
525 | # CONFIG_MTD_UCLINUX is not set | ||
526 | # CONFIG_MTD_PLATRAM is not set | ||
527 | |||
528 | # | ||
529 | # Self-contained MTD device drivers | ||
530 | # | ||
531 | # CONFIG_MTD_SLRAM is not set | ||
532 | # CONFIG_MTD_PHRAM is not set | ||
533 | # CONFIG_MTD_MTDRAM is not set | ||
534 | # CONFIG_MTD_BLOCK2MTD is not set | ||
535 | |||
536 | # | ||
537 | # Disk-On-Chip Device Drivers | ||
538 | # | ||
539 | # CONFIG_MTD_DOC2000 is not set | ||
540 | # CONFIG_MTD_DOC2001 is not set | ||
541 | # CONFIG_MTD_DOC2001PLUS is not set | ||
542 | |||
543 | # | ||
544 | # NAND Flash Device Drivers | ||
545 | # | ||
546 | # CONFIG_MTD_NAND is not set | ||
547 | |||
548 | # | ||
549 | # OneNAND Flash Device Drivers | ||
550 | # | ||
551 | # CONFIG_MTD_ONENAND is not set | ||
552 | |||
553 | # | ||
554 | # Parallel port support | ||
555 | # | ||
556 | # CONFIG_PARPORT is not set | ||
557 | |||
558 | # | ||
559 | # Plug and Play support | ||
560 | # | ||
561 | |||
562 | # | ||
563 | # Block devices | ||
564 | # | ||
565 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
566 | # CONFIG_BLK_DEV_LOOP is not set | ||
567 | # CONFIG_BLK_DEV_NBD is not set | ||
568 | CONFIG_BLK_DEV_RAM=y | ||
569 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
570 | CONFIG_BLK_DEV_RAM_SIZE=4096 | ||
571 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
572 | # CONFIG_BLK_DEV_INITRD is not set | ||
573 | # CONFIG_CDROM_PKTCDVD is not set | ||
574 | # CONFIG_ATA_OVER_ETH is not set | ||
575 | |||
576 | # | ||
577 | # Misc devices | ||
578 | # | ||
579 | # CONFIG_TIFM_CORE is not set | ||
580 | |||
581 | # | ||
582 | # ATA/ATAPI/MFM/RLL support | ||
583 | # | ||
584 | # CONFIG_IDE is not set | ||
585 | |||
586 | # | ||
587 | # SCSI device support | ||
588 | # | ||
589 | # CONFIG_RAID_ATTRS is not set | ||
590 | # CONFIG_SCSI is not set | ||
591 | # CONFIG_SCSI_NETLINK is not set | ||
592 | |||
593 | # | ||
594 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | ||
595 | # | ||
596 | # CONFIG_ATA is not set | ||
597 | |||
598 | # | ||
599 | # Multi-device support (RAID and LVM) | ||
600 | # | ||
601 | # CONFIG_MD is not set | ||
602 | |||
603 | # | ||
604 | # Fusion MPT device support | ||
605 | # | ||
606 | # CONFIG_FUSION is not set | ||
607 | |||
608 | # | ||
609 | # IEEE 1394 (FireWire) support | ||
610 | # | ||
611 | |||
612 | # | ||
613 | # I2O device support | ||
614 | # | ||
615 | |||
616 | # | ||
617 | # Network device support | ||
618 | # | ||
619 | CONFIG_NETDEVICES=y | ||
620 | # CONFIG_DUMMY is not set | ||
621 | # CONFIG_BONDING is not set | ||
622 | # CONFIG_EQUALIZER is not set | ||
623 | # CONFIG_TUN is not set | ||
624 | |||
625 | # | ||
626 | # PHY device support | ||
627 | # | ||
628 | # CONFIG_PHYLIB is not set | ||
629 | |||
630 | # | ||
631 | # Ethernet (10 or 100Mbit) | ||
632 | # | ||
633 | CONFIG_NET_ETHERNET=y | ||
634 | CONFIG_MII=y | ||
635 | CONFIG_SMC91X=y | ||
636 | |||
637 | # | ||
638 | # Ethernet (1000 Mbit) | ||
639 | # | ||
640 | |||
641 | # | ||
642 | # Ethernet (10000 Mbit) | ||
643 | # | ||
644 | |||
645 | # | ||
646 | # Token Ring devices | ||
647 | # | ||
648 | |||
649 | # | ||
650 | # Wireless LAN (non-hamradio) | ||
651 | # | ||
652 | # CONFIG_NET_RADIO is not set | ||
653 | |||
654 | # | ||
655 | # Wan interfaces | ||
656 | # | ||
657 | # CONFIG_WAN is not set | ||
658 | # CONFIG_PPP is not set | ||
659 | # CONFIG_SLIP is not set | ||
660 | # CONFIG_SHAPER is not set | ||
661 | # CONFIG_NETCONSOLE is not set | ||
662 | # CONFIG_NETPOLL is not set | ||
663 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
664 | |||
665 | # | ||
666 | # ISDN subsystem | ||
667 | # | ||
668 | # CONFIG_ISDN is not set | ||
669 | |||
670 | # | ||
671 | # Telephony Support | ||
672 | # | ||
673 | # CONFIG_PHONE is not set | ||
674 | |||
675 | # | ||
676 | # Input device support | ||
677 | # | ||
678 | # CONFIG_INPUT is not set | ||
679 | |||
680 | # | ||
681 | # Hardware I/O ports | ||
682 | # | ||
683 | # CONFIG_SERIO is not set | ||
684 | # CONFIG_GAMEPORT is not set | ||
685 | |||
686 | # | ||
687 | # Character devices | ||
688 | # | ||
689 | # CONFIG_AD9960 is not set | ||
690 | # CONFIG_SPI_ADC_BF533 is not set | ||
691 | # CONFIG_BF533_PFLAGS is not set | ||
692 | # CONFIG_BF5xx_PPIFCD is not set | ||
693 | # CONFIG_BF5xx_TIMERS is not set | ||
694 | # CONFIG_BF5xx_PPI is not set | ||
695 | # CONFIG_BFIN_SPORT is not set | ||
696 | # CONFIG_BFIN_TIMER_LATENCY is not set | ||
697 | # CONFIG_VT is not set | ||
698 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
699 | |||
700 | # | ||
701 | # Serial drivers | ||
702 | # | ||
703 | # CONFIG_SERIAL_8250 is not set | ||
704 | |||
705 | # | ||
706 | # Non-8250 serial port support | ||
707 | # | ||
708 | CONFIG_SERIAL_BFIN=y | ||
709 | CONFIG_SERIAL_BFIN_CONSOLE=y | ||
710 | CONFIG_SERIAL_BFIN_DMA=y | ||
711 | # CONFIG_SERIAL_BFIN_PIO is not set | ||
712 | CONFIG_SERIAL_BFIN_UART0=y | ||
713 | # CONFIG_BFIN_UART0_CTSRTS is not set | ||
714 | CONFIG_SERIAL_CORE=y | ||
715 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
716 | # CONFIG_SERIAL_BFIN_SPORT is not set | ||
717 | CONFIG_UNIX98_PTYS=y | ||
718 | # CONFIG_LEGACY_PTYS is not set | ||
719 | |||
720 | # | ||
721 | # CAN, the car bus and industrial fieldbus | ||
722 | # | ||
723 | # CONFIG_CAN4LINUX is not set | ||
724 | |||
725 | # | ||
726 | # IPMI | ||
727 | # | ||
728 | # CONFIG_IPMI_HANDLER is not set | ||
729 | |||
730 | # | ||
731 | # Watchdog Cards | ||
732 | # | ||
733 | # CONFIG_WATCHDOG is not set | ||
734 | CONFIG_HW_RANDOM=y | ||
735 | # CONFIG_GEN_RTC is not set | ||
736 | # CONFIG_BLACKFIN_DPMC is not set | ||
737 | # CONFIG_DTLK is not set | ||
738 | # CONFIG_R3964 is not set | ||
739 | |||
740 | # | ||
741 | # Ftape, the floppy tape device driver | ||
742 | # | ||
743 | # CONFIG_RAW_DRIVER is not set | ||
744 | |||
745 | # | ||
746 | # TPM devices | ||
747 | # | ||
748 | # CONFIG_TCG_TPM is not set | ||
749 | |||
750 | # | ||
751 | # I2C support | ||
752 | # | ||
753 | # CONFIG_I2C is not set | ||
754 | |||
755 | # | ||
756 | # SPI support | ||
757 | # | ||
758 | # CONFIG_SPI is not set | ||
759 | # CONFIG_SPI_MASTER is not set | ||
760 | |||
761 | # | ||
762 | # Dallas's 1-wire bus | ||
763 | # | ||
764 | # CONFIG_W1 is not set | ||
765 | |||
766 | # | ||
767 | # Hardware Monitoring support | ||
768 | # | ||
769 | CONFIG_HWMON=y | ||
770 | # CONFIG_HWMON_VID is not set | ||
771 | # CONFIG_SENSORS_ABITUGURU is not set | ||
772 | # CONFIG_SENSORS_F71805F is not set | ||
773 | # CONFIG_SENSORS_VT1211 is not set | ||
774 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
775 | |||
776 | # | ||
777 | # Multimedia devices | ||
778 | # | ||
779 | # CONFIG_VIDEO_DEV is not set | ||
780 | |||
781 | # | ||
782 | # Digital Video Broadcasting Devices | ||
783 | # | ||
784 | # CONFIG_DVB is not set | ||
785 | |||
786 | # | ||
787 | # Graphics support | ||
788 | # | ||
789 | CONFIG_FIRMWARE_EDID=y | ||
790 | # CONFIG_FB is not set | ||
791 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
792 | |||
793 | # | ||
794 | # Sound | ||
795 | # | ||
796 | # CONFIG_SOUND is not set | ||
797 | |||
798 | # | ||
799 | # USB support | ||
800 | # | ||
801 | CONFIG_USB_ARCH_HAS_HCD=y | ||
802 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
803 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
804 | # CONFIG_USB is not set | ||
805 | |||
806 | # | ||
807 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
808 | # | ||
809 | |||
810 | # | ||
811 | # USB Gadget Support | ||
812 | # | ||
813 | # CONFIG_USB_GADGET is not set | ||
814 | |||
815 | # | ||
816 | # MMC/SD Card support | ||
817 | # | ||
818 | # CONFIG_MMC is not set | ||
819 | |||
820 | # | ||
821 | # LED devices | ||
822 | # | ||
823 | # CONFIG_NEW_LEDS is not set | ||
824 | |||
825 | # | ||
826 | # LED drivers | ||
827 | # | ||
828 | |||
829 | # | ||
830 | # LED Triggers | ||
831 | # | ||
832 | |||
833 | # | ||
834 | # InfiniBand support | ||
835 | # | ||
836 | |||
837 | # | ||
838 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) | ||
839 | # | ||
840 | |||
841 | # | ||
842 | # Real Time Clock | ||
843 | # | ||
844 | # CONFIG_RTC_CLASS is not set | ||
845 | |||
846 | # | ||
847 | # DMA Engine support | ||
848 | # | ||
849 | # CONFIG_DMA_ENGINE is not set | ||
850 | |||
851 | # | ||
852 | # DMA Clients | ||
853 | # | ||
854 | |||
855 | # | ||
856 | # DMA Devices | ||
857 | # | ||
858 | |||
859 | # | ||
860 | # PBX support | ||
861 | # | ||
862 | # CONFIG_PBX is not set | ||
863 | |||
864 | # | ||
865 | # File systems | ||
866 | # | ||
867 | CONFIG_EXT2_FS=y | ||
868 | CONFIG_EXT2_FS_XATTR=y | ||
869 | # CONFIG_EXT2_FS_POSIX_ACL is not set | ||
870 | # CONFIG_EXT2_FS_SECURITY is not set | ||
871 | # CONFIG_EXT3_FS is not set | ||
872 | # CONFIG_EXT4DEV_FS is not set | ||
873 | CONFIG_FS_MBCACHE=y | ||
874 | # CONFIG_REISERFS_FS is not set | ||
875 | # CONFIG_JFS_FS is not set | ||
876 | # CONFIG_FS_POSIX_ACL is not set | ||
877 | # CONFIG_XFS_FS is not set | ||
878 | # CONFIG_GFS2_FS is not set | ||
879 | # CONFIG_OCFS2_FS is not set | ||
880 | # CONFIG_MINIX_FS is not set | ||
881 | # CONFIG_ROMFS_FS is not set | ||
882 | CONFIG_INOTIFY=y | ||
883 | CONFIG_INOTIFY_USER=y | ||
884 | # CONFIG_QUOTA is not set | ||
885 | CONFIG_DNOTIFY=y | ||
886 | # CONFIG_AUTOFS_FS is not set | ||
887 | # CONFIG_AUTOFS4_FS is not set | ||
888 | # CONFIG_FUSE_FS is not set | ||
889 | |||
890 | # | ||
891 | # CD-ROM/DVD Filesystems | ||
892 | # | ||
893 | # CONFIG_ISO9660_FS is not set | ||
894 | # CONFIG_UDF_FS is not set | ||
895 | |||
896 | # | ||
897 | # DOS/FAT/NT Filesystems | ||
898 | # | ||
899 | # CONFIG_MSDOS_FS is not set | ||
900 | # CONFIG_VFAT_FS is not set | ||
901 | # CONFIG_NTFS_FS is not set | ||
902 | |||
903 | # | ||
904 | # Pseudo filesystems | ||
905 | # | ||
906 | CONFIG_PROC_FS=y | ||
907 | CONFIG_PROC_SYSCTL=y | ||
908 | CONFIG_SYSFS=y | ||
909 | # CONFIG_TMPFS is not set | ||
910 | # CONFIG_HUGETLB_PAGE is not set | ||
911 | CONFIG_RAMFS=y | ||
912 | # CONFIG_CONFIGFS_FS is not set | ||
913 | |||
914 | # | ||
915 | # Miscellaneous filesystems | ||
916 | # | ||
917 | # CONFIG_ADFS_FS is not set | ||
918 | # CONFIG_AFFS_FS is not set | ||
919 | # CONFIG_HFS_FS is not set | ||
920 | # CONFIG_HFSPLUS_FS is not set | ||
921 | # CONFIG_BEFS_FS is not set | ||
922 | # CONFIG_BFS_FS is not set | ||
923 | # CONFIG_EFS_FS is not set | ||
924 | CONFIG_YAFFS_FS=m | ||
925 | CONFIG_YAFFS_YAFFS1=y | ||
926 | # CONFIG_YAFFS_DOES_ECC is not set | ||
927 | CONFIG_YAFFS_YAFFS2=y | ||
928 | CONFIG_YAFFS_AUTO_YAFFS2=y | ||
929 | # CONFIG_YAFFS_DISABLE_LAZY_LOAD is not set | ||
930 | CONFIG_YAFFS_CHECKPOINT_RESERVED_BLOCKS=10 | ||
931 | # CONFIG_YAFFS_DISABLE_WIDE_TNODES is not set | ||
932 | # CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED is not set | ||
933 | CONFIG_YAFFS_SHORT_NAMES_IN_RAM=y | ||
934 | # CONFIG_JFFS_FS is not set | ||
935 | CONFIG_JFFS2_FS=m | ||
936 | CONFIG_JFFS2_FS_DEBUG=0 | ||
937 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
938 | # CONFIG_JFFS2_SUMMARY is not set | ||
939 | # CONFIG_JFFS2_FS_XATTR is not set | ||
940 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
941 | CONFIG_JFFS2_ZLIB=y | ||
942 | CONFIG_JFFS2_RTIME=y | ||
943 | # CONFIG_JFFS2_RUBIN is not set | ||
944 | # CONFIG_CRAMFS is not set | ||
945 | # CONFIG_VXFS_FS is not set | ||
946 | # CONFIG_HPFS_FS is not set | ||
947 | # CONFIG_QNX4FS_FS is not set | ||
948 | # CONFIG_SYSV_FS is not set | ||
949 | # CONFIG_UFS_FS is not set | ||
950 | |||
951 | # | ||
952 | # Network File Systems | ||
953 | # | ||
954 | CONFIG_NFS_FS=m | ||
955 | CONFIG_NFS_V3=y | ||
956 | # CONFIG_NFS_V3_ACL is not set | ||
957 | # CONFIG_NFS_V4 is not set | ||
958 | # CONFIG_NFS_DIRECTIO is not set | ||
959 | # CONFIG_NFSD is not set | ||
960 | CONFIG_LOCKD=m | ||
961 | CONFIG_LOCKD_V4=y | ||
962 | CONFIG_NFS_COMMON=y | ||
963 | CONFIG_SUNRPC=m | ||
964 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
965 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
966 | CONFIG_SMB_FS=m | ||
967 | # CONFIG_SMB_NLS_DEFAULT is not set | ||
968 | # CONFIG_CIFS is not set | ||
969 | # CONFIG_NCP_FS is not set | ||
970 | # CONFIG_CODA_FS is not set | ||
971 | # CONFIG_AFS_FS is not set | ||
972 | # CONFIG_9P_FS is not set | ||
973 | |||
974 | # | ||
975 | # Partition Types | ||
976 | # | ||
977 | # CONFIG_PARTITION_ADVANCED is not set | ||
978 | CONFIG_MSDOS_PARTITION=y | ||
979 | |||
980 | # | ||
981 | # Native Language Support | ||
982 | # | ||
983 | CONFIG_NLS=m | ||
984 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
985 | # CONFIG_NLS_CODEPAGE_437 is not set | ||
986 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
987 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
988 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
989 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
990 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
991 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
992 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
993 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
994 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
995 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
996 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
997 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
998 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
999 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
1000 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
1001 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
1002 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
1003 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
1004 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
1005 | # CONFIG_NLS_ISO8859_8 is not set | ||
1006 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
1007 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
1008 | # CONFIG_NLS_ASCII is not set | ||
1009 | # CONFIG_NLS_ISO8859_1 is not set | ||
1010 | # CONFIG_NLS_ISO8859_2 is not set | ||
1011 | # CONFIG_NLS_ISO8859_3 is not set | ||
1012 | # CONFIG_NLS_ISO8859_4 is not set | ||
1013 | # CONFIG_NLS_ISO8859_5 is not set | ||
1014 | # CONFIG_NLS_ISO8859_6 is not set | ||
1015 | # CONFIG_NLS_ISO8859_7 is not set | ||
1016 | # CONFIG_NLS_ISO8859_9 is not set | ||
1017 | # CONFIG_NLS_ISO8859_13 is not set | ||
1018 | # CONFIG_NLS_ISO8859_14 is not set | ||
1019 | # CONFIG_NLS_ISO8859_15 is not set | ||
1020 | # CONFIG_NLS_KOI8_R is not set | ||
1021 | # CONFIG_NLS_KOI8_U is not set | ||
1022 | # CONFIG_NLS_UTF8 is not set | ||
1023 | |||
1024 | # | ||
1025 | # Profiling support | ||
1026 | # | ||
1027 | # CONFIG_PROFILING is not set | ||
1028 | |||
1029 | # | ||
1030 | # Kernel hacking | ||
1031 | # | ||
1032 | # CONFIG_PRINTK_TIME is not set | ||
1033 | CONFIG_ENABLE_MUST_CHECK=y | ||
1034 | # CONFIG_MAGIC_SYSRQ is not set | ||
1035 | # CONFIG_UNUSED_SYMBOLS is not set | ||
1036 | # CONFIG_DEBUG_KERNEL is not set | ||
1037 | CONFIG_LOG_BUF_SHIFT=14 | ||
1038 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
1039 | # CONFIG_DEBUG_FS is not set | ||
1040 | # CONFIG_UNWIND_INFO is not set | ||
1041 | # CONFIG_HEADERS_CHECK is not set | ||
1042 | # CONFIG_DEBUG_SERIAL_EARLY_INIT is not set | ||
1043 | CONFIG_DEBUG_HUNT_FOR_ZERO=y | ||
1044 | # CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE is not set | ||
1045 | # CONFIG_DUAL_CORE_TEST_MODULE is not set | ||
1046 | # CONFIG_BOOTPARAM is not set | ||
1047 | # CONFIG_NO_KERNEL_MSG is not set | ||
1048 | CONFIG_CPLB_INFO=y | ||
1049 | # CONFIG_NO_ACCESS_CHECK is not set | ||
1050 | |||
1051 | # | ||
1052 | # Security options | ||
1053 | # | ||
1054 | # CONFIG_KEYS is not set | ||
1055 | CONFIG_SECURITY=y | ||
1056 | # CONFIG_SECURITY_NETWORK is not set | ||
1057 | CONFIG_SECURITY_CAPABILITIES=y | ||
1058 | |||
1059 | # | ||
1060 | # Cryptographic options | ||
1061 | # | ||
1062 | # CONFIG_CRYPTO is not set | ||
1063 | |||
1064 | # | ||
1065 | # Library routines | ||
1066 | # | ||
1067 | # CONFIG_CRC_CCITT is not set | ||
1068 | # CONFIG_CRC16 is not set | ||
1069 | CONFIG_CRC32=y | ||
1070 | # CONFIG_LIBCRC32C is not set | ||
1071 | CONFIG_ZLIB_INFLATE=y | ||
1072 | CONFIG_ZLIB_DEFLATE=m | ||
1073 | CONFIG_PLIST=y | ||
diff --git a/arch/blackfin/configs/PNAV-10_defconfig b/arch/blackfin/configs/PNAV-10_defconfig new file mode 100644 index 000000000000..97b4ffa2b4ac --- /dev/null +++ b/arch/blackfin/configs/PNAV-10_defconfig | |||
@@ -0,0 +1,1253 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.19.3 | ||
4 | # | ||
5 | # CONFIG_MMU is not set | ||
6 | # CONFIG_FPU is not set | ||
7 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
8 | # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set | ||
9 | CONFIG_BLACKFIN=y | ||
10 | CONFIG_BFIN=y | ||
11 | CONFIG_SEMAPHORE_SLEEPERS=y | ||
12 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
13 | CONFIG_GENERIC_HWEIGHT=y | ||
14 | CONFIG_GENERIC_HARDIRQS=y | ||
15 | CONFIG_GENERIC_IRQ_PROBE=y | ||
16 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
17 | CONFIG_UCLINUX=y | ||
18 | CONFIG_FORCE_MAX_ZONEORDER=14 | ||
19 | CONFIG_IRQCHIP_DEMUX_GPIO=y | ||
20 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
21 | |||
22 | # | ||
23 | # Code maturity level options | ||
24 | # | ||
25 | CONFIG_EXPERIMENTAL=y | ||
26 | CONFIG_BROKEN_ON_SMP=y | ||
27 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
28 | |||
29 | # | ||
30 | # General setup | ||
31 | # | ||
32 | CONFIG_LOCALVERSION="" | ||
33 | CONFIG_LOCALVERSION_AUTO=y | ||
34 | CONFIG_SYSVIPC=y | ||
35 | # CONFIG_IPC_NS is not set | ||
36 | # CONFIG_POSIX_MQUEUE is not set | ||
37 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
38 | # CONFIG_TASKSTATS is not set | ||
39 | # CONFIG_UTS_NS is not set | ||
40 | # CONFIG_AUDIT is not set | ||
41 | # CONFIG_IKCONFIG is not set | ||
42 | # CONFIG_RELAY is not set | ||
43 | CONFIG_INITRAMFS_SOURCE="" | ||
44 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
45 | CONFIG_SYSCTL=y | ||
46 | CONFIG_EMBEDDED=y | ||
47 | CONFIG_UID16=y | ||
48 | CONFIG_SYSCTL_SYSCALL=y | ||
49 | CONFIG_KALLSYMS=y | ||
50 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
51 | CONFIG_HOTPLUG=y | ||
52 | CONFIG_PRINTK=y | ||
53 | CONFIG_BUG=y | ||
54 | CONFIG_ELF_CORE=y | ||
55 | CONFIG_BASE_FULL=y | ||
56 | CONFIG_FUTEX=y | ||
57 | CONFIG_EPOLL=y | ||
58 | CONFIG_BIG_ORDER_ALLOC_NOFAIL_MAGIC=9 | ||
59 | # CONFIG_LIMIT_PAGECACHE is not set | ||
60 | CONFIG_BUDDY=y | ||
61 | # CONFIG_NP2 is not set | ||
62 | CONFIG_SLAB=y | ||
63 | CONFIG_VM_EVENT_COUNTERS=y | ||
64 | CONFIG_RT_MUTEXES=y | ||
65 | CONFIG_TINY_SHMEM=y | ||
66 | CONFIG_BASE_SMALL=0 | ||
67 | # CONFIG_SLOB is not set | ||
68 | |||
69 | # | ||
70 | # Loadable module support | ||
71 | # | ||
72 | CONFIG_MODULES=y | ||
73 | CONFIG_MODULE_UNLOAD=y | ||
74 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
75 | # CONFIG_MODVERSIONS is not set | ||
76 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
77 | CONFIG_KMOD=y | ||
78 | |||
79 | # | ||
80 | # Block layer | ||
81 | # | ||
82 | CONFIG_BLOCK=y | ||
83 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
84 | |||
85 | # | ||
86 | # IO Schedulers | ||
87 | # | ||
88 | CONFIG_IOSCHED_NOOP=y | ||
89 | CONFIG_IOSCHED_AS=y | ||
90 | # CONFIG_IOSCHED_DEADLINE is not set | ||
91 | CONFIG_IOSCHED_CFQ=y | ||
92 | CONFIG_DEFAULT_AS=y | ||
93 | # CONFIG_DEFAULT_DEADLINE is not set | ||
94 | # CONFIG_DEFAULT_CFQ is not set | ||
95 | # CONFIG_DEFAULT_NOOP is not set | ||
96 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
97 | # CONFIG_PREEMPT_NONE is not set | ||
98 | CONFIG_PREEMPT_VOLUNTARY=y | ||
99 | # CONFIG_PREEMPT is not set | ||
100 | |||
101 | # | ||
102 | # Blackfin Processor Options | ||
103 | # | ||
104 | |||
105 | # | ||
106 | # Processor and Board Settings | ||
107 | # | ||
108 | # CONFIG_BF531 is not set | ||
109 | # CONFIG_BF532 is not set | ||
110 | # CONFIG_BF533 is not set | ||
111 | # CONFIG_BF534 is not set | ||
112 | # CONFIG_BF535 is not set | ||
113 | # CONFIG_BF536 is not set | ||
114 | CONFIG_BF537=y | ||
115 | # CONFIG_BF561 is not set | ||
116 | CONFIG_BF_REV_0_2=y | ||
117 | # CONFIG_BF_REV_0_3 is not set | ||
118 | # CONFIG_BF_REV_0_4 is not set | ||
119 | # CONFIG_BF_REV_0_5 is not set | ||
120 | CONFIG_BFIN_SINGLE_CORE=y | ||
121 | # CONFIG_BFIN533_EZKIT is not set | ||
122 | # CONFIG_BFIN533_STAMP is not set | ||
123 | # CONFIG_BFIN537_STAMP is not set | ||
124 | # CONFIG_BFIN533_BLUETECHNIX_CM is not set | ||
125 | # CONFIG_BFIN537_BLUETECHNIX_CM is not set | ||
126 | # CONFIG_BFIN561_BLUETECHNIX_CM is not set | ||
127 | # CONFIG_BFIN561_EZKIT is not set | ||
128 | CONFIG_PNAV10=y | ||
129 | # CONFIG_GENERIC_BOARD is not set | ||
130 | CONFIG_MEM_MT48LC32M8A2_75=y | ||
131 | CONFIG_IRQ_PLL_WAKEUP=7 | ||
132 | |||
133 | # | ||
134 | # BF537 Specific Configuration | ||
135 | # | ||
136 | |||
137 | # | ||
138 | # PORT F/G Selection | ||
139 | # | ||
140 | CONFIG_BF537_PORT_F=y | ||
141 | # CONFIG_BF537_PORT_G is not set | ||
142 | # CONFIG_BF537_PORT_H is not set | ||
143 | |||
144 | # | ||
145 | # Interrupt Priority Assignment | ||
146 | # | ||
147 | |||
148 | # | ||
149 | # Priority | ||
150 | # | ||
151 | CONFIG_IRQ_DMA_ERROR=7 | ||
152 | CONFIG_IRQ_ERROR=7 | ||
153 | CONFIG_IRQ_RTC=8 | ||
154 | CONFIG_IRQ_PPI=8 | ||
155 | CONFIG_IRQ_SPORT0_RX=9 | ||
156 | CONFIG_IRQ_SPORT0_TX=9 | ||
157 | CONFIG_IRQ_SPORT1_RX=9 | ||
158 | CONFIG_IRQ_SPORT1_TX=9 | ||
159 | CONFIG_IRQ_TWI=10 | ||
160 | CONFIG_IRQ_SPI=10 | ||
161 | CONFIG_IRQ_UART0_RX=10 | ||
162 | CONFIG_IRQ_UART0_TX=10 | ||
163 | CONFIG_IRQ_UART1_RX=10 | ||
164 | CONFIG_IRQ_UART1_TX=10 | ||
165 | CONFIG_IRQ_CAN_RX=11 | ||
166 | CONFIG_IRQ_CAN_TX=11 | ||
167 | CONFIG_IRQ_MAC_RX=11 | ||
168 | CONFIG_IRQ_MAC_TX=11 | ||
169 | CONFIG_IRQ_TMR0=12 | ||
170 | CONFIG_IRQ_TMR1=12 | ||
171 | CONFIG_IRQ_TMR2=12 | ||
172 | CONFIG_IRQ_TMR3=12 | ||
173 | CONFIG_IRQ_TMR4=12 | ||
174 | CONFIG_IRQ_TMR5=12 | ||
175 | CONFIG_IRQ_TMR6=12 | ||
176 | CONFIG_IRQ_TMR7=12 | ||
177 | CONFIG_IRQ_PROG_INTA=12 | ||
178 | CONFIG_IRQ_PORTG_INTB=12 | ||
179 | CONFIG_IRQ_MEM_DMA0=13 | ||
180 | CONFIG_IRQ_MEM_DMA1=13 | ||
181 | CONFIG_IRQ_WATCH=13 | ||
182 | |||
183 | # | ||
184 | # Board customizations | ||
185 | # | ||
186 | |||
187 | # | ||
188 | # Board Setup | ||
189 | # | ||
190 | CONFIG_CLKIN_HZ=24576000 | ||
191 | CONFIG_MEM_SIZE=64 | ||
192 | CONFIG_MEM_ADD_WIDTH=10 | ||
193 | CONFIG_BOOT_LOAD=0x1000 | ||
194 | |||
195 | # | ||
196 | # Console UART Setup | ||
197 | # | ||
198 | # CONFIG_BAUD_9600 is not set | ||
199 | # CONFIG_BAUD_19200 is not set | ||
200 | # CONFIG_BAUD_38400 is not set | ||
201 | # CONFIG_BAUD_57600 is not set | ||
202 | CONFIG_BAUD_115200=y | ||
203 | CONFIG_BAUD_NO_PARITY=y | ||
204 | # CONFIG_BAUD_PARITY is not set | ||
205 | CONFIG_BAUD_1_STOPBIT=y | ||
206 | # CONFIG_BAUD_2_STOPBIT is not set | ||
207 | |||
208 | # | ||
209 | # Blackfin Kernel Optimizations | ||
210 | # | ||
211 | |||
212 | # | ||
213 | # Timer Tick | ||
214 | # | ||
215 | # CONFIG_HZ_100 is not set | ||
216 | CONFIG_HZ_250=y | ||
217 | # CONFIG_HZ_1000 is not set | ||
218 | CONFIG_HZ=250 | ||
219 | |||
220 | # | ||
221 | # Memory Optimizations | ||
222 | # | ||
223 | CONFIG_I_ENTRY_L1=y | ||
224 | CONFIG_EXCPT_IRQ_SYSC_L1=y | ||
225 | CONFIG_DO_IRQ_L1=y | ||
226 | CONFIG_CORE_TIMER_IRQ_L1=y | ||
227 | CONFIG_IDLE_L1=y | ||
228 | CONFIG_SCHEDULE_L1=y | ||
229 | CONFIG_ARITHMETIC_OPS_L1=y | ||
230 | CONFIG_ACCESS_OK_L1=y | ||
231 | CONFIG_MEMSET_L1=y | ||
232 | CONFIG_MEMCPY_L1=y | ||
233 | CONFIG_SYS_BFIN_SPINLOCK_L1=y | ||
234 | CONFIG_IP_CHECKSUM_L1=y | ||
235 | CONFIG_SYSCALL_TAB_L1=y | ||
236 | CONFIG_CPLB_SWITCH_TAB_L1=y | ||
237 | CONFIG_RAMKERNEL=y | ||
238 | # CONFIG_ROMKERNEL is not set | ||
239 | CONFIG_SELECT_MEMORY_MODEL=y | ||
240 | CONFIG_FLATMEM_MANUAL=y | ||
241 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
242 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
243 | CONFIG_FLATMEM=y | ||
244 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
245 | # CONFIG_SPARSEMEM_STATIC is not set | ||
246 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
247 | # CONFIG_RESOURCES_64BIT is not set | ||
248 | CONFIG_LARGE_ALLOCS=y | ||
249 | CONFIG_BFIN_DMA_5XX=y | ||
250 | # CONFIG_DMA_UNCACHED_2M is not set | ||
251 | CONFIG_DMA_UNCACHED_1M=y | ||
252 | # CONFIG_DMA_UNCACHED_NONE is not set | ||
253 | |||
254 | # | ||
255 | # Cache Support | ||
256 | # | ||
257 | CONFIG_BLKFIN_CACHE=y | ||
258 | CONFIG_BLKFIN_DCACHE=y | ||
259 | # CONFIG_BLKFIN_DCACHE_BANKA is not set | ||
260 | # CONFIG_BLKFIN_CACHE_LOCK is not set | ||
261 | CONFIG_BLKFIN_WB=y | ||
262 | # CONFIG_BLKFIN_WT is not set | ||
263 | CONFIG_L1_MAX_PIECE=16 | ||
264 | |||
265 | # | ||
266 | # Clock Settings | ||
267 | # | ||
268 | # CONFIG_BFIN_KERNEL_CLOCK is not set | ||
269 | |||
270 | # | ||
271 | # Asynchonous Memory Configuration | ||
272 | # | ||
273 | |||
274 | # | ||
275 | # EBIU_AMBCTL Global Control | ||
276 | # | ||
277 | CONFIG_C_AMCKEN=y | ||
278 | CONFIG_C_CDPRIO=y | ||
279 | # CONFIG_C_AMBEN is not set | ||
280 | # CONFIG_C_AMBEN_B0 is not set | ||
281 | # CONFIG_C_AMBEN_B0_B1 is not set | ||
282 | # CONFIG_C_AMBEN_B0_B1_B2 is not set | ||
283 | CONFIG_C_AMBEN_ALL=y | ||
284 | |||
285 | # | ||
286 | # EBIU_AMBCTL Control | ||
287 | # | ||
288 | CONFIG_BANK_0=0x7BB0 | ||
289 | CONFIG_BANK_1=0x33B0 | ||
290 | CONFIG_BANK_2=0x33B0 | ||
291 | CONFIG_BANK_3=0x99B3 | ||
292 | |||
293 | # | ||
294 | # Bus options (PCI, PCMCIA, EISA, MCA, ISA) | ||
295 | # | ||
296 | # CONFIG_PCI is not set | ||
297 | |||
298 | # | ||
299 | # PCCARD (PCMCIA/CardBus) support | ||
300 | # | ||
301 | # CONFIG_PCCARD is not set | ||
302 | |||
303 | # | ||
304 | # PCI Hotplug Support | ||
305 | # | ||
306 | |||
307 | # | ||
308 | # Executable file formats | ||
309 | # | ||
310 | CONFIG_BINFMT_ELF_FDPIC=y | ||
311 | CONFIG_BINFMT_FLAT=y | ||
312 | CONFIG_BINFMT_ZFLAT=y | ||
313 | # CONFIG_BINFMT_SHARED_FLAT is not set | ||
314 | # CONFIG_BINFMT_MISC is not set | ||
315 | |||
316 | # | ||
317 | # Power management options | ||
318 | # | ||
319 | # CONFIG_PM is not set | ||
320 | |||
321 | # | ||
322 | # CPU Frequency scaling | ||
323 | # | ||
324 | # CONFIG_CPU_FREQ is not set | ||
325 | |||
326 | # | ||
327 | # Networking | ||
328 | # | ||
329 | CONFIG_NET=y | ||
330 | |||
331 | # | ||
332 | # Networking options | ||
333 | # | ||
334 | # CONFIG_NETDEBUG is not set | ||
335 | CONFIG_PACKET=y | ||
336 | # CONFIG_PACKET_MMAP is not set | ||
337 | CONFIG_UNIX=y | ||
338 | CONFIG_XFRM=y | ||
339 | # CONFIG_XFRM_USER is not set | ||
340 | # CONFIG_XFRM_SUB_POLICY is not set | ||
341 | # CONFIG_NET_KEY is not set | ||
342 | CONFIG_INET=y | ||
343 | # CONFIG_IP_MULTICAST is not set | ||
344 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
345 | CONFIG_IP_FIB_HASH=y | ||
346 | CONFIG_IP_PNP=y | ||
347 | # CONFIG_IP_PNP_DHCP is not set | ||
348 | # CONFIG_IP_PNP_BOOTP is not set | ||
349 | # CONFIG_IP_PNP_RARP is not set | ||
350 | # CONFIG_NET_IPIP is not set | ||
351 | # CONFIG_NET_IPGRE is not set | ||
352 | # CONFIG_ARPD is not set | ||
353 | CONFIG_SYN_COOKIES=y | ||
354 | # CONFIG_INET_AH is not set | ||
355 | # CONFIG_INET_ESP is not set | ||
356 | # CONFIG_INET_IPCOMP is not set | ||
357 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
358 | # CONFIG_INET_TUNNEL is not set | ||
359 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
360 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
361 | CONFIG_INET_XFRM_MODE_BEET=y | ||
362 | CONFIG_INET_DIAG=y | ||
363 | CONFIG_INET_TCP_DIAG=y | ||
364 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
365 | CONFIG_TCP_CONG_CUBIC=y | ||
366 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
367 | # CONFIG_IPV6 is not set | ||
368 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
369 | # CONFIG_INET6_TUNNEL is not set | ||
370 | # CONFIG_NETLABEL is not set | ||
371 | # CONFIG_NETWORK_SECMARK is not set | ||
372 | # CONFIG_NETFILTER is not set | ||
373 | |||
374 | # | ||
375 | # DCCP Configuration (EXPERIMENTAL) | ||
376 | # | ||
377 | # CONFIG_IP_DCCP is not set | ||
378 | |||
379 | # | ||
380 | # SCTP Configuration (EXPERIMENTAL) | ||
381 | # | ||
382 | # CONFIG_IP_SCTP is not set | ||
383 | |||
384 | # | ||
385 | # TIPC Configuration (EXPERIMENTAL) | ||
386 | # | ||
387 | # CONFIG_TIPC is not set | ||
388 | # CONFIG_ATM is not set | ||
389 | # CONFIG_BRIDGE is not set | ||
390 | # CONFIG_VLAN_8021Q is not set | ||
391 | # CONFIG_DECNET is not set | ||
392 | # CONFIG_LLC2 is not set | ||
393 | # CONFIG_IPX is not set | ||
394 | # CONFIG_ATALK is not set | ||
395 | # CONFIG_X25 is not set | ||
396 | # CONFIG_LAPB is not set | ||
397 | # CONFIG_ECONET is not set | ||
398 | # CONFIG_WAN_ROUTER is not set | ||
399 | |||
400 | # | ||
401 | # QoS and/or fair queueing | ||
402 | # | ||
403 | # CONFIG_NET_SCHED is not set | ||
404 | |||
405 | # | ||
406 | # Network testing | ||
407 | # | ||
408 | # CONFIG_NET_PKTGEN is not set | ||
409 | # CONFIG_HAMRADIO is not set | ||
410 | # CONFIG_IRDA is not set | ||
411 | # CONFIG_BT is not set | ||
412 | # CONFIG_IEEE80211 is not set | ||
413 | |||
414 | # | ||
415 | # Device Drivers | ||
416 | # | ||
417 | |||
418 | # | ||
419 | # Generic Driver Options | ||
420 | # | ||
421 | CONFIG_STANDALONE=y | ||
422 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
423 | # CONFIG_FW_LOADER is not set | ||
424 | # CONFIG_SYS_HYPERVISOR is not set | ||
425 | |||
426 | # | ||
427 | # Connector - unified userspace <-> kernelspace linker | ||
428 | # | ||
429 | # CONFIG_CONNECTOR is not set | ||
430 | |||
431 | # | ||
432 | # Memory Technology Devices (MTD) | ||
433 | # | ||
434 | CONFIG_MTD=y | ||
435 | # CONFIG_MTD_DEBUG is not set | ||
436 | # CONFIG_MTD_CONCAT is not set | ||
437 | CONFIG_MTD_PARTITIONS=y | ||
438 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
439 | # CONFIG_MTD_CMDLINE_PARTS is not set | ||
440 | |||
441 | # | ||
442 | # User Modules And Translation Layers | ||
443 | # | ||
444 | CONFIG_MTD_CHAR=m | ||
445 | CONFIG_MTD_BLOCK=y | ||
446 | # CONFIG_FTL is not set | ||
447 | # CONFIG_NFTL is not set | ||
448 | # CONFIG_INFTL is not set | ||
449 | # CONFIG_RFD_FTL is not set | ||
450 | # CONFIG_SSFDC is not set | ||
451 | |||
452 | # | ||
453 | # RAM/ROM/Flash chip drivers | ||
454 | # | ||
455 | # CONFIG_MTD_CFI is not set | ||
456 | # CONFIG_MTD_JEDECPROBE is not set | ||
457 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
458 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
459 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
460 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
461 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
462 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
463 | CONFIG_MTD_CFI_I1=y | ||
464 | CONFIG_MTD_CFI_I2=y | ||
465 | # CONFIG_MTD_CFI_I4 is not set | ||
466 | # CONFIG_MTD_CFI_I8 is not set | ||
467 | CONFIG_MTD_RAM=y | ||
468 | # CONFIG_MTD_ROM is not set | ||
469 | # CONFIG_MTD_ABSENT is not set | ||
470 | # CONFIG_MTD_OBSOLETE_CHIPS is not set | ||
471 | |||
472 | # | ||
473 | # Mapping drivers for chip access | ||
474 | # | ||
475 | CONFIG_MTD_COMPLEX_MAPPINGS=y | ||
476 | # CONFIG_MTD_BF5xx is not set | ||
477 | CONFIG_MTD_UCLINUX=y | ||
478 | # CONFIG_MTD_PLATRAM is not set | ||
479 | |||
480 | # | ||
481 | # Self-contained MTD device drivers | ||
482 | # | ||
483 | # CONFIG_MTD_DATAFLASH is not set | ||
484 | # CONFIG_MTD_M25P80 is not set | ||
485 | # CONFIG_MTD_SLRAM is not set | ||
486 | # CONFIG_MTD_PHRAM is not set | ||
487 | # CONFIG_MTD_MTDRAM is not set | ||
488 | # CONFIG_MTD_BLOCK2MTD is not set | ||
489 | |||
490 | # | ||
491 | # Disk-On-Chip Device Drivers | ||
492 | # | ||
493 | # CONFIG_MTD_DOC2000 is not set | ||
494 | # CONFIG_MTD_DOC2001 is not set | ||
495 | # CONFIG_MTD_DOC2001PLUS is not set | ||
496 | |||
497 | # | ||
498 | # NAND Flash Device Drivers | ||
499 | # | ||
500 | CONFIG_MTD_NAND=y | ||
501 | # CONFIG_MTD_NAND_VERIFY_WRITE is not set | ||
502 | # CONFIG_MTD_NAND_ECC_SMC is not set | ||
503 | CONFIG_MTD_NAND_BFIN=y | ||
504 | CONFIG_BFIN_NAND_BASE=0x20100000 | ||
505 | CONFIG_BFIN_NAND_CLE=2 | ||
506 | CONFIG_BFIN_NAND_ALE=1 | ||
507 | CONFIG_BFIN_NAND_READY=44 | ||
508 | CONFIG_MTD_NAND_IDS=y | ||
509 | # CONFIG_MTD_NAND_DISKONCHIP is not set | ||
510 | # CONFIG_MTD_NAND_NANDSIM is not set | ||
511 | |||
512 | # | ||
513 | # OneNAND Flash Device Drivers | ||
514 | # | ||
515 | # CONFIG_MTD_ONENAND is not set | ||
516 | |||
517 | # | ||
518 | # Parallel port support | ||
519 | # | ||
520 | # CONFIG_PARPORT is not set | ||
521 | |||
522 | # | ||
523 | # Plug and Play support | ||
524 | # | ||
525 | |||
526 | # | ||
527 | # Block devices | ||
528 | # | ||
529 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
530 | # CONFIG_BLK_DEV_LOOP is not set | ||
531 | # CONFIG_BLK_DEV_NBD is not set | ||
532 | CONFIG_BLK_DEV_RAM=y | ||
533 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
534 | CONFIG_BLK_DEV_RAM_SIZE=4096 | ||
535 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
536 | # CONFIG_BLK_DEV_INITRD is not set | ||
537 | # CONFIG_CDROM_PKTCDVD is not set | ||
538 | # CONFIG_ATA_OVER_ETH is not set | ||
539 | |||
540 | # | ||
541 | # Misc devices | ||
542 | # | ||
543 | # CONFIG_TIFM_CORE is not set | ||
544 | |||
545 | # | ||
546 | # ATA/ATAPI/MFM/RLL support | ||
547 | # | ||
548 | # CONFIG_IDE is not set | ||
549 | |||
550 | # | ||
551 | # SCSI device support | ||
552 | # | ||
553 | # CONFIG_RAID_ATTRS is not set | ||
554 | # CONFIG_SCSI is not set | ||
555 | # CONFIG_SCSI_NETLINK is not set | ||
556 | |||
557 | # | ||
558 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | ||
559 | # | ||
560 | # CONFIG_ATA is not set | ||
561 | |||
562 | # | ||
563 | # Multi-device support (RAID and LVM) | ||
564 | # | ||
565 | # CONFIG_MD is not set | ||
566 | |||
567 | # | ||
568 | # Fusion MPT device support | ||
569 | # | ||
570 | # CONFIG_FUSION is not set | ||
571 | |||
572 | # | ||
573 | # IEEE 1394 (FireWire) support | ||
574 | # | ||
575 | |||
576 | # | ||
577 | # I2O device support | ||
578 | # | ||
579 | |||
580 | # | ||
581 | # Network device support | ||
582 | # | ||
583 | CONFIG_NETDEVICES=y | ||
584 | # CONFIG_DUMMY is not set | ||
585 | # CONFIG_BONDING is not set | ||
586 | # CONFIG_EQUALIZER is not set | ||
587 | # CONFIG_TUN is not set | ||
588 | |||
589 | # | ||
590 | # PHY device support | ||
591 | # | ||
592 | # CONFIG_PHYLIB is not set | ||
593 | |||
594 | # | ||
595 | # Ethernet (10 or 100Mbit) | ||
596 | # | ||
597 | CONFIG_NET_ETHERNET=y | ||
598 | CONFIG_MII=y | ||
599 | # CONFIG_SMC91X is not set | ||
600 | CONFIG_BFIN_MAC=y | ||
601 | # CONFIG_BFIN_MAC_USE_L1 is not set | ||
602 | CONFIG_BFIN_TX_DESC_NUM=100 | ||
603 | CONFIG_BFIN_RX_DESC_NUM=100 | ||
604 | CONFIG_BFIN_MAC_RMII=y | ||
605 | |||
606 | # | ||
607 | # Ethernet (1000 Mbit) | ||
608 | # | ||
609 | |||
610 | # | ||
611 | # Ethernet (10000 Mbit) | ||
612 | # | ||
613 | |||
614 | # | ||
615 | # Token Ring devices | ||
616 | # | ||
617 | |||
618 | # | ||
619 | # Wireless LAN (non-hamradio) | ||
620 | # | ||
621 | # CONFIG_NET_RADIO is not set | ||
622 | |||
623 | # | ||
624 | # Wan interfaces | ||
625 | # | ||
626 | # CONFIG_WAN is not set | ||
627 | # CONFIG_PPP is not set | ||
628 | # CONFIG_SLIP is not set | ||
629 | # CONFIG_SHAPER is not set | ||
630 | # CONFIG_NETCONSOLE is not set | ||
631 | # CONFIG_NETPOLL is not set | ||
632 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
633 | |||
634 | # | ||
635 | # ISDN subsystem | ||
636 | # | ||
637 | # CONFIG_ISDN is not set | ||
638 | |||
639 | # | ||
640 | # Telephony Support | ||
641 | # | ||
642 | # CONFIG_PHONE is not set | ||
643 | |||
644 | # | ||
645 | # Input device support | ||
646 | # | ||
647 | CONFIG_INPUT=y | ||
648 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
649 | |||
650 | # | ||
651 | # Userland interfaces | ||
652 | # | ||
653 | # CONFIG_INPUT_MOUSEDEV is not set | ||
654 | # CONFIG_INPUT_JOYDEV is not set | ||
655 | CONFIG_INPUT_TSDEV=y | ||
656 | CONFIG_INPUT_TSDEV_SCREEN_X=240 | ||
657 | CONFIG_INPUT_TSDEV_SCREEN_Y=320 | ||
658 | CONFIG_INPUT_EVDEV=y | ||
659 | # CONFIG_INPUT_EVBUG is not set | ||
660 | |||
661 | # | ||
662 | # Input Device Drivers | ||
663 | # | ||
664 | # CONFIG_INPUT_KEYBOARD is not set | ||
665 | # CONFIG_INPUT_MOUSE is not set | ||
666 | # CONFIG_INPUT_JOYSTICK is not set | ||
667 | CONFIG_INPUT_TOUCHSCREEN=y | ||
668 | # CONFIG_TOUCHSCREEN_ADS7846 is not set | ||
669 | CONFIG_TOUCHSCREEN_AD7877=y | ||
670 | # CONFIG_TOUCHSCREEN_GUNZE is not set | ||
671 | # CONFIG_TOUCHSCREEN_ELO is not set | ||
672 | # CONFIG_TOUCHSCREEN_MTOUCH is not set | ||
673 | # CONFIG_TOUCHSCREEN_MK712 is not set | ||
674 | # CONFIG_TOUCHSCREEN_PENMOUNT is not set | ||
675 | # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set | ||
676 | # CONFIG_TOUCHSCREEN_TOUCHWIN is not set | ||
677 | CONFIG_INPUT_MISC=y | ||
678 | CONFIG_INPUT_UINPUT=y | ||
679 | # CONFIG_BF53X_PFBUTTONS is not set | ||
680 | # CONFIG_TWI_KEYPAD is not set | ||
681 | |||
682 | # | ||
683 | # Hardware I/O ports | ||
684 | # | ||
685 | # CONFIG_SERIO is not set | ||
686 | # CONFIG_GAMEPORT is not set | ||
687 | |||
688 | # | ||
689 | # Character devices | ||
690 | # | ||
691 | # CONFIG_AD9960 is not set | ||
692 | # CONFIG_SPI_ADC_BF533 is not set | ||
693 | # CONFIG_BF533_PFLAGS is not set | ||
694 | # CONFIG_BF5xx_PPIFCD is not set | ||
695 | # CONFIG_BF5xx_TIMERS is not set | ||
696 | # CONFIG_BF5xx_PPI is not set | ||
697 | CONFIG_BFIN_SPORT=y | ||
698 | # CONFIG_BFIN_TIMER_LATENCY is not set | ||
699 | CONFIG_TWI_LCD=m | ||
700 | CONFIG_TWI_LCD_SLAVE_ADDR=34 | ||
701 | # CONFIG_AD5304 is not set | ||
702 | # CONFIG_VT is not set | ||
703 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
704 | |||
705 | # | ||
706 | # Serial drivers | ||
707 | # | ||
708 | # CONFIG_SERIAL_8250 is not set | ||
709 | |||
710 | # | ||
711 | # Non-8250 serial port support | ||
712 | # | ||
713 | CONFIG_SERIAL_BFIN=y | ||
714 | CONFIG_SERIAL_BFIN_CONSOLE=y | ||
715 | CONFIG_SERIAL_BFIN_DMA=y | ||
716 | # CONFIG_SERIAL_BFIN_PIO is not set | ||
717 | CONFIG_SERIAL_BFIN_UART0=y | ||
718 | # CONFIG_BFIN_UART0_CTSRTS is not set | ||
719 | CONFIG_SERIAL_BFIN_UART1=y | ||
720 | # CONFIG_BFIN_UART1_CTSRTS is not set | ||
721 | CONFIG_SERIAL_CORE=y | ||
722 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
723 | # CONFIG_SERIAL_BFIN_SPORT is not set | ||
724 | CONFIG_UNIX98_PTYS=y | ||
725 | # CONFIG_LEGACY_PTYS is not set | ||
726 | |||
727 | # | ||
728 | # CAN, the car bus and industrial fieldbus | ||
729 | # | ||
730 | CONFIG_CAN4LINUX=y | ||
731 | |||
732 | # | ||
733 | # linux embedded drivers | ||
734 | # | ||
735 | # CONFIG_CAN_MCF5282 is not set | ||
736 | # CONFIG_CAN_UNCTWINCAN is not set | ||
737 | CONFIG_CAN_BLACKFIN=m | ||
738 | |||
739 | # | ||
740 | # IPMI | ||
741 | # | ||
742 | # CONFIG_IPMI_HANDLER is not set | ||
743 | |||
744 | # | ||
745 | # Watchdog Cards | ||
746 | # | ||
747 | # CONFIG_WATCHDOG is not set | ||
748 | CONFIG_HW_RANDOM=y | ||
749 | # CONFIG_GEN_RTC is not set | ||
750 | CONFIG_BLACKFIN_DPMC=y | ||
751 | # CONFIG_DTLK is not set | ||
752 | # CONFIG_R3964 is not set | ||
753 | |||
754 | # | ||
755 | # Ftape, the floppy tape device driver | ||
756 | # | ||
757 | # CONFIG_RAW_DRIVER is not set | ||
758 | |||
759 | # | ||
760 | # TPM devices | ||
761 | # | ||
762 | # CONFIG_TCG_TPM is not set | ||
763 | |||
764 | # | ||
765 | # I2C support | ||
766 | # | ||
767 | CONFIG_I2C=y | ||
768 | CONFIG_I2C_CHARDEV=y | ||
769 | |||
770 | # | ||
771 | # I2C Algorithms | ||
772 | # | ||
773 | # CONFIG_I2C_ALGOBIT is not set | ||
774 | # CONFIG_I2C_ALGOPCF is not set | ||
775 | # CONFIG_I2C_ALGOPCA is not set | ||
776 | |||
777 | # | ||
778 | # I2C Hardware Bus support | ||
779 | # | ||
780 | # CONFIG_I2C_BFIN_GPIO is not set | ||
781 | CONFIG_I2C_BFIN_TWI=y | ||
782 | CONFIG_TWICLK_KHZ=50 | ||
783 | # CONFIG_I2C_OCORES is not set | ||
784 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
785 | # CONFIG_I2C_STUB is not set | ||
786 | # CONFIG_I2C_PCA_ISA is not set | ||
787 | |||
788 | # | ||
789 | # Miscellaneous I2C Chip support | ||
790 | # | ||
791 | # CONFIG_SENSORS_DS1337 is not set | ||
792 | # CONFIG_SENSORS_DS1374 is not set | ||
793 | # CONFIG_SENSORS_AD5252 is not set | ||
794 | # CONFIG_SENSORS_EEPROM is not set | ||
795 | CONFIG_SENSORS_PCF8574=m | ||
796 | CONFIG_SENSORS_PCF8575=y | ||
797 | # CONFIG_SENSORS_PCA9543 is not set | ||
798 | # CONFIG_SENSORS_PCA9539 is not set | ||
799 | # CONFIG_SENSORS_PCF8591 is not set | ||
800 | # CONFIG_SENSORS_MAX6875 is not set | ||
801 | # CONFIG_I2C_DEBUG_CORE is not set | ||
802 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
803 | # CONFIG_I2C_DEBUG_BUS is not set | ||
804 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
805 | |||
806 | # | ||
807 | # SPI support | ||
808 | # | ||
809 | CONFIG_SPI=y | ||
810 | CONFIG_SPI_MASTER=y | ||
811 | |||
812 | # | ||
813 | # SPI Master Controller Drivers | ||
814 | # | ||
815 | # CONFIG_SPI_BITBANG is not set | ||
816 | CONFIG_SPI_BFIN=y | ||
817 | |||
818 | # | ||
819 | # SPI Protocol Masters | ||
820 | # | ||
821 | |||
822 | # | ||
823 | # Dallas's 1-wire bus | ||
824 | # | ||
825 | # CONFIG_W1 is not set | ||
826 | |||
827 | # | ||
828 | # Hardware Monitoring support | ||
829 | # | ||
830 | CONFIG_HWMON=y | ||
831 | # CONFIG_HWMON_VID is not set | ||
832 | # CONFIG_SENSORS_ABITUGURU is not set | ||
833 | # CONFIG_SENSORS_ADM1021 is not set | ||
834 | # CONFIG_SENSORS_ADM1025 is not set | ||
835 | # CONFIG_SENSORS_ADM1026 is not set | ||
836 | # CONFIG_SENSORS_ADM1031 is not set | ||
837 | # CONFIG_SENSORS_ADM9240 is not set | ||
838 | # CONFIG_SENSORS_ASB100 is not set | ||
839 | # CONFIG_SENSORS_ATXP1 is not set | ||
840 | # CONFIG_SENSORS_DS1621 is not set | ||
841 | # CONFIG_SENSORS_F71805F is not set | ||
842 | # CONFIG_SENSORS_FSCHER is not set | ||
843 | # CONFIG_SENSORS_FSCPOS is not set | ||
844 | # CONFIG_SENSORS_GL518SM is not set | ||
845 | # CONFIG_SENSORS_GL520SM is not set | ||
846 | # CONFIG_SENSORS_IT87 is not set | ||
847 | # CONFIG_SENSORS_LM63 is not set | ||
848 | # CONFIG_SENSORS_LM70 is not set | ||
849 | # CONFIG_SENSORS_LM75 is not set | ||
850 | # CONFIG_SENSORS_LM77 is not set | ||
851 | # CONFIG_SENSORS_LM78 is not set | ||
852 | # CONFIG_SENSORS_LM80 is not set | ||
853 | # CONFIG_SENSORS_LM83 is not set | ||
854 | # CONFIG_SENSORS_LM85 is not set | ||
855 | # CONFIG_SENSORS_LM87 is not set | ||
856 | # CONFIG_SENSORS_LM90 is not set | ||
857 | # CONFIG_SENSORS_LM92 is not set | ||
858 | # CONFIG_SENSORS_MAX1619 is not set | ||
859 | # CONFIG_SENSORS_PC87360 is not set | ||
860 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
861 | # CONFIG_SENSORS_SMSC47M192 is not set | ||
862 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
863 | # CONFIG_SENSORS_VT1211 is not set | ||
864 | # CONFIG_SENSORS_W83781D is not set | ||
865 | # CONFIG_SENSORS_W83791D is not set | ||
866 | # CONFIG_SENSORS_W83792D is not set | ||
867 | # CONFIG_SENSORS_W83L785TS is not set | ||
868 | # CONFIG_SENSORS_W83627HF is not set | ||
869 | # CONFIG_SENSORS_W83627EHF is not set | ||
870 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
871 | |||
872 | # | ||
873 | # Multimedia devices | ||
874 | # | ||
875 | # CONFIG_VIDEO_DEV is not set | ||
876 | |||
877 | # | ||
878 | # Digital Video Broadcasting Devices | ||
879 | # | ||
880 | # CONFIG_DVB is not set | ||
881 | |||
882 | # | ||
883 | # Graphics support | ||
884 | # | ||
885 | CONFIG_FIRMWARE_EDID=y | ||
886 | CONFIG_FB=y | ||
887 | CONFIG_FB_CFB_FILLRECT=y | ||
888 | CONFIG_FB_CFB_COPYAREA=y | ||
889 | CONFIG_FB_CFB_IMAGEBLIT=y | ||
890 | # CONFIG_FB_MACMODES is not set | ||
891 | # CONFIG_FB_BACKLIGHT is not set | ||
892 | # CONFIG_FB_MODE_HELPERS is not set | ||
893 | # CONFIG_FB_TILEBLITTING is not set | ||
894 | # CONFIG_FB_BFIN_7171 is not set | ||
895 | # CONFIG_FB_BFIN_7393 is not set | ||
896 | CONFIG_FB_BF537_LQ035=y | ||
897 | CONFIG_LQ035_SLAVE_ADDR=0x58 | ||
898 | CONFIG_FB_BFIN_LANDSCAPE=y | ||
899 | # CONFIG_FB_BFIN_BGR is not set | ||
900 | # CONFIG_FB_S1D13XXX is not set | ||
901 | # CONFIG_FB_VIRTUAL is not set | ||
902 | |||
903 | # | ||
904 | # Logo configuration | ||
905 | # | ||
906 | # CONFIG_LOGO is not set | ||
907 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | ||
908 | CONFIG_BACKLIGHT_CLASS_DEVICE=y | ||
909 | CONFIG_BACKLIGHT_DEVICE=y | ||
910 | CONFIG_LCD_CLASS_DEVICE=y | ||
911 | CONFIG_LCD_DEVICE=y | ||
912 | |||
913 | # | ||
914 | # Sound | ||
915 | # | ||
916 | CONFIG_SOUND=y | ||
917 | |||
918 | # | ||
919 | # Advanced Linux Sound Architecture | ||
920 | # | ||
921 | CONFIG_SND=m | ||
922 | CONFIG_SND_TIMER=m | ||
923 | CONFIG_SND_PCM=m | ||
924 | # CONFIG_SND_SEQUENCER is not set | ||
925 | # CONFIG_SND_MIXER_OSS is not set | ||
926 | # CONFIG_SND_PCM_OSS is not set | ||
927 | # CONFIG_SND_DYNAMIC_MINORS is not set | ||
928 | # CONFIG_SND_SUPPORT_OLD_API is not set | ||
929 | # CONFIG_SND_VERBOSE_PROCFS is not set | ||
930 | # CONFIG_SND_VERBOSE_PRINTK is not set | ||
931 | # CONFIG_SND_DEBUG is not set | ||
932 | |||
933 | # | ||
934 | # Generic devices | ||
935 | # | ||
936 | # CONFIG_SND_DUMMY is not set | ||
937 | # CONFIG_SND_MTPAV is not set | ||
938 | # CONFIG_SND_SERIAL_U16550 is not set | ||
939 | # CONFIG_SND_MPU401 is not set | ||
940 | |||
941 | # | ||
942 | # ALSA Blackfin devices | ||
943 | # | ||
944 | # CONFIG_SND_BLACKFIN_AD1836 is not set | ||
945 | CONFIG_SND_BLACKFIN_AD1981B=m | ||
946 | # CONFIG_SND_BFIN_AD73311 is not set | ||
947 | |||
948 | # | ||
949 | # Open Sound System | ||
950 | # | ||
951 | CONFIG_SOUND_PRIME=y | ||
952 | CONFIG_OSS_OBSOLETE_DRIVER=y | ||
953 | # CONFIG_SOUND_MSNDCLAS is not set | ||
954 | # CONFIG_SOUND_MSNDPIN is not set | ||
955 | |||
956 | # | ||
957 | # USB support | ||
958 | # | ||
959 | CONFIG_USB_ARCH_HAS_HCD=y | ||
960 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
961 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
962 | # CONFIG_USB is not set | ||
963 | |||
964 | # | ||
965 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
966 | # | ||
967 | |||
968 | # | ||
969 | # USB Gadget Support | ||
970 | # | ||
971 | # CONFIG_USB_GADGET is not set | ||
972 | |||
973 | # | ||
974 | # MMC/SD Card support | ||
975 | # | ||
976 | # CONFIG_SPI_MMC is not set | ||
977 | # CONFIG_MMC is not set | ||
978 | |||
979 | # | ||
980 | # LED devices | ||
981 | # | ||
982 | # CONFIG_NEW_LEDS is not set | ||
983 | |||
984 | # | ||
985 | # LED drivers | ||
986 | # | ||
987 | |||
988 | # | ||
989 | # LED Triggers | ||
990 | # | ||
991 | |||
992 | # | ||
993 | # InfiniBand support | ||
994 | # | ||
995 | |||
996 | # | ||
997 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) | ||
998 | # | ||
999 | |||
1000 | # | ||
1001 | # Real Time Clock | ||
1002 | # | ||
1003 | CONFIG_RTC_LIB=y | ||
1004 | CONFIG_RTC_CLASS=y | ||
1005 | CONFIG_RTC_HCTOSYS=y | ||
1006 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
1007 | # CONFIG_RTC_DEBUG is not set | ||
1008 | |||
1009 | # | ||
1010 | # RTC interfaces | ||
1011 | # | ||
1012 | CONFIG_RTC_INTF_SYSFS=y | ||
1013 | CONFIG_RTC_INTF_PROC=y | ||
1014 | CONFIG_RTC_INTF_DEV=y | ||
1015 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
1016 | |||
1017 | # | ||
1018 | # RTC drivers | ||
1019 | # | ||
1020 | # CONFIG_RTC_DRV_X1205 is not set | ||
1021 | # CONFIG_RTC_DRV_DS1307 is not set | ||
1022 | # CONFIG_RTC_DRV_DS1553 is not set | ||
1023 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
1024 | # CONFIG_RTC_DRV_DS1672 is not set | ||
1025 | # CONFIG_RTC_DRV_DS1742 is not set | ||
1026 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
1027 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
1028 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
1029 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
1030 | # CONFIG_RTC_DRV_M48T86 is not set | ||
1031 | # CONFIG_RTC_DRV_TEST is not set | ||
1032 | # CONFIG_RTC_DRV_MAX6902 is not set | ||
1033 | # CONFIG_RTC_DRV_V3020 is not set | ||
1034 | CONFIG_RTC_DRV_BFIN=y | ||
1035 | |||
1036 | # | ||
1037 | # DMA Engine support | ||
1038 | # | ||
1039 | # CONFIG_DMA_ENGINE is not set | ||
1040 | |||
1041 | # | ||
1042 | # DMA Clients | ||
1043 | # | ||
1044 | |||
1045 | # | ||
1046 | # DMA Devices | ||
1047 | # | ||
1048 | |||
1049 | # | ||
1050 | # PBX support | ||
1051 | # | ||
1052 | # CONFIG_PBX is not set | ||
1053 | |||
1054 | # | ||
1055 | # File systems | ||
1056 | # | ||
1057 | CONFIG_EXT2_FS=y | ||
1058 | CONFIG_EXT2_FS_XATTR=y | ||
1059 | # CONFIG_EXT2_FS_POSIX_ACL is not set | ||
1060 | # CONFIG_EXT2_FS_SECURITY is not set | ||
1061 | # CONFIG_EXT3_FS is not set | ||
1062 | # CONFIG_EXT4DEV_FS is not set | ||
1063 | CONFIG_FS_MBCACHE=y | ||
1064 | # CONFIG_REISERFS_FS is not set | ||
1065 | # CONFIG_JFS_FS is not set | ||
1066 | # CONFIG_FS_POSIX_ACL is not set | ||
1067 | # CONFIG_XFS_FS is not set | ||
1068 | # CONFIG_GFS2_FS is not set | ||
1069 | # CONFIG_OCFS2_FS is not set | ||
1070 | # CONFIG_MINIX_FS is not set | ||
1071 | # CONFIG_ROMFS_FS is not set | ||
1072 | CONFIG_INOTIFY=y | ||
1073 | CONFIG_INOTIFY_USER=y | ||
1074 | # CONFIG_QUOTA is not set | ||
1075 | CONFIG_DNOTIFY=y | ||
1076 | # CONFIG_AUTOFS_FS is not set | ||
1077 | # CONFIG_AUTOFS4_FS is not set | ||
1078 | # CONFIG_FUSE_FS is not set | ||
1079 | |||
1080 | # | ||
1081 | # CD-ROM/DVD Filesystems | ||
1082 | # | ||
1083 | # CONFIG_ISO9660_FS is not set | ||
1084 | # CONFIG_UDF_FS is not set | ||
1085 | |||
1086 | # | ||
1087 | # DOS/FAT/NT Filesystems | ||
1088 | # | ||
1089 | # CONFIG_MSDOS_FS is not set | ||
1090 | # CONFIG_VFAT_FS is not set | ||
1091 | # CONFIG_NTFS_FS is not set | ||
1092 | |||
1093 | # | ||
1094 | # Pseudo filesystems | ||
1095 | # | ||
1096 | CONFIG_PROC_FS=y | ||
1097 | CONFIG_PROC_SYSCTL=y | ||
1098 | CONFIG_SYSFS=y | ||
1099 | # CONFIG_TMPFS is not set | ||
1100 | # CONFIG_HUGETLB_PAGE is not set | ||
1101 | CONFIG_RAMFS=y | ||
1102 | # CONFIG_CONFIGFS_FS is not set | ||
1103 | |||
1104 | # | ||
1105 | # Miscellaneous filesystems | ||
1106 | # | ||
1107 | # CONFIG_ADFS_FS is not set | ||
1108 | # CONFIG_AFFS_FS is not set | ||
1109 | # CONFIG_HFS_FS is not set | ||
1110 | # CONFIG_HFSPLUS_FS is not set | ||
1111 | # CONFIG_BEFS_FS is not set | ||
1112 | # CONFIG_BFS_FS is not set | ||
1113 | # CONFIG_EFS_FS is not set | ||
1114 | CONFIG_YAFFS_FS=y | ||
1115 | CONFIG_YAFFS_YAFFS1=y | ||
1116 | # CONFIG_YAFFS_DOES_ECC is not set | ||
1117 | CONFIG_YAFFS_YAFFS2=y | ||
1118 | CONFIG_YAFFS_AUTO_YAFFS2=y | ||
1119 | # CONFIG_YAFFS_DISABLE_LAZY_LOAD is not set | ||
1120 | CONFIG_YAFFS_CHECKPOINT_RESERVED_BLOCKS=10 | ||
1121 | # CONFIG_YAFFS_DISABLE_WIDE_TNODES is not set | ||
1122 | # CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED is not set | ||
1123 | CONFIG_YAFFS_SHORT_NAMES_IN_RAM=y | ||
1124 | # CONFIG_JFFS_FS is not set | ||
1125 | # CONFIG_JFFS2_FS is not set | ||
1126 | # CONFIG_CRAMFS is not set | ||
1127 | # CONFIG_VXFS_FS is not set | ||
1128 | # CONFIG_HPFS_FS is not set | ||
1129 | # CONFIG_QNX4FS_FS is not set | ||
1130 | # CONFIG_SYSV_FS is not set | ||
1131 | # CONFIG_UFS_FS is not set | ||
1132 | |||
1133 | # | ||
1134 | # Network File Systems | ||
1135 | # | ||
1136 | CONFIG_NFS_FS=m | ||
1137 | CONFIG_NFS_V3=y | ||
1138 | # CONFIG_NFS_V3_ACL is not set | ||
1139 | # CONFIG_NFS_V4 is not set | ||
1140 | # CONFIG_NFS_DIRECTIO is not set | ||
1141 | # CONFIG_NFSD is not set | ||
1142 | CONFIG_LOCKD=m | ||
1143 | CONFIG_LOCKD_V4=y | ||
1144 | CONFIG_NFS_COMMON=y | ||
1145 | CONFIG_SUNRPC=m | ||
1146 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
1147 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
1148 | CONFIG_SMB_FS=m | ||
1149 | # CONFIG_SMB_NLS_DEFAULT is not set | ||
1150 | # CONFIG_CIFS is not set | ||
1151 | # CONFIG_NCP_FS is not set | ||
1152 | # CONFIG_CODA_FS is not set | ||
1153 | # CONFIG_AFS_FS is not set | ||
1154 | # CONFIG_9P_FS is not set | ||
1155 | |||
1156 | # | ||
1157 | # Partition Types | ||
1158 | # | ||
1159 | # CONFIG_PARTITION_ADVANCED is not set | ||
1160 | CONFIG_MSDOS_PARTITION=y | ||
1161 | |||
1162 | # | ||
1163 | # Native Language Support | ||
1164 | # | ||
1165 | CONFIG_NLS=m | ||
1166 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
1167 | # CONFIG_NLS_CODEPAGE_437 is not set | ||
1168 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
1169 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
1170 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
1171 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
1172 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
1173 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
1174 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
1175 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
1176 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
1177 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
1178 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
1179 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
1180 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
1181 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
1182 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
1183 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
1184 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
1185 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
1186 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
1187 | # CONFIG_NLS_ISO8859_8 is not set | ||
1188 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
1189 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
1190 | # CONFIG_NLS_ASCII is not set | ||
1191 | # CONFIG_NLS_ISO8859_1 is not set | ||
1192 | # CONFIG_NLS_ISO8859_2 is not set | ||
1193 | # CONFIG_NLS_ISO8859_3 is not set | ||
1194 | # CONFIG_NLS_ISO8859_4 is not set | ||
1195 | # CONFIG_NLS_ISO8859_5 is not set | ||
1196 | # CONFIG_NLS_ISO8859_6 is not set | ||
1197 | # CONFIG_NLS_ISO8859_7 is not set | ||
1198 | # CONFIG_NLS_ISO8859_9 is not set | ||
1199 | # CONFIG_NLS_ISO8859_13 is not set | ||
1200 | # CONFIG_NLS_ISO8859_14 is not set | ||
1201 | # CONFIG_NLS_ISO8859_15 is not set | ||
1202 | # CONFIG_NLS_KOI8_R is not set | ||
1203 | # CONFIG_NLS_KOI8_U is not set | ||
1204 | # CONFIG_NLS_UTF8 is not set | ||
1205 | |||
1206 | # | ||
1207 | # Profiling support | ||
1208 | # | ||
1209 | # CONFIG_PROFILING is not set | ||
1210 | |||
1211 | # | ||
1212 | # Kernel hacking | ||
1213 | # | ||
1214 | # CONFIG_PRINTK_TIME is not set | ||
1215 | CONFIG_ENABLE_MUST_CHECK=y | ||
1216 | # CONFIG_MAGIC_SYSRQ is not set | ||
1217 | # CONFIG_UNUSED_SYMBOLS is not set | ||
1218 | # CONFIG_DEBUG_KERNEL is not set | ||
1219 | CONFIG_LOG_BUF_SHIFT=14 | ||
1220 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
1221 | # CONFIG_DEBUG_FS is not set | ||
1222 | # CONFIG_UNWIND_INFO is not set | ||
1223 | # CONFIG_HEADERS_CHECK is not set | ||
1224 | # CONFIG_DEBUG_SERIAL_EARLY_INIT is not set | ||
1225 | # CONFIG_DEBUG_HUNT_FOR_ZERO is not set | ||
1226 | # CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE is not set | ||
1227 | # CONFIG_BOOTPARAM is not set | ||
1228 | # CONFIG_NO_KERNEL_MSG is not set | ||
1229 | # CONFIG_CPLB_INFO is not set | ||
1230 | # CONFIG_NO_ACCESS_CHECK is not set | ||
1231 | |||
1232 | # | ||
1233 | # Security options | ||
1234 | # | ||
1235 | # CONFIG_KEYS is not set | ||
1236 | CONFIG_SECURITY=y | ||
1237 | # CONFIG_SECURITY_NETWORK is not set | ||
1238 | CONFIG_SECURITY_CAPABILITIES=y | ||
1239 | |||
1240 | # | ||
1241 | # Cryptographic options | ||
1242 | # | ||
1243 | # CONFIG_CRYPTO is not set | ||
1244 | |||
1245 | # | ||
1246 | # Library routines | ||
1247 | # | ||
1248 | CONFIG_CRC_CCITT=m | ||
1249 | # CONFIG_CRC16 is not set | ||
1250 | CONFIG_CRC32=y | ||
1251 | # CONFIG_LIBCRC32C is not set | ||
1252 | CONFIG_ZLIB_INFLATE=y | ||
1253 | CONFIG_PLIST=y | ||
diff --git a/arch/blackfin/defconfig b/arch/blackfin/defconfig index d5904ca994cf..a513fbe39567 100644 --- a/arch/blackfin/defconfig +++ b/arch/blackfin/defconfig | |||
@@ -1,19 +1,20 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.20 | 3 | # Linux kernel version: 2.6.20.4 |
4 | # | 4 | # |
5 | # CONFIG_MMU is not set | 5 | # CONFIG_MMU is not set |
6 | # CONFIG_FPU is not set | 6 | # CONFIG_FPU is not set |
7 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 7 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
8 | # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set | 8 | # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set |
9 | CONFIG_BLACKFIN=y | ||
9 | CONFIG_BFIN=y | 10 | CONFIG_BFIN=y |
10 | CONFIG_SEMAPHORE_SLEEPERS=y | 11 | CONFIG_SEMAPHORE_SLEEPERS=y |
11 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 12 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
12 | CONFIG_GENERIC_HWEIGHT=y | 13 | CONFIG_GENERIC_HWEIGHT=y |
13 | CONFIG_GENERIC_HARDIRQS=y | 14 | CONFIG_GENERIC_HARDIRQS=y |
14 | CONFIG_GENERIC_IRQ_PROBE=y | 15 | CONFIG_GENERIC_IRQ_PROBE=y |
16 | # CONFIG_GENERIC_TIME is not set | ||
15 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 17 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
16 | CONFIG_UCLINUX=y | ||
17 | CONFIG_FORCE_MAX_ZONEORDER=14 | 18 | CONFIG_FORCE_MAX_ZONEORDER=14 |
18 | CONFIG_IRQCHIP_DEMUX_GPIO=y | 19 | CONFIG_IRQCHIP_DEMUX_GPIO=y |
19 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 20 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
@@ -55,6 +56,7 @@ CONFIG_ELF_CORE=y | |||
55 | CONFIG_BASE_FULL=y | 56 | CONFIG_BASE_FULL=y |
56 | CONFIG_FUTEX=y | 57 | CONFIG_FUTEX=y |
57 | CONFIG_EPOLL=y | 58 | CONFIG_EPOLL=y |
59 | CONFIG_BIG_ORDER_ALLOC_NOFAIL_MAGIC=3 | ||
58 | # CONFIG_LIMIT_PAGECACHE is not set | 60 | # CONFIG_LIMIT_PAGECACHE is not set |
59 | CONFIG_BUDDY=y | 61 | CONFIG_BUDDY=y |
60 | # CONFIG_NP2 is not set | 62 | # CONFIG_NP2 is not set |
@@ -95,6 +97,9 @@ CONFIG_DEFAULT_AS=y | |||
95 | # CONFIG_DEFAULT_CFQ is not set | 97 | # CONFIG_DEFAULT_CFQ is not set |
96 | # CONFIG_DEFAULT_NOOP is not set | 98 | # CONFIG_DEFAULT_NOOP is not set |
97 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 99 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
100 | # CONFIG_PREEMPT_NONE is not set | ||
101 | CONFIG_PREEMPT_VOLUNTARY=y | ||
102 | # CONFIG_PREEMPT is not set | ||
98 | 103 | ||
99 | # | 104 | # |
100 | # Blackfin Processor Options | 105 | # Blackfin Processor Options |
@@ -107,7 +112,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
107 | # CONFIG_BF532 is not set | 112 | # CONFIG_BF532 is not set |
108 | # CONFIG_BF533 is not set | 113 | # CONFIG_BF533 is not set |
109 | # CONFIG_BF534 is not set | 114 | # CONFIG_BF534 is not set |
110 | # CONFIG_BF535 is not set | ||
111 | # CONFIG_BF536 is not set | 115 | # CONFIG_BF536 is not set |
112 | CONFIG_BF537=y | 116 | CONFIG_BF537=y |
113 | # CONFIG_BF561 is not set | 117 | # CONFIG_BF561 is not set |
@@ -115,7 +119,6 @@ CONFIG_BF_REV_0_2=y | |||
115 | # CONFIG_BF_REV_0_3 is not set | 119 | # CONFIG_BF_REV_0_3 is not set |
116 | # CONFIG_BF_REV_0_4 is not set | 120 | # CONFIG_BF_REV_0_4 is not set |
117 | # CONFIG_BF_REV_0_5 is not set | 121 | # CONFIG_BF_REV_0_5 is not set |
118 | CONFIG_BLACKFIN=y | ||
119 | CONFIG_BFIN_SINGLE_CORE=y | 122 | CONFIG_BFIN_SINGLE_CORE=y |
120 | # CONFIG_BFIN533_EZKIT is not set | 123 | # CONFIG_BFIN533_EZKIT is not set |
121 | # CONFIG_BFIN533_STAMP is not set | 124 | # CONFIG_BFIN533_STAMP is not set |
@@ -182,6 +185,7 @@ CONFIG_IRQ_WATCH=13 | |||
182 | # | 185 | # |
183 | # Board customizations | 186 | # Board customizations |
184 | # | 187 | # |
188 | # CONFIG_CMDLINE_BOOL is not set | ||
185 | 189 | ||
186 | # | 190 | # |
187 | # Board Setup | 191 | # Board Setup |
@@ -221,6 +225,19 @@ CONFIG_HZ=250 | |||
221 | # Memory Optimizations | 225 | # Memory Optimizations |
222 | # | 226 | # |
223 | CONFIG_I_ENTRY_L1=y | 227 | CONFIG_I_ENTRY_L1=y |
228 | CONFIG_EXCPT_IRQ_SYSC_L1=y | ||
229 | CONFIG_DO_IRQ_L1=y | ||
230 | CONFIG_CORE_TIMER_IRQ_L1=y | ||
231 | CONFIG_IDLE_L1=y | ||
232 | CONFIG_SCHEDULE_L1=y | ||
233 | CONFIG_ARITHMETIC_OPS_L1=y | ||
234 | CONFIG_ACCESS_OK_L1=y | ||
235 | CONFIG_MEMSET_L1=y | ||
236 | CONFIG_MEMCPY_L1=y | ||
237 | CONFIG_SYS_BFIN_SPINLOCK_L1=y | ||
238 | # CONFIG_IP_CHECKSUM_L1 is not set | ||
239 | # CONFIG_SYSCALL_TAB_L1 is not set | ||
240 | # CONFIG_CPLB_SWITCH_TAB_L1 is not set | ||
224 | CONFIG_RAMKERNEL=y | 241 | CONFIG_RAMKERNEL=y |
225 | # CONFIG_ROMKERNEL is not set | 242 | # CONFIG_ROMKERNEL is not set |
226 | CONFIG_SELECT_MEMORY_MODEL=y | 243 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -243,6 +260,7 @@ CONFIG_DMA_UNCACHED_1M=y | |||
243 | # | 260 | # |
244 | CONFIG_BLKFIN_CACHE=y | 261 | CONFIG_BLKFIN_CACHE=y |
245 | CONFIG_BLKFIN_DCACHE=y | 262 | CONFIG_BLKFIN_DCACHE=y |
263 | # CONFIG_BLKFIN_DCACHE_BANKA is not set | ||
246 | # CONFIG_BLKFIN_CACHE_LOCK is not set | 264 | # CONFIG_BLKFIN_CACHE_LOCK is not set |
247 | # CONFIG_BLKFIN_WB is not set | 265 | # CONFIG_BLKFIN_WB is not set |
248 | CONFIG_BLKFIN_WT=y | 266 | CONFIG_BLKFIN_WT=y |
@@ -815,9 +833,8 @@ CONFIG_I2C_CHARDEV=m | |||
815 | # | 833 | # |
816 | # I2C Hardware Bus support | 834 | # I2C Hardware Bus support |
817 | # | 835 | # |
818 | # CONFIG_I2C_BFIN_GPIO is not set | 836 | # CONFIG_I2C_BLACKFIN_GPIO is not set |
819 | CONFIG_I2C_BFIN_TWI=m | 837 | # CONFIG_I2C_BLACKFIN_TWI is not set |
820 | CONFIG_TWICLK_KHZ=50 | ||
821 | # CONFIG_I2C_OCORES is not set | 838 | # CONFIG_I2C_OCORES is not set |
822 | # CONFIG_I2C_PARPORT_LIGHT is not set | 839 | # CONFIG_I2C_PARPORT_LIGHT is not set |
823 | # CONFIG_I2C_STUB is not set | 840 | # CONFIG_I2C_STUB is not set |
@@ -832,6 +849,7 @@ CONFIG_SENSORS_AD5252=m | |||
832 | # CONFIG_SENSORS_EEPROM is not set | 849 | # CONFIG_SENSORS_EEPROM is not set |
833 | # CONFIG_SENSORS_PCF8574 is not set | 850 | # CONFIG_SENSORS_PCF8574 is not set |
834 | # CONFIG_SENSORS_PCF8575 is not set | 851 | # CONFIG_SENSORS_PCF8575 is not set |
852 | # CONFIG_SENSORS_PCA9543 is not set | ||
835 | # CONFIG_SENSORS_PCA9539 is not set | 853 | # CONFIG_SENSORS_PCA9539 is not set |
836 | # CONFIG_SENSORS_PCF8591 is not set | 854 | # CONFIG_SENSORS_PCF8591 is not set |
837 | # CONFIG_SENSORS_MAX6875 is not set | 855 | # CONFIG_SENSORS_MAX6875 is not set |
@@ -850,11 +868,11 @@ CONFIG_SPI_MASTER=y | |||
850 | # SPI Master Controller Drivers | 868 | # SPI Master Controller Drivers |
851 | # | 869 | # |
852 | # CONFIG_SPI_BITBANG is not set | 870 | # CONFIG_SPI_BITBANG is not set |
853 | CONFIG_SPI_BFIN=y | ||
854 | 871 | ||
855 | # | 872 | # |
856 | # SPI Protocol Masters | 873 | # SPI Protocol Masters |
857 | # | 874 | # |
875 | CONFIG_SPI_BFIN=y | ||
858 | 876 | ||
859 | # | 877 | # |
860 | # Dallas's 1-wire bus | 878 | # Dallas's 1-wire bus |
@@ -940,10 +958,6 @@ CONFIG_NTSC=y | |||
940 | # CONFIG_PAL_YCBCR is not set | 958 | # CONFIG_PAL_YCBCR is not set |
941 | CONFIG_ADV7393_1XMEM=y | 959 | CONFIG_ADV7393_1XMEM=y |
942 | # CONFIG_ADV7393_2XMEM is not set | 960 | # CONFIG_ADV7393_2XMEM is not set |
943 | CONFIG_FB_BF537_LQ035=m | ||
944 | CONFIG_LQ035_SLAVE_ADDR=0x58 | ||
945 | # CONFIG_FB_BFIN_LANDSCAPE is not set | ||
946 | # CONFIG_FB_BFIN_BGR is not set | ||
947 | # CONFIG_FB_S1D13XXX is not set | 961 | # CONFIG_FB_S1D13XXX is not set |
948 | # CONFIG_FB_VIRTUAL is not set | 962 | # CONFIG_FB_VIRTUAL is not set |
949 | 963 | ||
@@ -1280,12 +1294,11 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1280 | # CONFIG_DEBUG_KERNEL is not set | 1294 | # CONFIG_DEBUG_KERNEL is not set |
1281 | CONFIG_LOG_BUF_SHIFT=14 | 1295 | CONFIG_LOG_BUF_SHIFT=14 |
1282 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1296 | # CONFIG_DEBUG_BUGVERBOSE is not set |
1297 | # CONFIG_DEBUG_SERIAL_EARLY_INIT is not set | ||
1283 | CONFIG_DEBUG_HUNT_FOR_ZERO=y | 1298 | CONFIG_DEBUG_HUNT_FOR_ZERO=y |
1284 | # CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE is not set | 1299 | # CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE is not set |
1285 | # CONFIG_BOOTPARAM is not set | ||
1286 | # CONFIG_NO_KERNEL_MSG is not set | ||
1287 | CONFIG_CPLB_INFO=y | 1300 | CONFIG_CPLB_INFO=y |
1288 | # CONFIG_NO_ACCESS_CHECK is not set | 1301 | CONFIG_ACCESS_CHECK=y |
1289 | 1302 | ||
1290 | # | 1303 | # |
1291 | # Security options | 1304 | # Security options |
diff --git a/arch/blackfin/kernel/bfin_dma_5xx.c b/arch/blackfin/kernel/bfin_dma_5xx.c index 8ea079ebecb5..0ccb0dc3f833 100644 --- a/arch/blackfin/kernel/bfin_dma_5xx.c +++ b/arch/blackfin/kernel/bfin_dma_5xx.c | |||
@@ -119,7 +119,7 @@ static void clear_dma_buffer(unsigned int channel) | |||
119 | SSYNC(); | 119 | SSYNC(); |
120 | } | 120 | } |
121 | 121 | ||
122 | int __init blackfin_dma_init(void) | 122 | static int __init blackfin_dma_init(void) |
123 | { | 123 | { |
124 | int i; | 124 | int i; |
125 | 125 | ||
@@ -130,7 +130,9 @@ int __init blackfin_dma_init(void) | |||
130 | dma_ch[i].regs = base_addr[i]; | 130 | dma_ch[i].regs = base_addr[i]; |
131 | mutex_init(&(dma_ch[i].dmalock)); | 131 | mutex_init(&(dma_ch[i].dmalock)); |
132 | } | 132 | } |
133 | 133 | /* Mark MEMDMA Channel 0 as requested since we're using it internally */ | |
134 | dma_ch[CH_MEM_STREAM0_DEST].chan_status = DMA_CHANNEL_REQUESTED; | ||
135 | dma_ch[CH_MEM_STREAM0_SRC].chan_status = DMA_CHANNEL_REQUESTED; | ||
134 | return 0; | 136 | return 0; |
135 | } | 137 | } |
136 | 138 | ||
@@ -593,14 +595,17 @@ unsigned short get_dma_curr_ycount(unsigned int channel) | |||
593 | } | 595 | } |
594 | EXPORT_SYMBOL(get_dma_curr_ycount); | 596 | EXPORT_SYMBOL(get_dma_curr_ycount); |
595 | 597 | ||
596 | void *dma_memcpy(void *dest, const void *src, size_t size) | 598 | void *_dma_memcpy(void *dest, const void *src, size_t size) |
597 | { | 599 | { |
598 | int direction; /* 1 - address decrease, 0 - address increase */ | 600 | int direction; /* 1 - address decrease, 0 - address increase */ |
599 | int flag_align; /* 1 - address aligned, 0 - address unaligned */ | 601 | int flag_align; /* 1 - address aligned, 0 - address unaligned */ |
600 | int flag_2D; /* 1 - 2D DMA needed, 0 - 1D DMA needed */ | 602 | int flag_2D; /* 1 - 2D DMA needed, 0 - 1D DMA needed */ |
603 | unsigned long flags; | ||
601 | 604 | ||
602 | if (size <= 0) | 605 | if (size <= 0) |
603 | return NULL; | 606 | return NULL; |
607 | |||
608 | local_irq_save(flags); | ||
604 | 609 | ||
605 | if ((unsigned long)src < memory_end) | 610 | if ((unsigned long)src < memory_end) |
606 | blackfin_dcache_flush_range((unsigned int)src, | 611 | blackfin_dcache_flush_range((unsigned int)src, |
@@ -725,18 +730,224 @@ void *dma_memcpy(void *dest, const void *src, size_t size) | |||
725 | if ((unsigned long)dest < memory_end) | 730 | if ((unsigned long)dest < memory_end) |
726 | blackfin_dcache_invalidate_range((unsigned int)dest, | 731 | blackfin_dcache_invalidate_range((unsigned int)dest, |
727 | (unsigned int)(dest + size)); | 732 | (unsigned int)(dest + size)); |
733 | local_irq_restore(flags); | ||
728 | 734 | ||
729 | return dest; | 735 | return dest; |
730 | } | 736 | } |
737 | |||
738 | void *dma_memcpy(void *dest, const void *src, size_t size) | ||
739 | { | ||
740 | size_t bulk; | ||
741 | size_t rest; | ||
742 | void * addr; | ||
743 | |||
744 | bulk = (size >> 16) << 16; | ||
745 | rest = size - bulk; | ||
746 | if (bulk) | ||
747 | _dma_memcpy(dest, src, bulk); | ||
748 | addr = _dma_memcpy(dest+bulk, src+bulk, rest); | ||
749 | return addr; | ||
750 | } | ||
751 | |||
731 | EXPORT_SYMBOL(dma_memcpy); | 752 | EXPORT_SYMBOL(dma_memcpy); |
732 | 753 | ||
733 | void *safe_dma_memcpy(void *dest, const void *src, size_t size) | 754 | void *safe_dma_memcpy(void *dest, const void *src, size_t size) |
734 | { | 755 | { |
735 | int flags = 0; | ||
736 | void *addr; | 756 | void *addr; |
737 | local_irq_save(flags); | ||
738 | addr = dma_memcpy(dest, src, size); | 757 | addr = dma_memcpy(dest, src, size); |
739 | local_irq_restore(flags); | ||
740 | return addr; | 758 | return addr; |
741 | } | 759 | } |
742 | EXPORT_SYMBOL(safe_dma_memcpy); | 760 | EXPORT_SYMBOL(safe_dma_memcpy); |
761 | |||
762 | void dma_outsb(void __iomem *addr, const void *buf, unsigned short len) | ||
763 | { | ||
764 | |||
765 | unsigned long flags; | ||
766 | |||
767 | local_irq_save(flags); | ||
768 | |||
769 | blackfin_dcache_flush_range((unsigned int)buf,(unsigned int)(buf) + len); | ||
770 | |||
771 | bfin_write_MDMA_D0_START_ADDR(addr); | ||
772 | bfin_write_MDMA_D0_X_COUNT(len); | ||
773 | bfin_write_MDMA_D0_X_MODIFY(0); | ||
774 | bfin_write_MDMA_D0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
775 | |||
776 | bfin_write_MDMA_S0_START_ADDR(buf); | ||
777 | bfin_write_MDMA_S0_X_COUNT(len); | ||
778 | bfin_write_MDMA_S0_X_MODIFY(1); | ||
779 | bfin_write_MDMA_S0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
780 | |||
781 | bfin_write_MDMA_S0_CONFIG(DMAEN | WDSIZE_8); | ||
782 | bfin_write_MDMA_D0_CONFIG(WNR | DI_EN | DMAEN | WDSIZE_8); | ||
783 | |||
784 | while (!(bfin_read_MDMA_D0_IRQ_STATUS() & DMA_DONE)); | ||
785 | |||
786 | bfin_write_MDMA_D0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
787 | |||
788 | bfin_write_MDMA_S0_CONFIG(0); | ||
789 | bfin_write_MDMA_D0_CONFIG(0); | ||
790 | local_irq_restore(flags); | ||
791 | |||
792 | } | ||
793 | EXPORT_SYMBOL(dma_outsb); | ||
794 | |||
795 | |||
796 | void dma_insb(const void __iomem *addr, void *buf, unsigned short len) | ||
797 | { | ||
798 | unsigned long flags; | ||
799 | |||
800 | local_irq_save(flags); | ||
801 | bfin_write_MDMA_D0_START_ADDR(buf); | ||
802 | bfin_write_MDMA_D0_X_COUNT(len); | ||
803 | bfin_write_MDMA_D0_X_MODIFY(1); | ||
804 | bfin_write_MDMA_D0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
805 | |||
806 | bfin_write_MDMA_S0_START_ADDR(addr); | ||
807 | bfin_write_MDMA_S0_X_COUNT(len); | ||
808 | bfin_write_MDMA_S0_X_MODIFY(0); | ||
809 | bfin_write_MDMA_S0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
810 | |||
811 | bfin_write_MDMA_S0_CONFIG(DMAEN | WDSIZE_8); | ||
812 | bfin_write_MDMA_D0_CONFIG(WNR | DI_EN | DMAEN | WDSIZE_8); | ||
813 | |||
814 | blackfin_dcache_invalidate_range((unsigned int)buf, (unsigned int)(buf) + len); | ||
815 | |||
816 | while (!(bfin_read_MDMA_D0_IRQ_STATUS() & DMA_DONE)); | ||
817 | |||
818 | bfin_write_MDMA_D0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
819 | |||
820 | bfin_write_MDMA_S0_CONFIG(0); | ||
821 | bfin_write_MDMA_D0_CONFIG(0); | ||
822 | local_irq_restore(flags); | ||
823 | |||
824 | } | ||
825 | EXPORT_SYMBOL(dma_insb); | ||
826 | |||
827 | void dma_outsw(void __iomem *addr, const void *buf, unsigned short len) | ||
828 | { | ||
829 | unsigned long flags; | ||
830 | |||
831 | local_irq_save(flags); | ||
832 | |||
833 | blackfin_dcache_flush_range((unsigned int)buf,(unsigned int)(buf) + len); | ||
834 | |||
835 | bfin_write_MDMA_D0_START_ADDR(addr); | ||
836 | bfin_write_MDMA_D0_X_COUNT(len); | ||
837 | bfin_write_MDMA_D0_X_MODIFY(0); | ||
838 | bfin_write_MDMA_D0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
839 | |||
840 | bfin_write_MDMA_S0_START_ADDR(buf); | ||
841 | bfin_write_MDMA_S0_X_COUNT(len); | ||
842 | bfin_write_MDMA_S0_X_MODIFY(2); | ||
843 | bfin_write_MDMA_S0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
844 | |||
845 | bfin_write_MDMA_S0_CONFIG(DMAEN | WDSIZE_16); | ||
846 | bfin_write_MDMA_D0_CONFIG(WNR | DI_EN | DMAEN | WDSIZE_16); | ||
847 | |||
848 | while (!(bfin_read_MDMA_D0_IRQ_STATUS() & DMA_DONE)); | ||
849 | |||
850 | bfin_write_MDMA_D0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
851 | |||
852 | bfin_write_MDMA_S0_CONFIG(0); | ||
853 | bfin_write_MDMA_D0_CONFIG(0); | ||
854 | local_irq_restore(flags); | ||
855 | |||
856 | } | ||
857 | EXPORT_SYMBOL(dma_outsw); | ||
858 | |||
859 | void dma_insw(const void __iomem *addr, void *buf, unsigned short len) | ||
860 | { | ||
861 | unsigned long flags; | ||
862 | |||
863 | local_irq_save(flags); | ||
864 | |||
865 | bfin_write_MDMA_D0_START_ADDR(buf); | ||
866 | bfin_write_MDMA_D0_X_COUNT(len); | ||
867 | bfin_write_MDMA_D0_X_MODIFY(2); | ||
868 | bfin_write_MDMA_D0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
869 | |||
870 | bfin_write_MDMA_S0_START_ADDR(addr); | ||
871 | bfin_write_MDMA_S0_X_COUNT(len); | ||
872 | bfin_write_MDMA_S0_X_MODIFY(0); | ||
873 | bfin_write_MDMA_S0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
874 | |||
875 | bfin_write_MDMA_S0_CONFIG(DMAEN | WDSIZE_16); | ||
876 | bfin_write_MDMA_D0_CONFIG(WNR | DI_EN | DMAEN | WDSIZE_16); | ||
877 | |||
878 | blackfin_dcache_invalidate_range((unsigned int)buf, (unsigned int)(buf) + len); | ||
879 | |||
880 | while (!(bfin_read_MDMA_D0_IRQ_STATUS() & DMA_DONE)); | ||
881 | |||
882 | bfin_write_MDMA_D0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
883 | |||
884 | bfin_write_MDMA_S0_CONFIG(0); | ||
885 | bfin_write_MDMA_D0_CONFIG(0); | ||
886 | local_irq_restore(flags); | ||
887 | |||
888 | } | ||
889 | EXPORT_SYMBOL(dma_insw); | ||
890 | |||
891 | void dma_outsl(void __iomem *addr, const void *buf, unsigned short len) | ||
892 | { | ||
893 | unsigned long flags; | ||
894 | |||
895 | local_irq_save(flags); | ||
896 | |||
897 | blackfin_dcache_flush_range((unsigned int)buf,(unsigned int)(buf) + len); | ||
898 | |||
899 | bfin_write_MDMA_D0_START_ADDR(addr); | ||
900 | bfin_write_MDMA_D0_X_COUNT(len); | ||
901 | bfin_write_MDMA_D0_X_MODIFY(0); | ||
902 | bfin_write_MDMA_D0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
903 | |||
904 | bfin_write_MDMA_S0_START_ADDR(buf); | ||
905 | bfin_write_MDMA_S0_X_COUNT(len); | ||
906 | bfin_write_MDMA_S0_X_MODIFY(4); | ||
907 | bfin_write_MDMA_S0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
908 | |||
909 | bfin_write_MDMA_S0_CONFIG(DMAEN | WDSIZE_32); | ||
910 | bfin_write_MDMA_D0_CONFIG(WNR | DI_EN | DMAEN | WDSIZE_32); | ||
911 | |||
912 | while (!(bfin_read_MDMA_D0_IRQ_STATUS() & DMA_DONE)); | ||
913 | |||
914 | bfin_write_MDMA_D0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
915 | |||
916 | bfin_write_MDMA_S0_CONFIG(0); | ||
917 | bfin_write_MDMA_D0_CONFIG(0); | ||
918 | local_irq_restore(flags); | ||
919 | |||
920 | } | ||
921 | EXPORT_SYMBOL(dma_outsl); | ||
922 | |||
923 | void dma_insl(const void __iomem *addr, void *buf, unsigned short len) | ||
924 | { | ||
925 | unsigned long flags; | ||
926 | |||
927 | local_irq_save(flags); | ||
928 | |||
929 | bfin_write_MDMA_D0_START_ADDR(buf); | ||
930 | bfin_write_MDMA_D0_X_COUNT(len); | ||
931 | bfin_write_MDMA_D0_X_MODIFY(4); | ||
932 | bfin_write_MDMA_D0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
933 | |||
934 | bfin_write_MDMA_S0_START_ADDR(addr); | ||
935 | bfin_write_MDMA_S0_X_COUNT(len); | ||
936 | bfin_write_MDMA_S0_X_MODIFY(0); | ||
937 | bfin_write_MDMA_S0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
938 | |||
939 | bfin_write_MDMA_S0_CONFIG(DMAEN | WDSIZE_32); | ||
940 | bfin_write_MDMA_D0_CONFIG(WNR | DI_EN | DMAEN | WDSIZE_32); | ||
941 | |||
942 | blackfin_dcache_invalidate_range((unsigned int)buf, (unsigned int)(buf) + len); | ||
943 | |||
944 | while (!(bfin_read_MDMA_D0_IRQ_STATUS() & DMA_DONE)); | ||
945 | |||
946 | bfin_write_MDMA_D0_IRQ_STATUS(DMA_DONE | DMA_ERR); | ||
947 | |||
948 | bfin_write_MDMA_S0_CONFIG(0); | ||
949 | bfin_write_MDMA_D0_CONFIG(0); | ||
950 | local_irq_restore(flags); | ||
951 | |||
952 | } | ||
953 | EXPORT_SYMBOL(dma_insl); | ||
diff --git a/arch/blackfin/kernel/bfin_gpio.c b/arch/blackfin/kernel/bfin_gpio.c index e9f24a9a46ba..3f49fae1cb1f 100644 --- a/arch/blackfin/kernel/bfin_gpio.c +++ b/arch/blackfin/kernel/bfin_gpio.c | |||
@@ -144,7 +144,7 @@ inline int check_gpio(unsigned short gpio) | |||
144 | } | 144 | } |
145 | 145 | ||
146 | #ifdef BF537_FAMILY | 146 | #ifdef BF537_FAMILY |
147 | void port_setup(unsigned short gpio, unsigned short usage) | 147 | static void port_setup(unsigned short gpio, unsigned short usage) |
148 | { | 148 | { |
149 | if (usage == GPIO_USAGE) { | 149 | if (usage == GPIO_USAGE) { |
150 | if (*port_fer[gpio_bank(gpio)] & gpio_bit(gpio)) | 150 | if (*port_fer[gpio_bank(gpio)] & gpio_bit(gpio)) |
@@ -160,7 +160,7 @@ void port_setup(unsigned short gpio, unsigned short usage) | |||
160 | #endif | 160 | #endif |
161 | 161 | ||
162 | 162 | ||
163 | void default_gpio(unsigned short gpio) | 163 | static void default_gpio(unsigned short gpio) |
164 | { | 164 | { |
165 | unsigned short bank,bitmask; | 165 | unsigned short bank,bitmask; |
166 | 166 | ||
@@ -177,8 +177,7 @@ void default_gpio(unsigned short gpio) | |||
177 | gpio_bankb[bank]->edge &= ~bitmask; | 177 | gpio_bankb[bank]->edge &= ~bitmask; |
178 | } | 178 | } |
179 | 179 | ||
180 | 180 | static int __init bfin_gpio_init(void) | |
181 | int __init bfin_gpio_init(void) | ||
182 | { | 181 | { |
183 | int i; | 182 | int i; |
184 | 183 | ||
@@ -189,9 +188,9 @@ int __init bfin_gpio_init(void) | |||
189 | 188 | ||
190 | #if defined(BF537_FAMILY) && (defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)) | 189 | #if defined(BF537_FAMILY) && (defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)) |
191 | # if defined(CONFIG_BFIN_MAC_RMII) | 190 | # if defined(CONFIG_BFIN_MAC_RMII) |
192 | reserved_map[PORT_H] = 0xC373; | 191 | reserved_map[gpio_bank(PORT_H)] = 0xC373; |
193 | # else | 192 | # else |
194 | reserved_map[PORT_H] = 0xFFFF; | 193 | reserved_map[gpio_bank(PORT_H)] = 0xFFFF; |
195 | # endif | 194 | # endif |
196 | #endif | 195 | #endif |
197 | 196 | ||
diff --git a/arch/blackfin/kernel/setup.c b/arch/blackfin/kernel/setup.c index 342bb8dd56ac..02dc74301920 100644 --- a/arch/blackfin/kernel/setup.c +++ b/arch/blackfin/kernel/setup.c | |||
@@ -33,7 +33,6 @@ | |||
33 | #include <linux/seq_file.h> | 33 | #include <linux/seq_file.h> |
34 | #include <linux/cpu.h> | 34 | #include <linux/cpu.h> |
35 | #include <linux/module.h> | 35 | #include <linux/module.h> |
36 | #include <linux/console.h> | ||
37 | #include <linux/tty.h> | 36 | #include <linux/tty.h> |
38 | 37 | ||
39 | #include <linux/ext2_fs.h> | 38 | #include <linux/ext2_fs.h> |
@@ -44,6 +43,8 @@ | |||
44 | #include <asm/blackfin.h> | 43 | #include <asm/blackfin.h> |
45 | #include <asm/cplbinit.h> | 44 | #include <asm/cplbinit.h> |
46 | 45 | ||
46 | u16 _bfin_swrst; | ||
47 | |||
47 | unsigned long memory_start, memory_end, physical_mem_end; | 48 | unsigned long memory_start, memory_end, physical_mem_end; |
48 | unsigned long reserved_mem_dcache_on; | 49 | unsigned long reserved_mem_dcache_on; |
49 | unsigned long reserved_mem_icache_on; | 50 | unsigned long reserved_mem_icache_on; |
@@ -175,6 +176,9 @@ void __init setup_arch(char **cmdline_p) | |||
175 | unsigned long mtd_phys = 0; | 176 | unsigned long mtd_phys = 0; |
176 | #endif | 177 | #endif |
177 | 178 | ||
179 | #ifdef CONFIG_DUMMY_CONSOLE | ||
180 | conswitchp = &dummy_con; | ||
181 | #endif | ||
178 | cclk = get_cclk(); | 182 | cclk = get_cclk(); |
179 | sclk = get_sclk(); | 183 | sclk = get_sclk(); |
180 | 184 | ||
@@ -379,37 +383,27 @@ void __init setup_arch(char **cmdline_p) | |||
379 | if (l1_length > L1_DATA_A_LENGTH) | 383 | if (l1_length > L1_DATA_A_LENGTH) |
380 | panic("L1 memory overflow\n"); | 384 | panic("L1 memory overflow\n"); |
381 | 385 | ||
382 | bf53x_cache_init(); | 386 | #ifdef BF561_FAMILY |
383 | 387 | _bfin_swrst = bfin_read_SICA_SWRST(); | |
384 | #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) | 388 | #else |
385 | # if defined(CONFIG_BFIN_SHARED_FLASH_ENET) && defined(CONFIG_BFIN533_STAMP) | 389 | _bfin_swrst = bfin_read_SWRST(); |
386 | /* setup BF533_STAMP CPLD to route AMS3 to Ethernet MAC */ | ||
387 | bfin_write_FIO_DIR(bfin_read_FIO_DIR() | (1 << CONFIG_ENET_FLASH_PIN)); | ||
388 | bfin_write_FIO_FLAG_S(1 << CONFIG_ENET_FLASH_PIN); | ||
389 | SSYNC(); | ||
390 | # endif | ||
391 | # if defined (CONFIG_BFIN561_EZKIT) | ||
392 | bfin_write_FIO0_DIR(bfin_read_FIO0_DIR() | (1 << 12)); | ||
393 | SSYNC(); | ||
394 | # endif /* defined (CONFIG_BFIN561_EZKIT) */ | ||
395 | #endif | 390 | #endif |
396 | 391 | ||
392 | bf53x_cache_init(); | ||
393 | |||
397 | printk(KERN_INFO "Hardware Trace Enabled\n"); | 394 | printk(KERN_INFO "Hardware Trace Enabled\n"); |
398 | bfin_write_TBUFCTL(0x03); | 395 | bfin_write_TBUFCTL(0x03); |
399 | } | 396 | } |
400 | 397 | ||
401 | #if defined(CONFIG_BF561) | ||
402 | static struct cpu cpu[2]; | ||
403 | #else | ||
404 | static struct cpu cpu[1]; | ||
405 | #endif | ||
406 | static int __init topology_init(void) | 398 | static int __init topology_init(void) |
407 | { | 399 | { |
408 | #if defined (CONFIG_BF561) | 400 | #if defined (CONFIG_BF561) |
401 | static struct cpu cpu[2]; | ||
409 | register_cpu(&cpu[0], 0); | 402 | register_cpu(&cpu[0], 0); |
410 | register_cpu(&cpu[1], 1); | 403 | register_cpu(&cpu[1], 1); |
411 | return 0; | 404 | return 0; |
412 | #else | 405 | #else |
406 | static struct cpu cpu[1]; | ||
413 | return register_cpu(cpu, 0); | 407 | return register_cpu(cpu, 0); |
414 | #endif | 408 | #endif |
415 | } | 409 | } |
diff --git a/arch/blackfin/kernel/traps.c b/arch/blackfin/kernel/traps.c index 9556b73de808..9932edee8cb4 100644 --- a/arch/blackfin/kernel/traps.c +++ b/arch/blackfin/kernel/traps.c | |||
@@ -59,9 +59,10 @@ static int printk_address(unsigned long address) | |||
59 | struct vm_list_struct *vml; | 59 | struct vm_list_struct *vml; |
60 | struct task_struct *p; | 60 | struct task_struct *p; |
61 | struct mm_struct *mm; | 61 | struct mm_struct *mm; |
62 | unsigned long offset; | ||
62 | 63 | ||
63 | #ifdef CONFIG_KALLSYMS | 64 | #ifdef CONFIG_KALLSYMS |
64 | unsigned long offset = 0, symsize; | 65 | unsigned long symsize; |
65 | const char *symname; | 66 | const char *symname; |
66 | char *modname; | 67 | char *modname; |
67 | char *delim = ":"; | 68 | char *delim = ":"; |
@@ -106,12 +107,19 @@ static int printk_address(unsigned long address) | |||
106 | sizeof(_tmpbuf)); | 107 | sizeof(_tmpbuf)); |
107 | } | 108 | } |
108 | 109 | ||
110 | /* FLAT does not have its text aligned to the start of | ||
111 | * the map while FDPIC ELF does ... | ||
112 | */ | ||
113 | if (current->mm && | ||
114 | (address > current->mm->start_code) && | ||
115 | (address < current->mm->end_code)) | ||
116 | offset = address - current->mm->start_code; | ||
117 | else | ||
118 | offset = (address - vma->vm_start) + (vma->vm_pgoff << PAGE_SHIFT); | ||
119 | |||
109 | write_unlock_irq(&tasklist_lock); | 120 | write_unlock_irq(&tasklist_lock); |
110 | return printk("<0x%p> [ %s + 0x%lx ]", | 121 | return printk("<0x%p> [ %s + 0x%lx ]", |
111 | (void*)address, name, | 122 | (void*)address, name, offset); |
112 | (unsigned long) | ||
113 | ((address - vma->vm_start) + | ||
114 | (vma->vm_pgoff << PAGE_SHIFT))); | ||
115 | } | 123 | } |
116 | 124 | ||
117 | vml = vml->next; | 125 | vml = vml->next; |
diff --git a/arch/blackfin/lib/ins.S b/arch/blackfin/lib/ins.S index 730d2b427538..7d5e9846311d 100644 --- a/arch/blackfin/lib/ins.S +++ b/arch/blackfin/lib/ins.S | |||
@@ -29,6 +29,7 @@ | |||
29 | */ | 29 | */ |
30 | 30 | ||
31 | #include <linux/linkage.h> | 31 | #include <linux/linkage.h> |
32 | #include <asm/blackfin.h> | ||
32 | 33 | ||
33 | .align 2 | 34 | .align 2 |
34 | 35 | ||
@@ -39,11 +40,14 @@ ENTRY(_insl) | |||
39 | P2 = R2; /* P2 = count */ | 40 | P2 = R2; /* P2 = count */ |
40 | SSYNC; | 41 | SSYNC; |
41 | LSETUP( .Llong_loop_s, .Llong_loop_e) LC0 = P2; | 42 | LSETUP( .Llong_loop_s, .Llong_loop_e) LC0 = P2; |
42 | .Llong_loop_s: R0 = [P0]; | 43 | .Llong_loop_s: R0 = [P0]; |
43 | .Llong_loop_e: [P1++] = R0; | 44 | [P1++] = R0; |
45 | NOP; | ||
46 | .Llong_loop_e: NOP; | ||
44 | sti R3; | 47 | sti R3; |
45 | RTS; | 48 | RTS; |
46 | 49 | ||
50 | |||
47 | ENTRY(_insw) | 51 | ENTRY(_insw) |
48 | P0 = R0; /* P0 = port */ | 52 | P0 = R0; /* P0 = port */ |
49 | cli R3; | 53 | cli R3; |
@@ -51,8 +55,10 @@ ENTRY(_insw) | |||
51 | P2 = R2; /* P2 = count */ | 55 | P2 = R2; /* P2 = count */ |
52 | SSYNC; | 56 | SSYNC; |
53 | LSETUP( .Lword_loop_s, .Lword_loop_e) LC0 = P2; | 57 | LSETUP( .Lword_loop_s, .Lword_loop_e) LC0 = P2; |
54 | .Lword_loop_s: R0 = W[P0]; | 58 | .Lword_loop_s: R0 = W[P0]; |
55 | .Lword_loop_e: W[P1++] = R0; | 59 | W[P1++] = R0; |
60 | NOP; | ||
61 | .Lword_loop_e: NOP; | ||
56 | sti R3; | 62 | sti R3; |
57 | RTS; | 63 | RTS; |
58 | 64 | ||
@@ -63,7 +69,9 @@ ENTRY(_insb) | |||
63 | P2 = R2; /* P2 = count */ | 69 | P2 = R2; /* P2 = count */ |
64 | SSYNC; | 70 | SSYNC; |
65 | LSETUP( .Lbyte_loop_s, .Lbyte_loop_e) LC0 = P2; | 71 | LSETUP( .Lbyte_loop_s, .Lbyte_loop_e) LC0 = P2; |
66 | .Lbyte_loop_s: R0 = B[P0]; | 72 | .Lbyte_loop_s: R0 = B[P0]; |
67 | .Lbyte_loop_e: B[P1++] = R0; | 73 | B[P1++] = R0; |
74 | NOP; | ||
75 | .Lbyte_loop_e: NOP; | ||
68 | sti R3; | 76 | sti R3; |
69 | RTS; | 77 | RTS; |
diff --git a/arch/blackfin/mach-bf533/boards/stamp.c b/arch/blackfin/mach-bf533/boards/stamp.c index d7b3a5d74e8c..9a472fe15833 100644 --- a/arch/blackfin/mach-bf533/boards/stamp.c +++ b/arch/blackfin/mach-bf533/boards/stamp.c | |||
@@ -164,6 +164,13 @@ static struct bfin5xx_spi_chip ad5304_chip_info = { | |||
164 | }; | 164 | }; |
165 | #endif | 165 | #endif |
166 | 166 | ||
167 | #if defined(CONFIG_SPI_MMC) || defined(CONFIG_SPI_MMC_MODULE) | ||
168 | static struct bfin5xx_spi_chip spi_mmc_chip_info = { | ||
169 | .enable_dma = 1, | ||
170 | .bits_per_word = 8, | ||
171 | }; | ||
172 | #endif | ||
173 | |||
167 | static struct spi_board_info bfin_spi_board_info[] __initdata = { | 174 | static struct spi_board_info bfin_spi_board_info[] __initdata = { |
168 | #if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE) | 175 | #if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE) |
169 | { | 176 | { |
@@ -199,6 +206,27 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = { | |||
199 | }, | 206 | }, |
200 | #endif | 207 | #endif |
201 | 208 | ||
209 | #if defined(CONFIG_SPI_MMC) || defined(CONFIG_SPI_MMC_MODULE) | ||
210 | { | ||
211 | .modalias = "spi_mmc_dummy", | ||
212 | .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */ | ||
213 | .bus_num = 1, | ||
214 | .chip_select = 0, | ||
215 | .platform_data = NULL, | ||
216 | .controller_data = &spi_mmc_chip_info, | ||
217 | .mode = SPI_MODE_3, | ||
218 | }, | ||
219 | { | ||
220 | .modalias = "spi_mmc", | ||
221 | .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */ | ||
222 | .bus_num = 1, | ||
223 | .chip_select = CONFIG_SPI_MMC_CS_CHAN, | ||
224 | .platform_data = NULL, | ||
225 | .controller_data = &spi_mmc_chip_info, | ||
226 | .mode = SPI_MODE_3, | ||
227 | }, | ||
228 | #endif | ||
229 | |||
202 | #if defined(CONFIG_PBX) | 230 | #if defined(CONFIG_PBX) |
203 | { | 231 | { |
204 | .modalias = "fxs-spi", | 232 | .modalias = "fxs-spi", |
@@ -310,12 +338,25 @@ static struct platform_device *stamp_devices[] __initdata = { | |||
310 | 338 | ||
311 | static int __init stamp_init(void) | 339 | static int __init stamp_init(void) |
312 | { | 340 | { |
341 | int ret; | ||
342 | |||
313 | printk(KERN_INFO "%s(): registering device resources\n", __FUNCTION__); | 343 | printk(KERN_INFO "%s(): registering device resources\n", __FUNCTION__); |
314 | platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); | 344 | ret = platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); |
345 | if (ret < 0) | ||
346 | return ret; | ||
347 | |||
348 | #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) | ||
349 | # if defined(CONFIG_BFIN_SHARED_FLASH_ENET) | ||
350 | /* setup BF533_STAMP CPLD to route AMS3 to Ethernet MAC */ | ||
351 | bfin_write_FIO_DIR(bfin_read_FIO_DIR() | (1 << CONFIG_ENET_FLASH_PIN)); | ||
352 | bfin_write_FIO_FLAG_S(1 << CONFIG_ENET_FLASH_PIN); | ||
353 | SSYNC(); | ||
354 | # endif | ||
355 | #endif | ||
356 | |||
315 | #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE) | 357 | #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE) |
316 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); | 358 | return spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); |
317 | #endif | 359 | #endif |
318 | return 0; | ||
319 | } | 360 | } |
320 | 361 | ||
321 | arch_initcall(stamp_init); | 362 | arch_initcall(stamp_init); |
diff --git a/arch/blackfin/mach-bf533/head.S b/arch/blackfin/mach-bf533/head.S index 4808edb0680f..4db9e6240906 100644 --- a/arch/blackfin/mach-bf533/head.S +++ b/arch/blackfin/mach-bf533/head.S | |||
@@ -173,7 +173,8 @@ ENTRY(__stext) | |||
173 | STI R2; | 173 | STI R2; |
174 | #endif | 174 | #endif |
175 | 175 | ||
176 | /* Initialise UART */ | 176 | /* Initialise UART - when booting from u-boot, the UART is not disabled |
177 | * so if we dont initalize here, our serial console gets hosed */ | ||
177 | p0.h = hi(UART_LCR); | 178 | p0.h = hi(UART_LCR); |
178 | p0.l = lo(UART_LCR); | 179 | p0.l = lo(UART_LCR); |
179 | r0 = 0x0(Z); | 180 | r0 = 0x0(Z); |
@@ -468,12 +469,6 @@ ENTRY(_bfin_reset) | |||
468 | w[p0] = r0.l; | 469 | w[p0] = r0.l; |
469 | #endif | 470 | #endif |
470 | 471 | ||
471 | /* Clear the bits 13-15 in SWRST if they werent cleared */ | ||
472 | p0.h = hi(SWRST); | ||
473 | p0.l = lo(SWRST); | ||
474 | csync; | ||
475 | r0.l = w[p0]; | ||
476 | |||
477 | /* Clear the IMASK register */ | 472 | /* Clear the IMASK register */ |
478 | p0.h = hi(IMASK); | 473 | p0.h = hi(IMASK); |
479 | p0.l = lo(IMASK); | 474 | p0.l = lo(IMASK); |
@@ -487,66 +482,30 @@ ENTRY(_bfin_reset) | |||
487 | [p0] = r0; | 482 | [p0] = r0; |
488 | SSYNC; | 483 | SSYNC; |
489 | 484 | ||
490 | /* Disable the WDOG TIMER */ | 485 | /* make sure SYSCR is set to use BMODE */ |
491 | p0.h = hi(WDOG_CTL); | 486 | P0.h = hi(SYSCR); |
492 | p0.l = lo(WDOG_CTL); | 487 | P0.l = lo(SYSCR); |
493 | r0.l = 0xAD6; | 488 | R0.l = 0x0; |
494 | w[p0] = r0.l; | 489 | W[P0] = R0.l; |
495 | SSYNC; | ||
496 | |||
497 | /* Clear the sticky bit incase it is already set */ | ||
498 | p0.h = hi(WDOG_CTL); | ||
499 | p0.l = lo(WDOG_CTL); | ||
500 | r0.l = 0x8AD6; | ||
501 | w[p0] = r0.l; | ||
502 | SSYNC; | ||
503 | |||
504 | /* Program the count value */ | ||
505 | R0.l = 0x100; | ||
506 | R0.h = 0x0; | ||
507 | P0.h = hi(WDOG_CNT); | ||
508 | P0.l = lo(WDOG_CNT); | ||
509 | [P0] = R0; | ||
510 | SSYNC; | 490 | SSYNC; |
511 | 491 | ||
512 | /* Program WDOG_STAT if necessary */ | 492 | /* issue a system soft reset */ |
513 | P0.h = hi(WDOG_CTL); | 493 | P1.h = hi(SWRST); |
514 | P0.l = lo(WDOG_CTL); | 494 | P1.l = lo(SWRST); |
515 | R0 = W[P0](Z); | 495 | R1.l = 0x0007; |
516 | CC = BITTST(R0,1); | 496 | W[P1] = R1; |
517 | if !CC JUMP .LWRITESTAT; | ||
518 | CC = BITTST(R0,2); | ||
519 | if !CC JUMP .LWRITESTAT; | ||
520 | JUMP .LSKIP_WRITE; | ||
521 | |||
522 | .LWRITESTAT: | ||
523 | /* When watch dog timer is enabled, a write to STAT will load the contents of CNT to STAT */ | ||
524 | R0 = 0x0000(z); | ||
525 | P0.h = hi(WDOG_STAT); | ||
526 | P0.l = lo(WDOG_STAT) | ||
527 | [P0] = R0; | ||
528 | SSYNC; | 497 | SSYNC; |
529 | 498 | ||
530 | .LSKIP_WRITE: | 499 | /* clear system soft reset */ |
531 | /* Enable the reset event */ | 500 | R0.l = 0x0000; |
532 | P0.h = hi(WDOG_CTL); | 501 | W[P0] = R0; |
533 | P0.l = lo(WDOG_CTL); | ||
534 | R0 = W[P0](Z); | ||
535 | BITCLR(R0,1); | ||
536 | BITCLR(R0,2); | ||
537 | W[P0] = R0.L; | ||
538 | SSYNC; | ||
539 | NOP; | ||
540 | |||
541 | /* Enable the wdog counter */ | ||
542 | R0 = W[P0](Z); | ||
543 | BITCLR(R0,4); | ||
544 | W[P0] = R0.L; | ||
545 | SSYNC; | 502 | SSYNC; |
546 | 503 | ||
547 | IDLE; | 504 | /* issue core reset */ |
505 | raise 1; | ||
548 | 506 | ||
549 | RTS; | 507 | RTS; |
508 | ENDPROC(_bfin_reset) | ||
550 | 509 | ||
551 | #if CONFIG_DEBUG_KERNEL_START | 510 | #if CONFIG_DEBUG_KERNEL_START |
552 | debug_kernel_start_trap: | 511 | debug_kernel_start_trap: |
diff --git a/arch/blackfin/mach-bf537/cpu.c b/arch/blackfin/mach-bf537/cpu.c index 2d83b7e35469..0442c4c7f723 100644 --- a/arch/blackfin/mach-bf537/cpu.c +++ b/arch/blackfin/mach-bf537/cpu.c | |||
@@ -43,13 +43,13 @@ | |||
43 | #define VCO1 (CONFIG_CLKIN_HZ*9) /*99532800 */ | 43 | #define VCO1 (CONFIG_CLKIN_HZ*9) /*99532800 */ |
44 | #define VCO(x) VCO##x | 44 | #define VCO(x) VCO##x |
45 | 45 | ||
46 | #define FREQ(x) {VCO(x),VCO(x)/4},{VCO(x),VCO(x)/2},{VCO(x),VCO(x)} | 46 | #define MFREQ(x) {VCO(x),VCO(x)/4},{VCO(x),VCO(x)/2},{VCO(x),VCO(x)} |
47 | /* frequency */ | 47 | /* frequency */ |
48 | static struct cpufreq_frequency_table bf537_freq_table[] = { | 48 | static struct cpufreq_frequency_table bf537_freq_table[] = { |
49 | FREQ(1), | 49 | MFREQ(1), |
50 | FREQ(3), | 50 | MFREQ(3), |
51 | {VCO4, VCO4 / 2}, {VCO4, VCO4}, | 51 | {VCO4, VCO4 / 2}, {VCO4, VCO4}, |
52 | FREQ(5), | 52 | MFREQ(5), |
53 | {0, CPUFREQ_TABLE_END}, | 53 | {0, CPUFREQ_TABLE_END}, |
54 | }; | 54 | }; |
55 | 55 | ||
@@ -59,13 +59,14 @@ static struct cpufreq_frequency_table bf537_freq_table[] = { | |||
59 | */ | 59 | */ |
60 | static int bf537_getfreq(unsigned int cpu) | 60 | static int bf537_getfreq(unsigned int cpu) |
61 | { | 61 | { |
62 | unsigned long cclk_mhz, vco_mhz; | 62 | unsigned long cclk_mhz; |
63 | 63 | ||
64 | /* The driver only support single cpu */ | 64 | /* The driver only support single cpu */ |
65 | if (cpu == 0) | 65 | if (cpu == 0) |
66 | dpmc_fops.ioctl(NULL, NULL, IOCTL_GET_CORECLOCK, &cclk_mhz); | 66 | dpmc_fops.ioctl(NULL, NULL, IOCTL_GET_CORECLOCK, &cclk_mhz); |
67 | else | 67 | else |
68 | cclk_mhz = -1; | 68 | cclk_mhz = -1; |
69 | |||
69 | return cclk_mhz; | 70 | return cclk_mhz; |
70 | } | 71 | } |
71 | 72 | ||
@@ -75,13 +76,12 @@ static int bf537_target(struct cpufreq_policy *policy, | |||
75 | unsigned long cclk_mhz; | 76 | unsigned long cclk_mhz; |
76 | unsigned long vco_mhz; | 77 | unsigned long vco_mhz; |
77 | unsigned long flags; | 78 | unsigned long flags; |
78 | unsigned int index, vco_index; | 79 | unsigned int index; |
79 | int i; | ||
80 | |||
81 | struct cpufreq_freqs freqs; | 80 | struct cpufreq_freqs freqs; |
82 | if (cpufreq_frequency_table_target | 81 | |
83 | (policy, bf537_freq_table, target_freq, relation, &index)) | 82 | if (cpufreq_frequency_table_target(policy, bf537_freq_table, target_freq, relation, &index)) |
84 | return -EINVAL; | 83 | return -EINVAL; |
84 | |||
85 | cclk_mhz = bf537_freq_table[index].frequency; | 85 | cclk_mhz = bf537_freq_table[index].frequency; |
86 | vco_mhz = bf537_freq_table[index].index; | 86 | vco_mhz = bf537_freq_table[index].index; |
87 | 87 | ||
@@ -114,8 +114,6 @@ static int bf537_verify_speed(struct cpufreq_policy *policy) | |||
114 | 114 | ||
115 | static int __init __bf537_cpu_init(struct cpufreq_policy *policy) | 115 | static int __init __bf537_cpu_init(struct cpufreq_policy *policy) |
116 | { | 116 | { |
117 | int result; | ||
118 | |||
119 | if (policy->cpu != 0) | 117 | if (policy->cpu != 0) |
120 | return -EINVAL; | 118 | return -EINVAL; |
121 | 119 | ||
diff --git a/arch/blackfin/mach-bf537/head.S b/arch/blackfin/mach-bf537/head.S index d104e1d8e07a..2c2652bee7e5 100644 --- a/arch/blackfin/mach-bf537/head.S +++ b/arch/blackfin/mach-bf537/head.S | |||
@@ -181,7 +181,8 @@ ENTRY(__stext) | |||
181 | SSYNC; | 181 | SSYNC; |
182 | #endif | 182 | #endif |
183 | 183 | ||
184 | /*Initialise UART*/ | 184 | /* Initialise UART - when booting from u-boot, the UART is not disabled |
185 | * so if we dont initalize here, our serial console gets hosed */ | ||
185 | p0.h = hi(UART_LCR); | 186 | p0.h = hi(UART_LCR); |
186 | p0.l = lo(UART_LCR); | 187 | p0.l = lo(UART_LCR); |
187 | r0 = 0x0(Z); | 188 | r0 = 0x0(Z); |
@@ -469,47 +470,41 @@ ENTRY(_bfin_reset) | |||
469 | SSYNC; | 470 | SSYNC; |
470 | 471 | ||
471 | #if defined(CONFIG_MTD_M25P80) | 472 | #if defined(CONFIG_MTD_M25P80) |
472 | /* | 473 | /* |
473 | * The following code fix the SPI flash reboot issue, | 474 | * The following code fix the SPI flash reboot issue, |
474 | * /CS signal of the chip which is using PF10 return to GPIO mode | 475 | * /CS signal of the chip which is using PF10 return to GPIO mode |
475 | */ | 476 | */ |
476 | p0.h = hi(PORTF_FER); | 477 | p0.h = hi(PORTF_FER); |
477 | p0.l = lo(PORTF_FER); | 478 | p0.l = lo(PORTF_FER); |
478 | r0.l = 0x0000; | 479 | r0.l = 0x0000; |
479 | w[p0] = r0.l; | 480 | w[p0] = r0.l; |
480 | SSYNC; | 481 | SSYNC; |
481 | 482 | ||
482 | /* /CS return to high */ | 483 | /* /CS return to high */ |
483 | p0.h = hi(PORTFIO); | 484 | p0.h = hi(PORTFIO); |
484 | p0.l = lo(PORTFIO); | 485 | p0.l = lo(PORTFIO); |
485 | r0.l = 0xFFFF; | 486 | r0.l = 0xFFFF; |
486 | w[p0] = r0.l; | 487 | w[p0] = r0.l; |
487 | SSYNC; | 488 | SSYNC; |
488 | 489 | ||
489 | /* Delay some time, This is necessary */ | 490 | /* Delay some time, This is necessary */ |
490 | r1.h = 0; | 491 | r1.h = 0; |
491 | r1.l = 0x400; | 492 | r1.l = 0x400; |
492 | p1 = r1; | 493 | p1 = r1; |
493 | lsetup (_delay_lab1,_delay_lab1_end ) lc1 = p1; | 494 | lsetup (.L_delay_lab1, .L_delay_lab1_end) lc1 = p1; |
494 | _delay_lab1: | 495 | .L_delay_lab1: |
495 | r0.h = 0; | 496 | r0.h = 0; |
496 | r0.l = 0x8000; | 497 | r0.l = 0x8000; |
497 | p0 = r0; | 498 | p0 = r0; |
498 | lsetup (_delay_lab0,_delay_lab0_end ) lc0 = p0; | 499 | lsetup (.L_delay_lab0, .L_delay_lab0_end) lc0 = p0; |
499 | _delay_lab0: | 500 | .L_delay_lab0: |
500 | nop; | 501 | nop; |
501 | _delay_lab0_end: | 502 | .L_delay_lab0_end: |
502 | nop; | 503 | nop; |
503 | _delay_lab1_end: | 504 | .L_delay_lab1_end: |
504 | nop; | 505 | nop; |
505 | #endif | 506 | #endif |
506 | 507 | ||
507 | /* Clear the bits 13-15 in SWRST if they werent cleared */ | ||
508 | p0.h = hi(SWRST); | ||
509 | p0.l = lo(SWRST); | ||
510 | csync; | ||
511 | r0.l = w[p0]; | ||
512 | |||
513 | /* Clear the IMASK register */ | 508 | /* Clear the IMASK register */ |
514 | p0.h = hi(IMASK); | 509 | p0.h = hi(IMASK); |
515 | p0.l = lo(IMASK); | 510 | p0.l = lo(IMASK); |
@@ -523,68 +518,30 @@ _delay_lab1_end: | |||
523 | [p0] = r0; | 518 | [p0] = r0; |
524 | SSYNC; | 519 | SSYNC; |
525 | 520 | ||
526 | /* Disable the WDOG TIMER */ | 521 | /* make sure SYSCR is set to use BMODE */ |
527 | p0.h = hi(WDOG_CTL); | 522 | P0.h = hi(SYSCR); |
528 | p0.l = lo(WDOG_CTL); | 523 | P0.l = lo(SYSCR); |
529 | r0.l = 0xAD6; | 524 | R0.l = 0x0; |
530 | w[p0] = r0.l; | 525 | W[P0] = R0.l; |
531 | SSYNC; | ||
532 | |||
533 | /* Clear the sticky bit incase it is already set */ | ||
534 | p0.h = hi(WDOG_CTL); | ||
535 | p0.l = lo(WDOG_CTL); | ||
536 | r0.l = 0x8AD6; | ||
537 | w[p0] = r0.l; | ||
538 | SSYNC; | ||
539 | |||
540 | /* Program the count value */ | ||
541 | R0.l = 0x100; | ||
542 | R0.h = 0x0; | ||
543 | P0.h = hi(WDOG_CNT); | ||
544 | P0.l = lo(WDOG_CNT); | ||
545 | [P0] = R0; | ||
546 | SSYNC; | ||
547 | |||
548 | /* Program WDOG_STAT if necessary */ | ||
549 | P0.h = hi(WDOG_CTL); | ||
550 | P0.l = lo(WDOG_CTL); | ||
551 | R0 = W[P0](Z); | ||
552 | CC = BITTST(R0,1); | ||
553 | if !CC JUMP .LWRITESTAT; | ||
554 | CC = BITTST(R0,2); | ||
555 | if !CC JUMP .LWRITESTAT; | ||
556 | JUMP .LSKIP_WRITE; | ||
557 | |||
558 | .LWRITESTAT: | ||
559 | /* When watch dog timer is enabled, | ||
560 | * a write to STAT will load the contents of CNT to STAT | ||
561 | */ | ||
562 | R0 = 0x0000(z); | ||
563 | P0.h = hi(WDOG_STAT); | ||
564 | P0.l = lo(WDOG_STAT) | ||
565 | [P0] = R0; | ||
566 | SSYNC; | 526 | SSYNC; |
567 | 527 | ||
568 | .LSKIP_WRITE: | 528 | /* issue a system soft reset */ |
569 | /* Enable the reset event */ | 529 | P1.h = hi(SWRST); |
570 | P0.h = hi(WDOG_CTL); | 530 | P1.l = lo(SWRST); |
571 | P0.l = lo(WDOG_CTL); | 531 | R1.l = 0x0007; |
572 | R0 = W[P0](Z); | 532 | W[P1] = R1; |
573 | BITCLR(R0,1); | ||
574 | BITCLR(R0,2); | ||
575 | W[P0] = R0.L; | ||
576 | SSYNC; | 533 | SSYNC; |
577 | NOP; | ||
578 | 534 | ||
579 | /* Enable the wdog counter */ | 535 | /* clear system soft reset */ |
580 | R0 = W[P0](Z); | 536 | R0.l = 0x0000; |
581 | BITCLR(R0,4); | 537 | W[P0] = R0; |
582 | W[P0] = R0.L; | ||
583 | SSYNC; | 538 | SSYNC; |
584 | 539 | ||
585 | IDLE; | 540 | /* issue core reset */ |
541 | raise 1; | ||
586 | 542 | ||
587 | RTS; | 543 | RTS; |
544 | ENDPROC(_bfin_reset) | ||
588 | 545 | ||
589 | .data | 546 | .data |
590 | 547 | ||
diff --git a/arch/blackfin/mach-bf561/boards/Makefile b/arch/blackfin/mach-bf561/boards/Makefile index 886edc739ab4..495a1cf9d452 100644 --- a/arch/blackfin/mach-bf561/boards/Makefile +++ b/arch/blackfin/mach-bf561/boards/Makefile | |||
@@ -3,5 +3,6 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | obj-$(CONFIG_GENERIC_BOARD) += generic_board.o | 5 | obj-$(CONFIG_GENERIC_BOARD) += generic_board.o |
6 | obj-$(CONFIG_BFIN561_EZKIT) += ezkit.o | ||
7 | obj-$(CONFIG_BFIN561_BLUETECHNIX_CM) += cm_bf561.o | 6 | obj-$(CONFIG_BFIN561_BLUETECHNIX_CM) += cm_bf561.o |
7 | obj-$(CONFIG_BFIN561_EZKIT) += ezkit.o | ||
8 | obj-$(CONFIG_BFIN561_TEPLA) += tepla.o | ||
diff --git a/arch/blackfin/mach-bf561/boards/ezkit.c b/arch/blackfin/mach-bf561/boards/ezkit.c index 14eb4f9a68ea..9720b5c307ab 100644 --- a/arch/blackfin/mach-bf561/boards/ezkit.c +++ b/arch/blackfin/mach-bf561/boards/ezkit.c | |||
@@ -32,12 +32,61 @@ | |||
32 | #include <linux/spi/spi.h> | 32 | #include <linux/spi/spi.h> |
33 | #include <asm/irq.h> | 33 | #include <asm/irq.h> |
34 | #include <asm/bfin5xx_spi.h> | 34 | #include <asm/bfin5xx_spi.h> |
35 | #include <linux/interrupt.h> | ||
36 | #include <linux/irq.h> | ||
35 | 37 | ||
36 | /* | 38 | /* |
37 | * Name the Board for the /proc/cpuinfo | 39 | * Name the Board for the /proc/cpuinfo |
38 | */ | 40 | */ |
39 | char *bfin_board_name = "ADDS-BF561-EZKIT"; | 41 | char *bfin_board_name = "ADDS-BF561-EZKIT"; |
40 | 42 | ||
43 | #define ISP1761_BASE 0x2C0F0000 | ||
44 | #define ISP1761_IRQ IRQ_PF10 | ||
45 | |||
46 | #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE) | ||
47 | static struct resource bfin_isp1761_resources[] = { | ||
48 | [0] = { | ||
49 | .name = "isp1761-regs", | ||
50 | .start = ISP1761_BASE + 0x00000000, | ||
51 | .end = ISP1761_BASE + 0x000fffff, | ||
52 | .flags = IORESOURCE_MEM, | ||
53 | }, | ||
54 | [1] = { | ||
55 | .start = ISP1761_IRQ, | ||
56 | .end = ISP1761_IRQ, | ||
57 | .flags = IORESOURCE_IRQ, | ||
58 | }, | ||
59 | }; | ||
60 | |||
61 | static struct platform_device bfin_isp1761_device = { | ||
62 | .name = "isp1761", | ||
63 | .id = 0, | ||
64 | .num_resources = ARRAY_SIZE(bfin_isp1761_resources), | ||
65 | .resource = bfin_isp1761_resources, | ||
66 | }; | ||
67 | |||
68 | static struct platform_device *bfin_isp1761_devices[] = { | ||
69 | &bfin_isp1761_device, | ||
70 | }; | ||
71 | |||
72 | int __init bfin_isp1761_init(void) | ||
73 | { | ||
74 | unsigned int num_devices=ARRAY_SIZE(bfin_isp1761_devices); | ||
75 | |||
76 | printk(KERN_INFO "%s(): registering device resources\n", __FUNCTION__); | ||
77 | set_irq_type(ISP1761_IRQ, IRQF_TRIGGER_FALLING); | ||
78 | |||
79 | return platform_add_devices(bfin_isp1761_devices, num_devices); | ||
80 | } | ||
81 | |||
82 | void __exit bfin_isp1761_exit(void) | ||
83 | { | ||
84 | platform_device_unregister(&bfin_isp1761_device); | ||
85 | } | ||
86 | |||
87 | arch_initcall(bfin_isp1761_init); | ||
88 | #endif | ||
89 | |||
41 | /* | 90 | /* |
42 | * USB-LAN EzExtender board | 91 | * USB-LAN EzExtender board |
43 | * Driver needs to know address, irq and flag pin. | 92 | * Driver needs to know address, irq and flag pin. |
@@ -135,13 +184,18 @@ static int __init ezkit_init(void) | |||
135 | { | 184 | { |
136 | int ret; | 185 | int ret; |
137 | 186 | ||
138 | printk(KERN_INFO "%s(): registering device resources\n", __FUNCTION__); | 187 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
139 | ret = platform_add_devices(ezkit_devices, | 188 | |
140 | ARRAY_SIZE(ezkit_devices)); | 189 | ret = platform_add_devices(ezkit_devices, ARRAY_SIZE(ezkit_devices)); |
141 | if (ret < 0) | 190 | if (ret < 0) |
142 | return ret; | 191 | return ret; |
143 | return spi_register_board_info(bfin_spi_board_info, | 192 | |
144 | ARRAY_SIZE(bfin_spi_board_info)); | 193 | #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) |
194 | bfin_write_FIO0_DIR(bfin_read_FIO0_DIR() | (1 << 12)); | ||
195 | SSYNC(); | ||
196 | #endif | ||
197 | |||
198 | return spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); | ||
145 | } | 199 | } |
146 | 200 | ||
147 | arch_initcall(ezkit_init); | 201 | arch_initcall(ezkit_init); |
diff --git a/arch/blackfin/mach-bf561/boards/tepla.c b/arch/blackfin/mach-bf561/boards/tepla.c new file mode 100644 index 000000000000..db308c7ccabb --- /dev/null +++ b/arch/blackfin/mach-bf561/boards/tepla.c | |||
@@ -0,0 +1,61 @@ | |||
1 | /* | ||
2 | * File: arch/blackfin/mach-bf561/tepla.c | ||
3 | * | ||
4 | * Copyright 2004-2007 Analog Devices Inc. | ||
5 | * Only SMSC91C1111 was registered, may do more later. | ||
6 | * | ||
7 | * Copyright 2005 National ICT Australia (NICTA), Aidan Williams <aidan@nicta.com.au> | ||
8 | * Thanks to Jamey Hicks. | ||
9 | * | ||
10 | * This program is free software; you can redistribute it and/or modify | ||
11 | * it under the terms of the GNU General Public License version 2 as | ||
12 | * published by the Free Software Foundation. | ||
13 | */ | ||
14 | |||
15 | #include <linux/device.h> | ||
16 | #include <linux/platform_device.h> | ||
17 | #include <asm/irq.h> | ||
18 | |||
19 | char *bfin_board_name = "Tepla-BF561"; | ||
20 | |||
21 | /* | ||
22 | * Driver needs to know address, irq and flag pin. | ||
23 | */ | ||
24 | static struct resource smc91x_resources[] = { | ||
25 | { | ||
26 | .start = 0x2C000300, | ||
27 | .end = 0x2C000320, | ||
28 | .flags = IORESOURCE_MEM, | ||
29 | },{ | ||
30 | .start = IRQ_PROG_INTB, | ||
31 | .end = IRQ_PROG_INTB, | ||
32 | .flags = IORESOURCE_IRQ|IORESOURCE_IRQ_HIGHLEVEL, | ||
33 | },{ | ||
34 | /* | ||
35 | * denotes the flag pin and is used directly if | ||
36 | * CONFIG_IRQCHIP_DEMUX_GPIO is defined. | ||
37 | */ | ||
38 | .start = IRQ_PF7, | ||
39 | .end = IRQ_PF7, | ||
40 | .flags = IORESOURCE_IRQ|IORESOURCE_IRQ_HIGHLEVEL, | ||
41 | }, | ||
42 | }; | ||
43 | |||
44 | static struct platform_device smc91x_device = { | ||
45 | .name = "smc91x", | ||
46 | .id = 0, | ||
47 | .num_resources = ARRAY_SIZE(smc91x_resources), | ||
48 | .resource = smc91x_resources, | ||
49 | }; | ||
50 | |||
51 | static struct platform_device *tepla_devices[] __initdata = { | ||
52 | &smc91x_device, | ||
53 | }; | ||
54 | |||
55 | static int __init tepla_init(void) | ||
56 | { | ||
57 | printk(KERN_INFO "%s(): registering device resources\n", __FUNCTION__); | ||
58 | return platform_add_devices(tepla_devices, ARRAY_SIZE(tepla_devices)); | ||
59 | } | ||
60 | |||
61 | arch_initcall(tepla_init); | ||
diff --git a/arch/blackfin/mach-bf561/head.S b/arch/blackfin/mach-bf561/head.S index 7bca478526b9..ad9187a866a5 100644 --- a/arch/blackfin/mach-bf561/head.S +++ b/arch/blackfin/mach-bf561/head.S | |||
@@ -127,7 +127,8 @@ ENTRY(__stext) | |||
127 | STI R2; | 127 | STI R2; |
128 | #endif | 128 | #endif |
129 | 129 | ||
130 | /* Initialise UART*/ | 130 | /* Initialise UART - when booting from u-boot, the UART is not disabled |
131 | * so if we dont initalize here, our serial console gets hosed */ | ||
131 | p0.h = hi(UART_LCR); | 132 | p0.h = hi(UART_LCR); |
132 | p0.l = lo(UART_LCR); | 133 | p0.l = lo(UART_LCR); |
133 | r0 = 0x0(Z); | 134 | r0 = 0x0(Z); |
@@ -414,12 +415,6 @@ ENTRY(_bfin_reset) | |||
414 | w[p0] = r0.l; | 415 | w[p0] = r0.l; |
415 | #endif | 416 | #endif |
416 | 417 | ||
417 | /* Clear the bits 13-15 in SWRST if they werent cleared */ | ||
418 | p0.h = hi(SICA_SWRST); | ||
419 | p0.l = lo(SICA_SWRST); | ||
420 | csync; | ||
421 | r0.l = w[p0]; | ||
422 | |||
423 | /* Clear the IMASK register */ | 418 | /* Clear the IMASK register */ |
424 | p0.h = hi(IMASK); | 419 | p0.h = hi(IMASK); |
425 | p0.l = lo(IMASK); | 420 | p0.l = lo(IMASK); |
@@ -433,68 +428,30 @@ ENTRY(_bfin_reset) | |||
433 | [p0] = r0; | 428 | [p0] = r0; |
434 | SSYNC; | 429 | SSYNC; |
435 | 430 | ||
436 | /* Disable the WDOG TIMER */ | 431 | /* make sure SYSCR is set to use BMODE */ |
437 | p0.h = hi(WDOGA_CTL); | 432 | P0.h = hi(SICA_SYSCR); |
438 | p0.l = lo(WDOGA_CTL); | 433 | P0.l = lo(SICA_SYSCR); |
439 | r0.l = 0xAD6; | 434 | R0.l = 0x20; |
440 | w[p0] = r0.l; | 435 | W[P0] = R0.l; |
441 | SSYNC; | ||
442 | |||
443 | /* Clear the sticky bit incase it is already set */ | ||
444 | p0.h = hi(WDOGA_CTL); | ||
445 | p0.l = lo(WDOGA_CTL); | ||
446 | r0.l = 0x8AD6; | ||
447 | w[p0] = r0.l; | ||
448 | SSYNC; | 436 | SSYNC; |
449 | 437 | ||
450 | /* Program the count value */ | 438 | /* issue a system soft reset */ |
451 | R0.l = 0x100; | 439 | P1.h = hi(SICA_SWRST); |
452 | R0.h = 0x0; | 440 | P1.l = lo(SICA_SWRST); |
453 | P0.h = hi(WDOGA_CNT); | 441 | R1.l = 0x0007; |
454 | P0.l = lo(WDOGA_CNT); | 442 | W[P1] = R1; |
455 | [P0] = R0; | ||
456 | SSYNC; | 443 | SSYNC; |
457 | 444 | ||
458 | /* Program WDOG_STAT if necessary */ | 445 | /* clear system soft reset */ |
459 | P0.h = hi(WDOGA_CTL); | 446 | R0.l = 0x0000; |
460 | P0.l = lo(WDOGA_CTL); | 447 | W[P0] = R0; |
461 | R0 = W[P0](Z); | ||
462 | CC = BITTST(R0,1); | ||
463 | if !CC JUMP .LWRITESTAT; | ||
464 | CC = BITTST(R0,2); | ||
465 | if !CC JUMP .LWRITESTAT; | ||
466 | JUMP .LSKIP_WRITE; | ||
467 | |||
468 | .LWRITESTAT: | ||
469 | /* When watch dog timer is enabled, | ||
470 | * a write to STAT will load the contents of CNT to STAT | ||
471 | */ | ||
472 | R0 = 0x0000(z); | ||
473 | P0.h = hi(WDOGA_STAT); | ||
474 | P0.l = lo(WDOGA_STAT) | ||
475 | [P0] = R0; | ||
476 | SSYNC; | ||
477 | |||
478 | .LSKIP_WRITE: | ||
479 | /* Enable the reset event */ | ||
480 | P0.h = hi(WDOGA_CTL); | ||
481 | P0.l = lo(WDOGA_CTL); | ||
482 | R0 = W[P0](Z); | ||
483 | BITCLR(R0,1); | ||
484 | BITCLR(R0,2); | ||
485 | W[P0] = R0.L; | ||
486 | SSYNC; | ||
487 | NOP; | ||
488 | |||
489 | /* Enable the wdog counter */ | ||
490 | R0 = W[P0](Z); | ||
491 | BITCLR(R0,4); | ||
492 | W[P0] = R0.L; | ||
493 | SSYNC; | 448 | SSYNC; |
494 | 449 | ||
495 | IDLE; | 450 | /* issue core reset */ |
451 | raise 1; | ||
496 | 452 | ||
497 | RTS; | 453 | RTS; |
454 | ENDPROC(_bfin_reset) | ||
498 | 455 | ||
499 | .data | 456 | .data |
500 | 457 | ||
diff --git a/arch/blackfin/mach-common/entry.S b/arch/blackfin/mach-common/entry.S index 8eb0a9023482..7d0368772cda 100644 --- a/arch/blackfin/mach-common/entry.S +++ b/arch/blackfin/mach-common/entry.S | |||
@@ -181,6 +181,12 @@ ENTRY(_ex_single_step) | |||
181 | 181 | ||
182 | _return_from_exception: | 182 | _return_from_exception: |
183 | DEBUG_START_HWTRACE | 183 | DEBUG_START_HWTRACE |
184 | #ifdef ANOMALY_05000257 | ||
185 | R7=LC0; | ||
186 | LC0=R7; | ||
187 | R7=LC1; | ||
188 | LC1=R7; | ||
189 | #endif | ||
184 | (R7:6,P5:4) = [sp++]; | 190 | (R7:6,P5:4) = [sp++]; |
185 | ASTAT = [sp++]; | 191 | ASTAT = [sp++]; |
186 | sp = retn; | 192 | sp = retn; |
@@ -706,6 +712,11 @@ _schedule_and_signal_from_int: | |||
706 | p1.h = _evt_system_call; | 712 | p1.h = _evt_system_call; |
707 | [p0] = p1; | 713 | [p0] = p1; |
708 | csync; | 714 | csync; |
715 | |||
716 | /* Set orig_p0 to -1 to indicate this isn't the end of a syscall. */ | ||
717 | r0 = -1 (x); | ||
718 | [sp + PT_ORIG_P0] = r0; | ||
719 | |||
709 | p1 = rets; | 720 | p1 = rets; |
710 | [sp + PT_RESERVED] = p1; | 721 | [sp + PT_RESERVED] = p1; |
711 | 722 | ||
diff --git a/arch/blackfin/mach-common/pm.c b/arch/blackfin/mach-common/pm.c index deb27272c658..afed5246dd9e 100644 --- a/arch/blackfin/mach-common/pm.c +++ b/arch/blackfin/mach-common/pm.c | |||
@@ -102,10 +102,8 @@ static int bfin_pm_prepare(suspend_state_t state) | |||
102 | switch (state) { | 102 | switch (state) { |
103 | case PM_SUSPEND_STANDBY: | 103 | case PM_SUSPEND_STANDBY: |
104 | break; | 104 | break; |
105 | case PM_SUSPEND_MEM: | ||
106 | return -ENOTSUPP; | ||
107 | 105 | ||
108 | case PM_SUSPEND_DISK: | 106 | case PM_SUSPEND_MEM: |
109 | return -ENOTSUPP; | 107 | return -ENOTSUPP; |
110 | 108 | ||
111 | default: | 109 | default: |
@@ -126,10 +124,8 @@ static int bfin_pm_enter(suspend_state_t state) | |||
126 | case PM_SUSPEND_STANDBY: | 124 | case PM_SUSPEND_STANDBY: |
127 | bfin_pm_suspend_standby_enter(); | 125 | bfin_pm_suspend_standby_enter(); |
128 | break; | 126 | break; |
129 | case PM_SUSPEND_MEM: | ||
130 | return -ENOTSUPP; | ||
131 | 127 | ||
132 | case PM_SUSPEND_DISK: | 128 | case PM_SUSPEND_MEM: |
133 | return -ENOTSUPP; | 129 | return -ENOTSUPP; |
134 | 130 | ||
135 | default: | 131 | default: |
@@ -155,9 +151,6 @@ static int bfin_pm_finish(suspend_state_t state) | |||
155 | case PM_SUSPEND_MEM: | 151 | case PM_SUSPEND_MEM: |
156 | return -ENOTSUPP; | 152 | return -ENOTSUPP; |
157 | 153 | ||
158 | case PM_SUSPEND_DISK: | ||
159 | return -ENOTSUPP; | ||
160 | |||
161 | default: | 154 | default: |
162 | return -EINVAL; | 155 | return -EINVAL; |
163 | } | 156 | } |
@@ -166,7 +159,6 @@ static int bfin_pm_finish(suspend_state_t state) | |||
166 | } | 159 | } |
167 | 160 | ||
168 | struct pm_ops bfin_pm_ops = { | 161 | struct pm_ops bfin_pm_ops = { |
169 | .pm_disk_mode = PM_DISK_PLATFORM, | ||
170 | .prepare = bfin_pm_prepare, | 162 | .prepare = bfin_pm_prepare, |
171 | .enter = bfin_pm_enter, | 163 | .enter = bfin_pm_enter, |
172 | .finish = bfin_pm_finish, | 164 | .finish = bfin_pm_finish, |
diff --git a/arch/blackfin/mm/init.c b/arch/blackfin/mm/init.c index 73f72abed432..d6cf1059560d 100644 --- a/arch/blackfin/mm/init.c +++ b/arch/blackfin/mm/init.c | |||
@@ -116,7 +116,8 @@ void paging_init(void) | |||
116 | { | 116 | { |
117 | unsigned long zones_size[MAX_NR_ZONES] = { 0, }; | 117 | unsigned long zones_size[MAX_NR_ZONES] = { 0, }; |
118 | 118 | ||
119 | zones_size[ZONE_NORMAL] = (end_mem - PAGE_OFFSET) >> PAGE_SHIFT; | 119 | zones_size[ZONE_DMA] = (end_mem - PAGE_OFFSET) >> PAGE_SHIFT; |
120 | zones_size[ZONE_NORMAL] = 0; | ||
120 | #ifdef CONFIG_HIGHMEM | 121 | #ifdef CONFIG_HIGHMEM |
121 | zones_size[ZONE_HIGHMEM] = 0; | 122 | zones_size[ZONE_HIGHMEM] = 0; |
122 | #endif | 123 | #endif |
diff --git a/arch/i386/boot/setup.S b/arch/i386/boot/setup.S index f8b3b9cda2b1..6dbcc95b2120 100644 --- a/arch/i386/boot/setup.S +++ b/arch/i386/boot/setup.S | |||
@@ -310,6 +310,8 @@ loader_ok: | |||
310 | call verify_cpu | 310 | call verify_cpu |
311 | testl %eax,%eax | 311 | testl %eax,%eax |
312 | jz cpu_ok | 312 | jz cpu_ok |
313 | movw %cs,%ax # aka SETUPSEG | ||
314 | movw %ax,%ds | ||
313 | lea cpu_panic_mess,%si | 315 | lea cpu_panic_mess,%si |
314 | call prtstr | 316 | call prtstr |
315 | 1: jmp 1b | 317 | 1: jmp 1b |
diff --git a/arch/i386/defconfig b/arch/i386/defconfig index 9da84412a831..1a3a2217b7c2 100644 --- a/arch/i386/defconfig +++ b/arch/i386/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.21-git3 | 3 | # Linux kernel version: 2.6.22-rc2 |
4 | # Tue May 1 07:30:51 2007 | 4 | # Mon May 21 13:23:44 2007 |
5 | # | 5 | # |
6 | CONFIG_X86_32=y | 6 | CONFIG_X86_32=y |
7 | CONFIG_GENERIC_TIME=y | 7 | CONFIG_GENERIC_TIME=y |
@@ -14,6 +14,7 @@ CONFIG_SEMAPHORE_SLEEPERS=y | |||
14 | CONFIG_X86=y | 14 | CONFIG_X86=y |
15 | CONFIG_MMU=y | 15 | CONFIG_MMU=y |
16 | CONFIG_ZONE_DMA=y | 16 | CONFIG_ZONE_DMA=y |
17 | CONFIG_QUICKLIST=y | ||
17 | CONFIG_GENERIC_ISA_DMA=y | 18 | CONFIG_GENERIC_ISA_DMA=y |
18 | CONFIG_GENERIC_IOMAP=y | 19 | CONFIG_GENERIC_IOMAP=y |
19 | CONFIG_GENERIC_BUG=y | 20 | CONFIG_GENERIC_BUG=y |
@@ -45,6 +46,7 @@ CONFIG_POSIX_MQUEUE=y | |||
45 | # CONFIG_AUDIT is not set | 46 | # CONFIG_AUDIT is not set |
46 | CONFIG_IKCONFIG=y | 47 | CONFIG_IKCONFIG=y |
47 | CONFIG_IKCONFIG_PROC=y | 48 | CONFIG_IKCONFIG_PROC=y |
49 | CONFIG_LOG_BUF_SHIFT=18 | ||
48 | # CONFIG_CPUSETS is not set | 50 | # CONFIG_CPUSETS is not set |
49 | CONFIG_SYSFS_DEPRECATED=y | 51 | CONFIG_SYSFS_DEPRECATED=y |
50 | # CONFIG_RELAY is not set | 52 | # CONFIG_RELAY is not set |
@@ -64,14 +66,19 @@ CONFIG_BUG=y | |||
64 | CONFIG_ELF_CORE=y | 66 | CONFIG_ELF_CORE=y |
65 | CONFIG_BASE_FULL=y | 67 | CONFIG_BASE_FULL=y |
66 | CONFIG_FUTEX=y | 68 | CONFIG_FUTEX=y |
69 | CONFIG_ANON_INODES=y | ||
67 | CONFIG_EPOLL=y | 70 | CONFIG_EPOLL=y |
71 | CONFIG_SIGNALFD=y | ||
72 | CONFIG_TIMERFD=y | ||
73 | CONFIG_EVENTFD=y | ||
68 | CONFIG_SHMEM=y | 74 | CONFIG_SHMEM=y |
69 | CONFIG_SLAB=y | ||
70 | CONFIG_VM_EVENT_COUNTERS=y | 75 | CONFIG_VM_EVENT_COUNTERS=y |
76 | CONFIG_SLAB=y | ||
77 | # CONFIG_SLUB is not set | ||
78 | # CONFIG_SLOB is not set | ||
71 | CONFIG_RT_MUTEXES=y | 79 | CONFIG_RT_MUTEXES=y |
72 | # CONFIG_TINY_SHMEM is not set | 80 | # CONFIG_TINY_SHMEM is not set |
73 | CONFIG_BASE_SMALL=0 | 81 | CONFIG_BASE_SMALL=0 |
74 | # CONFIG_SLOB is not set | ||
75 | 82 | ||
76 | # | 83 | # |
77 | # Loadable module support | 84 | # Loadable module support |
@@ -165,7 +172,7 @@ CONFIG_X86_INTEL_USERCOPY=y | |||
165 | CONFIG_X86_USE_PPRO_CHECKSUM=y | 172 | CONFIG_X86_USE_PPRO_CHECKSUM=y |
166 | CONFIG_X86_TSC=y | 173 | CONFIG_X86_TSC=y |
167 | CONFIG_X86_CMOV=y | 174 | CONFIG_X86_CMOV=y |
168 | CONFIG_X86_MINIMUM_CPU_MODEL=4 | 175 | CONFIG_X86_MINIMUM_CPU_FAMILY=4 |
169 | CONFIG_HPET_TIMER=y | 176 | CONFIG_HPET_TIMER=y |
170 | CONFIG_HPET_EMULATE_RTC=y | 177 | CONFIG_HPET_EMULATE_RTC=y |
171 | CONFIG_NR_CPUS=32 | 178 | CONFIG_NR_CPUS=32 |
@@ -211,6 +218,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
211 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 218 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
212 | CONFIG_RESOURCES_64BIT=y | 219 | CONFIG_RESOURCES_64BIT=y |
213 | CONFIG_ZONE_DMA_FLAG=1 | 220 | CONFIG_ZONE_DMA_FLAG=1 |
221 | CONFIG_NR_QUICK=1 | ||
214 | # CONFIG_HIGHPTE is not set | 222 | # CONFIG_HIGHPTE is not set |
215 | # CONFIG_MATH_EMULATION is not set | 223 | # CONFIG_MATH_EMULATION is not set |
216 | CONFIG_MTRR=y | 224 | CONFIG_MTRR=y |
@@ -237,7 +245,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
237 | CONFIG_PM=y | 245 | CONFIG_PM=y |
238 | CONFIG_PM_LEGACY=y | 246 | CONFIG_PM_LEGACY=y |
239 | # CONFIG_PM_DEBUG is not set | 247 | # CONFIG_PM_DEBUG is not set |
240 | CONFIG_PM_SYSFS_DEPRECATED=y | 248 | # CONFIG_PM_SYSFS_DEPRECATED is not set |
241 | 249 | ||
242 | # | 250 | # |
243 | # ACPI (Advanced Configuration and Power Interface) Support | 251 | # ACPI (Advanced Configuration and Power Interface) Support |
@@ -277,7 +285,7 @@ CONFIG_CPU_FREQ_GOV_PERFORMANCE=y | |||
277 | # CONFIG_CPU_FREQ_GOV_POWERSAVE is not set | 285 | # CONFIG_CPU_FREQ_GOV_POWERSAVE is not set |
278 | CONFIG_CPU_FREQ_GOV_USERSPACE=y | 286 | CONFIG_CPU_FREQ_GOV_USERSPACE=y |
279 | CONFIG_CPU_FREQ_GOV_ONDEMAND=y | 287 | CONFIG_CPU_FREQ_GOV_ONDEMAND=y |
280 | CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y | 288 | # CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set |
281 | 289 | ||
282 | # | 290 | # |
283 | # CPUFreq processor drivers | 291 | # CPUFreq processor drivers |
@@ -315,9 +323,10 @@ CONFIG_PCI_BIOS=y | |||
315 | CONFIG_PCI_DIRECT=y | 323 | CONFIG_PCI_DIRECT=y |
316 | CONFIG_PCI_MMCONFIG=y | 324 | CONFIG_PCI_MMCONFIG=y |
317 | # CONFIG_PCIEPORTBUS is not set | 325 | # CONFIG_PCIEPORTBUS is not set |
326 | CONFIG_ARCH_SUPPORTS_MSI=y | ||
318 | CONFIG_PCI_MSI=y | 327 | CONFIG_PCI_MSI=y |
319 | # CONFIG_PCI_DEBUG is not set | 328 | # CONFIG_PCI_DEBUG is not set |
320 | # CONFIG_HT_IRQ is not set | 329 | CONFIG_HT_IRQ=y |
321 | CONFIG_ISA_DMA_API=y | 330 | CONFIG_ISA_DMA_API=y |
322 | # CONFIG_ISA is not set | 331 | # CONFIG_ISA is not set |
323 | # CONFIG_MCA is not set | 332 | # CONFIG_MCA is not set |
@@ -328,10 +337,6 @@ CONFIG_K8_NB=y | |||
328 | # PCCARD (PCMCIA/CardBus) support | 337 | # PCCARD (PCMCIA/CardBus) support |
329 | # | 338 | # |
330 | # CONFIG_PCCARD is not set | 339 | # CONFIG_PCCARD is not set |
331 | |||
332 | # | ||
333 | # PCI Hotplug Support | ||
334 | # | ||
335 | # CONFIG_HOTPLUG_PCI is not set | 340 | # CONFIG_HOTPLUG_PCI is not set |
336 | 341 | ||
337 | # | 342 | # |
@@ -377,7 +382,7 @@ CONFIG_IP_PNP_DHCP=y | |||
377 | CONFIG_INET_TUNNEL=y | 382 | CONFIG_INET_TUNNEL=y |
378 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | 383 | CONFIG_INET_XFRM_MODE_TRANSPORT=y |
379 | CONFIG_INET_XFRM_MODE_TUNNEL=y | 384 | CONFIG_INET_XFRM_MODE_TUNNEL=y |
380 | # CONFIG_INET_XFRM_MODE_BEET is not set | 385 | CONFIG_INET_XFRM_MODE_BEET=y |
381 | CONFIG_INET_DIAG=y | 386 | CONFIG_INET_DIAG=y |
382 | CONFIG_INET_TCP_DIAG=y | 387 | CONFIG_INET_TCP_DIAG=y |
383 | # CONFIG_TCP_CONG_ADVANCED is not set | 388 | # CONFIG_TCP_CONG_ADVANCED is not set |
@@ -396,7 +401,7 @@ CONFIG_IPV6=y | |||
396 | # CONFIG_INET6_TUNNEL is not set | 401 | # CONFIG_INET6_TUNNEL is not set |
397 | CONFIG_INET6_XFRM_MODE_TRANSPORT=y | 402 | CONFIG_INET6_XFRM_MODE_TRANSPORT=y |
398 | CONFIG_INET6_XFRM_MODE_TUNNEL=y | 403 | CONFIG_INET6_XFRM_MODE_TUNNEL=y |
399 | # CONFIG_INET6_XFRM_MODE_BEET is not set | 404 | CONFIG_INET6_XFRM_MODE_BEET=y |
400 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | 405 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set |
401 | CONFIG_IPV6_SIT=y | 406 | CONFIG_IPV6_SIT=y |
402 | # CONFIG_IPV6_TUNNEL is not set | 407 | # CONFIG_IPV6_TUNNEL is not set |
@@ -450,7 +455,9 @@ CONFIG_IPV6_SIT=y | |||
450 | # | 455 | # |
451 | # CONFIG_CFG80211 is not set | 456 | # CONFIG_CFG80211 is not set |
452 | # CONFIG_WIRELESS_EXT is not set | 457 | # CONFIG_WIRELESS_EXT is not set |
458 | # CONFIG_MAC80211 is not set | ||
453 | # CONFIG_IEEE80211 is not set | 459 | # CONFIG_IEEE80211 is not set |
460 | # CONFIG_RFKILL is not set | ||
454 | 461 | ||
455 | # | 462 | # |
456 | # Device Drivers | 463 | # Device Drivers |
@@ -513,14 +520,12 @@ CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | |||
513 | # Misc devices | 520 | # Misc devices |
514 | # | 521 | # |
515 | # CONFIG_IBM_ASM is not set | 522 | # CONFIG_IBM_ASM is not set |
523 | # CONFIG_PHANTOM is not set | ||
516 | # CONFIG_SGI_IOC4 is not set | 524 | # CONFIG_SGI_IOC4 is not set |
517 | # CONFIG_TIFM_CORE is not set | 525 | # CONFIG_TIFM_CORE is not set |
518 | # CONFIG_SONY_LAPTOP is not set | 526 | # CONFIG_SONY_LAPTOP is not set |
519 | # CONFIG_THINKPAD_ACPI is not set | 527 | # CONFIG_THINKPAD_ACPI is not set |
520 | 528 | # CONFIG_BLINK is not set | |
521 | # | ||
522 | # ATA/ATAPI/MFM/RLL support | ||
523 | # | ||
524 | CONFIG_IDE=y | 529 | CONFIG_IDE=y |
525 | CONFIG_BLK_DEV_IDE=y | 530 | CONFIG_BLK_DEV_IDE=y |
526 | 531 | ||
@@ -537,6 +542,7 @@ CONFIG_BLK_DEV_IDECD=y | |||
537 | # CONFIG_BLK_DEV_IDESCSI is not set | 542 | # CONFIG_BLK_DEV_IDESCSI is not set |
538 | CONFIG_BLK_DEV_IDEACPI=y | 543 | CONFIG_BLK_DEV_IDEACPI=y |
539 | # CONFIG_IDE_TASK_IOCTL is not set | 544 | # CONFIG_IDE_TASK_IOCTL is not set |
545 | CONFIG_IDE_PROC_FS=y | ||
540 | 546 | ||
541 | # | 547 | # |
542 | # IDE chipset support/bugfixes | 548 | # IDE chipset support/bugfixes |
@@ -546,6 +552,7 @@ CONFIG_IDE_GENERIC=y | |||
546 | # CONFIG_BLK_DEV_IDEPNP is not set | 552 | # CONFIG_BLK_DEV_IDEPNP is not set |
547 | CONFIG_BLK_DEV_IDEPCI=y | 553 | CONFIG_BLK_DEV_IDEPCI=y |
548 | # CONFIG_IDEPCI_SHARE_IRQ is not set | 554 | # CONFIG_IDEPCI_SHARE_IRQ is not set |
555 | CONFIG_IDEPCI_PCIBUS_ORDER=y | ||
549 | # CONFIG_BLK_DEV_OFFBOARD is not set | 556 | # CONFIG_BLK_DEV_OFFBOARD is not set |
550 | # CONFIG_BLK_DEV_GENERIC is not set | 557 | # CONFIG_BLK_DEV_GENERIC is not set |
551 | # CONFIG_BLK_DEV_OPTI621 is not set | 558 | # CONFIG_BLK_DEV_OPTI621 is not set |
@@ -600,9 +607,8 @@ CONFIG_SCSI_NETLINK=y | |||
600 | CONFIG_BLK_DEV_SD=y | 607 | CONFIG_BLK_DEV_SD=y |
601 | # CONFIG_CHR_DEV_ST is not set | 608 | # CONFIG_CHR_DEV_ST is not set |
602 | # CONFIG_CHR_DEV_OSST is not set | 609 | # CONFIG_CHR_DEV_OSST is not set |
603 | CONFIG_BLK_DEV_SR=y | 610 | # CONFIG_BLK_DEV_SR is not set |
604 | # CONFIG_BLK_DEV_SR_VENDOR is not set | 611 | # CONFIG_CHR_DEV_SG is not set |
605 | CONFIG_CHR_DEV_SG=y | ||
606 | # CONFIG_CHR_DEV_SCH is not set | 612 | # CONFIG_CHR_DEV_SCH is not set |
607 | 613 | ||
608 | # | 614 | # |
@@ -612,6 +618,7 @@ CONFIG_CHR_DEV_SG=y | |||
612 | # CONFIG_SCSI_CONSTANTS is not set | 618 | # CONFIG_SCSI_CONSTANTS is not set |
613 | # CONFIG_SCSI_LOGGING is not set | 619 | # CONFIG_SCSI_LOGGING is not set |
614 | # CONFIG_SCSI_SCAN_ASYNC is not set | 620 | # CONFIG_SCSI_SCAN_ASYNC is not set |
621 | CONFIG_SCSI_WAIT_SCAN=m | ||
615 | 622 | ||
616 | # | 623 | # |
617 | # SCSI Transports | 624 | # SCSI Transports |
@@ -640,7 +647,6 @@ CONFIG_AIC7XXX_REG_PRETTY_PRINT=y | |||
640 | CONFIG_SCSI_AIC79XX=y | 647 | CONFIG_SCSI_AIC79XX=y |
641 | CONFIG_AIC79XX_CMDS_PER_DEVICE=32 | 648 | CONFIG_AIC79XX_CMDS_PER_DEVICE=32 |
642 | CONFIG_AIC79XX_RESET_DELAY_MS=4000 | 649 | CONFIG_AIC79XX_RESET_DELAY_MS=4000 |
643 | # CONFIG_AIC79XX_ENABLE_RD_STRM is not set | ||
644 | # CONFIG_AIC79XX_DEBUG_ENABLE is not set | 650 | # CONFIG_AIC79XX_DEBUG_ENABLE is not set |
645 | CONFIG_AIC79XX_DEBUG_MASK=0 | 651 | CONFIG_AIC79XX_DEBUG_MASK=0 |
646 | # CONFIG_AIC79XX_REG_PRETTY_PRINT is not set | 652 | # CONFIG_AIC79XX_REG_PRETTY_PRINT is not set |
@@ -662,7 +668,6 @@ CONFIG_AIC79XX_DEBUG_MASK=0 | |||
662 | # CONFIG_SCSI_INIA100 is not set | 668 | # CONFIG_SCSI_INIA100 is not set |
663 | # CONFIG_SCSI_STEX is not set | 669 | # CONFIG_SCSI_STEX is not set |
664 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 670 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
665 | # CONFIG_SCSI_IPR is not set | ||
666 | # CONFIG_SCSI_QLOGIC_1280 is not set | 671 | # CONFIG_SCSI_QLOGIC_1280 is not set |
667 | # CONFIG_SCSI_QLA_FC is not set | 672 | # CONFIG_SCSI_QLA_FC is not set |
668 | # CONFIG_SCSI_QLA_ISCSI is not set | 673 | # CONFIG_SCSI_QLA_ISCSI is not set |
@@ -673,79 +678,12 @@ CONFIG_AIC79XX_DEBUG_MASK=0 | |||
673 | # CONFIG_SCSI_DEBUG is not set | 678 | # CONFIG_SCSI_DEBUG is not set |
674 | # CONFIG_SCSI_ESP_CORE is not set | 679 | # CONFIG_SCSI_ESP_CORE is not set |
675 | # CONFIG_SCSI_SRP is not set | 680 | # CONFIG_SCSI_SRP is not set |
676 | 681 | # CONFIG_ATA is not set | |
677 | # | ||
678 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | ||
679 | # | ||
680 | CONFIG_ATA=y | ||
681 | # CONFIG_ATA_NONSTANDARD is not set | ||
682 | CONFIG_SATA_AHCI=y | ||
683 | CONFIG_SATA_SVW=y | ||
684 | CONFIG_ATA_PIIX=y | ||
685 | # CONFIG_SATA_MV is not set | ||
686 | CONFIG_SATA_NV=y | ||
687 | # CONFIG_PDC_ADMA is not set | ||
688 | # CONFIG_SATA_QSTOR is not set | ||
689 | # CONFIG_SATA_PROMISE is not set | ||
690 | # CONFIG_SATA_SX4 is not set | ||
691 | CONFIG_SATA_SIL=y | ||
692 | # CONFIG_SATA_SIL24 is not set | ||
693 | # CONFIG_SATA_SIS is not set | ||
694 | # CONFIG_SATA_ULI is not set | ||
695 | CONFIG_SATA_VIA=y | ||
696 | # CONFIG_SATA_VITESSE is not set | ||
697 | # CONFIG_SATA_INIC162X is not set | ||
698 | CONFIG_SATA_ACPI=y | ||
699 | # CONFIG_PATA_ALI is not set | ||
700 | # CONFIG_PATA_AMD is not set | ||
701 | # CONFIG_PATA_ARTOP is not set | ||
702 | # CONFIG_PATA_ATIIXP is not set | ||
703 | # CONFIG_PATA_CMD640_PCI is not set | ||
704 | # CONFIG_PATA_CMD64X is not set | ||
705 | # CONFIG_PATA_CS5520 is not set | ||
706 | # CONFIG_PATA_CS5530 is not set | ||
707 | # CONFIG_PATA_CS5535 is not set | ||
708 | # CONFIG_PATA_CYPRESS is not set | ||
709 | # CONFIG_PATA_EFAR is not set | ||
710 | # CONFIG_ATA_GENERIC is not set | ||
711 | # CONFIG_PATA_HPT366 is not set | ||
712 | # CONFIG_PATA_HPT37X is not set | ||
713 | # CONFIG_PATA_HPT3X2N is not set | ||
714 | # CONFIG_PATA_HPT3X3 is not set | ||
715 | # CONFIG_PATA_IT821X is not set | ||
716 | # CONFIG_PATA_IT8213 is not set | ||
717 | # CONFIG_PATA_JMICRON is not set | ||
718 | # CONFIG_PATA_TRIFLEX is not set | ||
719 | # CONFIG_PATA_MARVELL is not set | ||
720 | # CONFIG_PATA_MPIIX is not set | ||
721 | # CONFIG_PATA_OLDPIIX is not set | ||
722 | # CONFIG_PATA_NETCELL is not set | ||
723 | # CONFIG_PATA_NS87410 is not set | ||
724 | # CONFIG_PATA_OPTI is not set | ||
725 | # CONFIG_PATA_OPTIDMA is not set | ||
726 | # CONFIG_PATA_PDC_OLD is not set | ||
727 | # CONFIG_PATA_RADISYS is not set | ||
728 | # CONFIG_PATA_RZ1000 is not set | ||
729 | # CONFIG_PATA_SC1200 is not set | ||
730 | # CONFIG_PATA_SERVERWORKS is not set | ||
731 | # CONFIG_PATA_PDC2027X is not set | ||
732 | # CONFIG_PATA_SIL680 is not set | ||
733 | # CONFIG_PATA_SIS is not set | ||
734 | # CONFIG_PATA_VIA is not set | ||
735 | # CONFIG_PATA_WINBOND is not set | ||
736 | 682 | ||
737 | # | 683 | # |
738 | # Multi-device support (RAID and LVM) | 684 | # Multi-device support (RAID and LVM) |
739 | # | 685 | # |
740 | CONFIG_MD=y | 686 | # CONFIG_MD is not set |
741 | # CONFIG_BLK_DEV_MD is not set | ||
742 | CONFIG_BLK_DEV_DM=y | ||
743 | # CONFIG_DM_DEBUG is not set | ||
744 | # CONFIG_DM_CRYPT is not set | ||
745 | # CONFIG_DM_SNAPSHOT is not set | ||
746 | # CONFIG_DM_MIRROR is not set | ||
747 | # CONFIG_DM_ZERO is not set | ||
748 | # CONFIG_DM_MULTIPATH is not set | ||
749 | 687 | ||
750 | # | 688 | # |
751 | # Fusion MPT device support | 689 | # Fusion MPT device support |
@@ -760,6 +698,7 @@ CONFIG_FUSION_MAX_SGE=128 | |||
760 | # | 698 | # |
761 | # IEEE 1394 (FireWire) support | 699 | # IEEE 1394 (FireWire) support |
762 | # | 700 | # |
701 | # CONFIG_FIREWIRE is not set | ||
763 | CONFIG_IEEE1394=y | 702 | CONFIG_IEEE1394=y |
764 | 703 | ||
765 | # | 704 | # |
@@ -790,11 +729,7 @@ CONFIG_IEEE1394_RAWIO=y | |||
790 | # I2O device support | 729 | # I2O device support |
791 | # | 730 | # |
792 | # CONFIG_I2O is not set | 731 | # CONFIG_I2O is not set |
793 | 732 | # CONFIG_MACINTOSH_DRIVERS is not set | |
794 | # | ||
795 | # Macintosh device drivers | ||
796 | # | ||
797 | # CONFIG_MAC_EMUMOUSEBTN is not set | ||
798 | 733 | ||
799 | # | 734 | # |
800 | # Network device support | 735 | # Network device support |
@@ -810,10 +745,6 @@ CONFIG_NETDEVICES=y | |||
810 | # ARCnet devices | 745 | # ARCnet devices |
811 | # | 746 | # |
812 | # CONFIG_ARCNET is not set | 747 | # CONFIG_ARCNET is not set |
813 | |||
814 | # | ||
815 | # PHY device support | ||
816 | # | ||
817 | # CONFIG_PHYLIB is not set | 748 | # CONFIG_PHYLIB is not set |
818 | 749 | ||
819 | # | 750 | # |
@@ -824,9 +755,7 @@ CONFIG_MII=y | |||
824 | # CONFIG_HAPPYMEAL is not set | 755 | # CONFIG_HAPPYMEAL is not set |
825 | # CONFIG_SUNGEM is not set | 756 | # CONFIG_SUNGEM is not set |
826 | # CONFIG_CASSINI is not set | 757 | # CONFIG_CASSINI is not set |
827 | CONFIG_NET_VENDOR_3COM=y | 758 | # CONFIG_NET_VENDOR_3COM is not set |
828 | CONFIG_VORTEX=y | ||
829 | # CONFIG_TYPHOON is not set | ||
830 | 759 | ||
831 | # | 760 | # |
832 | # Tulip family network device support | 761 | # Tulip family network device support |
@@ -867,10 +796,7 @@ CONFIG_8139TOO=y | |||
867 | # CONFIG_TLAN is not set | 796 | # CONFIG_TLAN is not set |
868 | # CONFIG_VIA_RHINE is not set | 797 | # CONFIG_VIA_RHINE is not set |
869 | # CONFIG_SC92031 is not set | 798 | # CONFIG_SC92031 is not set |
870 | 799 | CONFIG_NETDEV_1000=y | |
871 | # | ||
872 | # Ethernet (1000 Mbit) | ||
873 | # | ||
874 | # CONFIG_ACENIC is not set | 800 | # CONFIG_ACENIC is not set |
875 | # CONFIG_DL2K is not set | 801 | # CONFIG_DL2K is not set |
876 | CONFIG_E1000=y | 802 | CONFIG_E1000=y |
@@ -890,16 +816,14 @@ CONFIG_TIGON3=y | |||
890 | CONFIG_BNX2=y | 816 | CONFIG_BNX2=y |
891 | # CONFIG_QLA3XXX is not set | 817 | # CONFIG_QLA3XXX is not set |
892 | # CONFIG_ATL1 is not set | 818 | # CONFIG_ATL1 is not set |
893 | 819 | CONFIG_NETDEV_10000=y | |
894 | # | ||
895 | # Ethernet (10000 Mbit) | ||
896 | # | ||
897 | # CONFIG_CHELSIO_T1 is not set | 820 | # CONFIG_CHELSIO_T1 is not set |
898 | # CONFIG_CHELSIO_T3 is not set | 821 | # CONFIG_CHELSIO_T3 is not set |
899 | # CONFIG_IXGB is not set | 822 | # CONFIG_IXGB is not set |
900 | # CONFIG_S2IO is not set | 823 | # CONFIG_S2IO is not set |
901 | # CONFIG_MYRI10GE is not set | 824 | # CONFIG_MYRI10GE is not set |
902 | # CONFIG_NETXEN_NIC is not set | 825 | # CONFIG_NETXEN_NIC is not set |
826 | # CONFIG_MLX4_CORE is not set | ||
903 | 827 | ||
904 | # | 828 | # |
905 | # Token Ring devices | 829 | # Token Ring devices |
@@ -913,8 +837,14 @@ CONFIG_BNX2=y | |||
913 | # CONFIG_WLAN_80211 is not set | 837 | # CONFIG_WLAN_80211 is not set |
914 | 838 | ||
915 | # | 839 | # |
916 | # Wan interfaces | 840 | # USB Network Adapters |
917 | # | 841 | # |
842 | # CONFIG_USB_CATC is not set | ||
843 | # CONFIG_USB_KAWETH is not set | ||
844 | # CONFIG_USB_PEGASUS is not set | ||
845 | # CONFIG_USB_RTL8150 is not set | ||
846 | # CONFIG_USB_USBNET_MII is not set | ||
847 | # CONFIG_USB_USBNET is not set | ||
918 | # CONFIG_WAN is not set | 848 | # CONFIG_WAN is not set |
919 | # CONFIG_FDDI is not set | 849 | # CONFIG_FDDI is not set |
920 | # CONFIG_HIPPI is not set | 850 | # CONFIG_HIPPI is not set |
@@ -967,9 +897,17 @@ CONFIG_KEYBOARD_ATKBD=y | |||
967 | # CONFIG_KEYBOARD_STOWAWAY is not set | 897 | # CONFIG_KEYBOARD_STOWAWAY is not set |
968 | CONFIG_INPUT_MOUSE=y | 898 | CONFIG_INPUT_MOUSE=y |
969 | CONFIG_MOUSE_PS2=y | 899 | CONFIG_MOUSE_PS2=y |
900 | CONFIG_MOUSE_PS2_ALPS=y | ||
901 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | ||
902 | CONFIG_MOUSE_PS2_SYNAPTICS=y | ||
903 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
904 | CONFIG_MOUSE_PS2_TRACKPOINT=y | ||
905 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | ||
970 | # CONFIG_MOUSE_SERIAL is not set | 906 | # CONFIG_MOUSE_SERIAL is not set |
907 | # CONFIG_MOUSE_APPLETOUCH is not set | ||
971 | # CONFIG_MOUSE_VSXXXAA is not set | 908 | # CONFIG_MOUSE_VSXXXAA is not set |
972 | # CONFIG_INPUT_JOYSTICK is not set | 909 | # CONFIG_INPUT_JOYSTICK is not set |
910 | # CONFIG_INPUT_TABLET is not set | ||
973 | # CONFIG_INPUT_TOUCHSCREEN is not set | 911 | # CONFIG_INPUT_TOUCHSCREEN is not set |
974 | # CONFIG_INPUT_MISC is not set | 912 | # CONFIG_INPUT_MISC is not set |
975 | 913 | ||
@@ -1019,10 +957,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
1019 | # IPMI | 957 | # IPMI |
1020 | # | 958 | # |
1021 | # CONFIG_IPMI_HANDLER is not set | 959 | # CONFIG_IPMI_HANDLER is not set |
1022 | |||
1023 | # | ||
1024 | # Watchdog Cards | ||
1025 | # | ||
1026 | # CONFIG_WATCHDOG is not set | 960 | # CONFIG_WATCHDOG is not set |
1027 | CONFIG_HW_RANDOM=y | 961 | CONFIG_HW_RANDOM=y |
1028 | CONFIG_HW_RANDOM_INTEL=y | 962 | CONFIG_HW_RANDOM_INTEL=y |
@@ -1031,7 +965,6 @@ CONFIG_HW_RANDOM_GEODE=y | |||
1031 | CONFIG_HW_RANDOM_VIA=y | 965 | CONFIG_HW_RANDOM_VIA=y |
1032 | # CONFIG_NVRAM is not set | 966 | # CONFIG_NVRAM is not set |
1033 | CONFIG_RTC=y | 967 | CONFIG_RTC=y |
1034 | # CONFIG_DTLK is not set | ||
1035 | # CONFIG_R3964 is not set | 968 | # CONFIG_R3964 is not set |
1036 | # CONFIG_APPLICOM is not set | 969 | # CONFIG_APPLICOM is not set |
1037 | # CONFIG_SONYPI is not set | 970 | # CONFIG_SONYPI is not set |
@@ -1056,17 +989,14 @@ CONFIG_MAX_RAW_DEVS=256 | |||
1056 | CONFIG_HPET=y | 989 | CONFIG_HPET=y |
1057 | # CONFIG_HPET_RTC_IRQ is not set | 990 | # CONFIG_HPET_RTC_IRQ is not set |
1058 | CONFIG_HPET_MMAP=y | 991 | CONFIG_HPET_MMAP=y |
1059 | # CONFIG_HANGCHECK_TIMER is not set | 992 | CONFIG_HANGCHECK_TIMER=y |
1060 | 993 | ||
1061 | # | 994 | # |
1062 | # TPM devices | 995 | # TPM devices |
1063 | # | 996 | # |
1064 | # CONFIG_TCG_TPM is not set | 997 | # CONFIG_TCG_TPM is not set |
1065 | # CONFIG_TELCLOCK is not set | 998 | # CONFIG_TELCLOCK is not set |
1066 | 999 | CONFIG_DEVPORT=y | |
1067 | # | ||
1068 | # I2C support | ||
1069 | # | ||
1070 | # CONFIG_I2C is not set | 1000 | # CONFIG_I2C is not set |
1071 | 1001 | ||
1072 | # | 1002 | # |
@@ -1079,12 +1009,7 @@ CONFIG_HPET_MMAP=y | |||
1079 | # Dallas's 1-wire bus | 1009 | # Dallas's 1-wire bus |
1080 | # | 1010 | # |
1081 | # CONFIG_W1 is not set | 1011 | # CONFIG_W1 is not set |
1082 | |||
1083 | # | ||
1084 | # Hardware Monitoring support | ||
1085 | # | ||
1086 | # CONFIG_HWMON is not set | 1012 | # CONFIG_HWMON is not set |
1087 | # CONFIG_HWMON_VID is not set | ||
1088 | 1013 | ||
1089 | # | 1014 | # |
1090 | # Multifunction device drivers | 1015 | # Multifunction device drivers |
@@ -1095,17 +1020,20 @@ CONFIG_HPET_MMAP=y | |||
1095 | # Multimedia devices | 1020 | # Multimedia devices |
1096 | # | 1021 | # |
1097 | # CONFIG_VIDEO_DEV is not set | 1022 | # CONFIG_VIDEO_DEV is not set |
1098 | 1023 | # CONFIG_DVB_CORE is not set | |
1099 | # | 1024 | CONFIG_DAB=y |
1100 | # Digital Video Broadcasting Devices | ||
1101 | # | ||
1102 | # CONFIG_DVB is not set | ||
1103 | # CONFIG_USB_DABUSB is not set | 1025 | # CONFIG_USB_DABUSB is not set |
1104 | 1026 | ||
1105 | # | 1027 | # |
1106 | # Graphics support | 1028 | # Graphics support |
1107 | # | 1029 | # |
1108 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 1030 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
1031 | |||
1032 | # | ||
1033 | # Display device support | ||
1034 | # | ||
1035 | # CONFIG_DISPLAY_SUPPORT is not set | ||
1036 | # CONFIG_VGASTATE is not set | ||
1109 | # CONFIG_FB is not set | 1037 | # CONFIG_FB is not set |
1110 | 1038 | ||
1111 | # | 1039 | # |
@@ -1114,7 +1042,7 @@ CONFIG_HPET_MMAP=y | |||
1114 | CONFIG_VGA_CONSOLE=y | 1042 | CONFIG_VGA_CONSOLE=y |
1115 | CONFIG_VGACON_SOFT_SCROLLBACK=y | 1043 | CONFIG_VGACON_SOFT_SCROLLBACK=y |
1116 | CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=128 | 1044 | CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=128 |
1117 | CONFIG_VIDEO_SELECT=y | 1045 | # CONFIG_VIDEO_SELECT is not set |
1118 | CONFIG_DUMMY_CONSOLE=y | 1046 | CONFIG_DUMMY_CONSOLE=y |
1119 | 1047 | ||
1120 | # | 1048 | # |
@@ -1131,14 +1059,10 @@ CONFIG_SOUND=y | |||
1131 | # Open Sound System | 1059 | # Open Sound System |
1132 | # | 1060 | # |
1133 | CONFIG_SOUND_PRIME=y | 1061 | CONFIG_SOUND_PRIME=y |
1134 | CONFIG_OBSOLETE_OSS=y | 1062 | # CONFIG_OSS_OBSOLETE is not set |
1135 | # CONFIG_SOUND_BT878 is not set | ||
1136 | # CONFIG_SOUND_ES1371 is not set | ||
1137 | CONFIG_SOUND_ICH=y | ||
1138 | # CONFIG_SOUND_TRIDENT is not set | 1063 | # CONFIG_SOUND_TRIDENT is not set |
1139 | # CONFIG_SOUND_MSNDCLAS is not set | 1064 | # CONFIG_SOUND_MSNDCLAS is not set |
1140 | # CONFIG_SOUND_MSNDPIN is not set | 1065 | # CONFIG_SOUND_MSNDPIN is not set |
1141 | # CONFIG_SOUND_VIA82CXXX is not set | ||
1142 | # CONFIG_SOUND_OSS is not set | 1066 | # CONFIG_SOUND_OSS is not set |
1143 | 1067 | ||
1144 | # | 1068 | # |
@@ -1217,37 +1141,10 @@ CONFIG_USB_STORAGE=y | |||
1217 | # CONFIG_USB_LIBUSUAL is not set | 1141 | # CONFIG_USB_LIBUSUAL is not set |
1218 | 1142 | ||
1219 | # | 1143 | # |
1220 | # USB Input Devices | ||
1221 | # | ||
1222 | # CONFIG_USB_AIPTEK is not set | ||
1223 | # CONFIG_USB_WACOM is not set | ||
1224 | # CONFIG_USB_ACECAD is not set | ||
1225 | # CONFIG_USB_KBTAB is not set | ||
1226 | # CONFIG_USB_POWERMATE is not set | ||
1227 | # CONFIG_USB_TOUCHSCREEN is not set | ||
1228 | # CONFIG_USB_YEALINK is not set | ||
1229 | # CONFIG_USB_XPAD is not set | ||
1230 | # CONFIG_USB_ATI_REMOTE is not set | ||
1231 | # CONFIG_USB_ATI_REMOTE2 is not set | ||
1232 | # CONFIG_USB_KEYSPAN_REMOTE is not set | ||
1233 | # CONFIG_USB_APPLETOUCH is not set | ||
1234 | # CONFIG_USB_GTCO is not set | ||
1235 | |||
1236 | # | ||
1237 | # USB Imaging devices | 1144 | # USB Imaging devices |
1238 | # | 1145 | # |
1239 | # CONFIG_USB_MDC800 is not set | 1146 | # CONFIG_USB_MDC800 is not set |
1240 | # CONFIG_USB_MICROTEK is not set | 1147 | # CONFIG_USB_MICROTEK is not set |
1241 | |||
1242 | # | ||
1243 | # USB Network Adapters | ||
1244 | # | ||
1245 | # CONFIG_USB_CATC is not set | ||
1246 | # CONFIG_USB_KAWETH is not set | ||
1247 | # CONFIG_USB_PEGASUS is not set | ||
1248 | # CONFIG_USB_RTL8150 is not set | ||
1249 | # CONFIG_USB_USBNET_MII is not set | ||
1250 | # CONFIG_USB_USBNET is not set | ||
1251 | CONFIG_USB_MON=y | 1148 | CONFIG_USB_MON=y |
1252 | 1149 | ||
1253 | # | 1150 | # |
@@ -1291,10 +1188,6 @@ CONFIG_USB_MON=y | |||
1291 | # USB Gadget Support | 1188 | # USB Gadget Support |
1292 | # | 1189 | # |
1293 | # CONFIG_USB_GADGET is not set | 1190 | # CONFIG_USB_GADGET is not set |
1294 | |||
1295 | # | ||
1296 | # MMC/SD Card support | ||
1297 | # | ||
1298 | # CONFIG_MMC is not set | 1191 | # CONFIG_MMC is not set |
1299 | 1192 | ||
1300 | # | 1193 | # |
@@ -1339,10 +1232,6 @@ CONFIG_USB_MON=y | |||
1339 | # | 1232 | # |
1340 | 1233 | ||
1341 | # | 1234 | # |
1342 | # Auxiliary Display support | ||
1343 | # | ||
1344 | |||
1345 | # | ||
1346 | # Virtualization | 1235 | # Virtualization |
1347 | # | 1236 | # |
1348 | # CONFIG_KVM is not set | 1237 | # CONFIG_KVM is not set |
@@ -1383,7 +1272,6 @@ CONFIG_DNOTIFY=y | |||
1383 | # CONFIG_AUTOFS_FS is not set | 1272 | # CONFIG_AUTOFS_FS is not set |
1384 | CONFIG_AUTOFS4_FS=y | 1273 | CONFIG_AUTOFS4_FS=y |
1385 | # CONFIG_FUSE_FS is not set | 1274 | # CONFIG_FUSE_FS is not set |
1386 | CONFIG_GENERIC_ACL=y | ||
1387 | 1275 | ||
1388 | # | 1276 | # |
1389 | # CD-ROM/DVD Filesystems | 1277 | # CD-ROM/DVD Filesystems |
@@ -1411,7 +1299,7 @@ CONFIG_PROC_KCORE=y | |||
1411 | CONFIG_PROC_SYSCTL=y | 1299 | CONFIG_PROC_SYSCTL=y |
1412 | CONFIG_SYSFS=y | 1300 | CONFIG_SYSFS=y |
1413 | CONFIG_TMPFS=y | 1301 | CONFIG_TMPFS=y |
1414 | CONFIG_TMPFS_POSIX_ACL=y | 1302 | # CONFIG_TMPFS_POSIX_ACL is not set |
1415 | CONFIG_HUGETLBFS=y | 1303 | CONFIG_HUGETLBFS=y |
1416 | CONFIG_HUGETLB_PAGE=y | 1304 | CONFIG_HUGETLB_PAGE=y |
1417 | CONFIG_RAMFS=y | 1305 | CONFIG_RAMFS=y |
@@ -1453,6 +1341,7 @@ CONFIG_LOCKD_V4=y | |||
1453 | CONFIG_EXPORTFS=y | 1341 | CONFIG_EXPORTFS=y |
1454 | CONFIG_NFS_COMMON=y | 1342 | CONFIG_NFS_COMMON=y |
1455 | CONFIG_SUNRPC=y | 1343 | CONFIG_SUNRPC=y |
1344 | # CONFIG_SUNRPC_BIND34 is not set | ||
1456 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1345 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
1457 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1346 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
1458 | # CONFIG_SMB_FS is not set | 1347 | # CONFIG_SMB_FS is not set |
@@ -1529,17 +1418,16 @@ CONFIG_KPROBES=y | |||
1529 | # | 1418 | # |
1530 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 1419 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
1531 | # CONFIG_PRINTK_TIME is not set | 1420 | # CONFIG_PRINTK_TIME is not set |
1532 | # CONFIG_ENABLE_MUST_CHECK is not set | 1421 | CONFIG_ENABLE_MUST_CHECK=y |
1533 | CONFIG_MAGIC_SYSRQ=y | 1422 | CONFIG_MAGIC_SYSRQ=y |
1534 | CONFIG_UNUSED_SYMBOLS=y | 1423 | CONFIG_UNUSED_SYMBOLS=y |
1535 | # CONFIG_DEBUG_FS is not set | 1424 | # CONFIG_DEBUG_FS is not set |
1536 | # CONFIG_HEADERS_CHECK is not set | 1425 | # CONFIG_HEADERS_CHECK is not set |
1537 | CONFIG_DEBUG_KERNEL=y | 1426 | CONFIG_DEBUG_KERNEL=y |
1538 | # CONFIG_DEBUG_SHIRQ is not set | 1427 | # CONFIG_DEBUG_SHIRQ is not set |
1539 | CONFIG_LOG_BUF_SHIFT=18 | ||
1540 | CONFIG_DETECT_SOFTLOCKUP=y | 1428 | CONFIG_DETECT_SOFTLOCKUP=y |
1541 | # CONFIG_SCHEDSTATS is not set | 1429 | # CONFIG_SCHEDSTATS is not set |
1542 | CONFIG_TIMER_STATS=y | 1430 | # CONFIG_TIMER_STATS is not set |
1543 | # CONFIG_DEBUG_SLAB is not set | 1431 | # CONFIG_DEBUG_SLAB is not set |
1544 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1432 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1545 | # CONFIG_RT_MUTEX_TESTER is not set | 1433 | # CONFIG_RT_MUTEX_TESTER is not set |
@@ -1556,6 +1444,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1556 | # CONFIG_DEBUG_VM is not set | 1444 | # CONFIG_DEBUG_VM is not set |
1557 | # CONFIG_DEBUG_LIST is not set | 1445 | # CONFIG_DEBUG_LIST is not set |
1558 | # CONFIG_FRAME_POINTER is not set | 1446 | # CONFIG_FRAME_POINTER is not set |
1447 | # CONFIG_UNWIND_INFO is not set | ||
1559 | # CONFIG_FORCED_INLINING is not set | 1448 | # CONFIG_FORCED_INLINING is not set |
1560 | # CONFIG_RCU_TORTURE_TEST is not set | 1449 | # CONFIG_RCU_TORTURE_TEST is not set |
1561 | # CONFIG_LKDTM is not set | 1450 | # CONFIG_LKDTM is not set |
@@ -1586,12 +1475,14 @@ CONFIG_DOUBLEFAULT=y | |||
1586 | CONFIG_BITREVERSE=y | 1475 | CONFIG_BITREVERSE=y |
1587 | # CONFIG_CRC_CCITT is not set | 1476 | # CONFIG_CRC_CCITT is not set |
1588 | # CONFIG_CRC16 is not set | 1477 | # CONFIG_CRC16 is not set |
1478 | # CONFIG_CRC_ITU_T is not set | ||
1589 | CONFIG_CRC32=y | 1479 | CONFIG_CRC32=y |
1590 | # CONFIG_LIBCRC32C is not set | 1480 | # CONFIG_LIBCRC32C is not set |
1591 | CONFIG_ZLIB_INFLATE=y | 1481 | CONFIG_ZLIB_INFLATE=y |
1592 | CONFIG_PLIST=y | 1482 | CONFIG_PLIST=y |
1593 | CONFIG_HAS_IOMEM=y | 1483 | CONFIG_HAS_IOMEM=y |
1594 | CONFIG_HAS_IOPORT=y | 1484 | CONFIG_HAS_IOPORT=y |
1485 | CONFIG_HAS_DMA=y | ||
1595 | CONFIG_GENERIC_HARDIRQS=y | 1486 | CONFIG_GENERIC_HARDIRQS=y |
1596 | CONFIG_GENERIC_IRQ_PROBE=y | 1487 | CONFIG_GENERIC_IRQ_PROBE=y |
1597 | CONFIG_GENERIC_PENDING_IRQ=y | 1488 | CONFIG_GENERIC_PENDING_IRQ=y |
diff --git a/arch/i386/kernel/cpu/amd.c b/arch/i386/kernel/cpu/amd.c index 4fec702afd7e..6f47eeeb93ea 100644 --- a/arch/i386/kernel/cpu/amd.c +++ b/arch/i386/kernel/cpu/amd.c | |||
@@ -280,6 +280,10 @@ static void __cpuinit init_amd(struct cpuinfo_x86 *c) | |||
280 | 280 | ||
281 | if (c->x86 == 0x10 && !force_mwait) | 281 | if (c->x86 == 0x10 && !force_mwait) |
282 | clear_bit(X86_FEATURE_MWAIT, c->x86_capability); | 282 | clear_bit(X86_FEATURE_MWAIT, c->x86_capability); |
283 | |||
284 | /* K6s reports MCEs but don't actually have all the MSRs */ | ||
285 | if (c->x86 < 6) | ||
286 | clear_bit(X86_FEATURE_MCE, c->x86_capability); | ||
283 | } | 287 | } |
284 | 288 | ||
285 | static unsigned int __cpuinit amd_size_cache(struct cpuinfo_x86 * c, unsigned int size) | 289 | static unsigned int __cpuinit amd_size_cache(struct cpuinfo_x86 * c, unsigned int size) |
diff --git a/arch/i386/kernel/cpu/cpufreq/speedstep-ich.c b/arch/i386/kernel/cpu/cpufreq/speedstep-ich.c index b425cd3d1838..698f980eb443 100644 --- a/arch/i386/kernel/cpu/cpufreq/speedstep-ich.c +++ b/arch/i386/kernel/cpu/cpufreq/speedstep-ich.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <linux/cpufreq.h> | 24 | #include <linux/cpufreq.h> |
25 | #include <linux/pci.h> | 25 | #include <linux/pci.h> |
26 | #include <linux/slab.h> | 26 | #include <linux/slab.h> |
27 | #include <linux/sched.h> | ||
27 | 28 | ||
28 | #include "speedstep-lib.h" | 29 | #include "speedstep-lib.h" |
29 | 30 | ||
diff --git a/arch/i386/kernel/cpu/cyrix.c b/arch/i386/kernel/cpu/cyrix.c index 0b8411a864fb..e88d2fba156b 100644 --- a/arch/i386/kernel/cpu/cyrix.c +++ b/arch/i386/kernel/cpu/cyrix.c | |||
@@ -7,6 +7,7 @@ | |||
7 | #include <asm/processor.h> | 7 | #include <asm/processor.h> |
8 | #include <asm/timer.h> | 8 | #include <asm/timer.h> |
9 | #include <asm/pci-direct.h> | 9 | #include <asm/pci-direct.h> |
10 | #include <asm/tsc.h> | ||
10 | 11 | ||
11 | #include "cpu.h" | 12 | #include "cpu.h" |
12 | 13 | ||
diff --git a/arch/i386/kernel/cpu/mcheck/k7.c b/arch/i386/kernel/cpu/mcheck/k7.c index f9fa4142551e..eef63e3630c2 100644 --- a/arch/i386/kernel/cpu/mcheck/k7.c +++ b/arch/i386/kernel/cpu/mcheck/k7.c | |||
@@ -72,12 +72,12 @@ void amd_mcheck_init(struct cpuinfo_x86 *c) | |||
72 | u32 l, h; | 72 | u32 l, h; |
73 | int i; | 73 | int i; |
74 | 74 | ||
75 | machine_check_vector = k7_machine_check; | ||
76 | wmb(); | ||
77 | |||
78 | if (!cpu_has(c, X86_FEATURE_MCE)) | 75 | if (!cpu_has(c, X86_FEATURE_MCE)) |
79 | return; | 76 | return; |
80 | 77 | ||
78 | machine_check_vector = k7_machine_check; | ||
79 | wmb(); | ||
80 | |||
81 | printk (KERN_INFO "Intel machine check architecture supported.\n"); | 81 | printk (KERN_INFO "Intel machine check architecture supported.\n"); |
82 | rdmsr (MSR_IA32_MCG_CAP, l, h); | 82 | rdmsr (MSR_IA32_MCG_CAP, l, h); |
83 | if (l & (1<<8)) /* Control register present ? */ | 83 | if (l & (1<<8)) /* Control register present ? */ |
diff --git a/arch/i386/kernel/cpu/mtrr/cyrix.c b/arch/i386/kernel/cpu/mtrr/cyrix.c index 0737a596db43..9edf5625584f 100644 --- a/arch/i386/kernel/cpu/mtrr/cyrix.c +++ b/arch/i386/kernel/cpu/mtrr/cyrix.c | |||
@@ -136,7 +136,7 @@ static void prepare_set(void) | |||
136 | /* Save value of CR4 and clear Page Global Enable (bit 7) */ | 136 | /* Save value of CR4 and clear Page Global Enable (bit 7) */ |
137 | if ( cpu_has_pge ) { | 137 | if ( cpu_has_pge ) { |
138 | cr4 = read_cr4(); | 138 | cr4 = read_cr4(); |
139 | write_cr4(cr4 & (unsigned char) ~(1 << 7)); | 139 | write_cr4(cr4 & ~X86_CR4_PGE); |
140 | } | 140 | } |
141 | 141 | ||
142 | /* Disable and flush caches. Note that wbinvd flushes the TLBs as | 142 | /* Disable and flush caches. Note that wbinvd flushes the TLBs as |
diff --git a/arch/i386/kernel/cpu/mtrr/state.c b/arch/i386/kernel/cpu/mtrr/state.c index f62ecd15811a..7b39a2f954d9 100644 --- a/arch/i386/kernel/cpu/mtrr/state.c +++ b/arch/i386/kernel/cpu/mtrr/state.c | |||
@@ -19,7 +19,7 @@ void set_mtrr_prepare_save(struct set_mtrr_context *ctxt) | |||
19 | /* Save value of CR4 and clear Page Global Enable (bit 7) */ | 19 | /* Save value of CR4 and clear Page Global Enable (bit 7) */ |
20 | if ( cpu_has_pge ) { | 20 | if ( cpu_has_pge ) { |
21 | ctxt->cr4val = read_cr4(); | 21 | ctxt->cr4val = read_cr4(); |
22 | write_cr4(ctxt->cr4val & (unsigned char) ~(1 << 7)); | 22 | write_cr4(ctxt->cr4val & ~X86_CR4_PGE); |
23 | } | 23 | } |
24 | 24 | ||
25 | /* Disable and flush caches. Note that wbinvd flushes the TLBs as | 25 | /* Disable and flush caches. Note that wbinvd flushes the TLBs as |
diff --git a/arch/i386/kernel/verify_cpu.S b/arch/i386/kernel/verify_cpu.S index b2a9d80b6421..f1d1eacf4ab0 100644 --- a/arch/i386/kernel/verify_cpu.S +++ b/arch/i386/kernel/verify_cpu.S | |||
@@ -2,6 +2,7 @@ | |||
2 | This runs in 16bit mode so that the caller can still use the BIOS | 2 | This runs in 16bit mode so that the caller can still use the BIOS |
3 | to output errors on the screen */ | 3 | to output errors on the screen */ |
4 | #include <asm/cpufeature.h> | 4 | #include <asm/cpufeature.h> |
5 | #include <asm/msr.h> | ||
5 | 6 | ||
6 | verify_cpu: | 7 | verify_cpu: |
7 | pushfl # Save caller passed flags | 8 | pushfl # Save caller passed flags |
@@ -45,6 +46,32 @@ verify_cpu: | |||
45 | cmpl $0x1,%eax | 46 | cmpl $0x1,%eax |
46 | jb bad # no cpuid 1 | 47 | jb bad # no cpuid 1 |
47 | 48 | ||
49 | #if REQUIRED_MASK1 & NEED_CMPXCHG64 | ||
50 | /* Some VIA C3s need magic MSRs to enable CX64. Do this here */ | ||
51 | cmpl $0x746e6543,%ebx # Cent | ||
52 | jne 1f | ||
53 | cmpl $0x48727561,%edx # aurH | ||
54 | jne 1f | ||
55 | cmpl $0x736c7561,%ecx # auls | ||
56 | jne 1f | ||
57 | movl $1,%eax # check model | ||
58 | cpuid | ||
59 | movl %eax,%ebx | ||
60 | shr $8,%ebx | ||
61 | andl $0xf,%ebx | ||
62 | cmp $6,%ebx # check family == 6 | ||
63 | jne 1f | ||
64 | shr $4,%eax | ||
65 | andl $0xf,%eax | ||
66 | cmpl $6,%eax # check model >= 6 | ||
67 | jb 1f | ||
68 | # assume models >= 6 all support this MSR | ||
69 | movl $MSR_VIA_FCR,%ecx | ||
70 | rdmsr | ||
71 | orl $((1<<1)|(1<<7)),%eax # enable CMPXCHG64 and PGE | ||
72 | wrmsr | ||
73 | 1: | ||
74 | #endif | ||
48 | movl $0x1,%eax # Does the cpu have what it takes | 75 | movl $0x1,%eax # Does the cpu have what it takes |
49 | cpuid | 76 | cpuid |
50 | 77 | ||
diff --git a/arch/i386/mm/mmap.c b/arch/i386/mm/mmap.c index e4730a1a43dd..552e08473755 100644 --- a/arch/i386/mm/mmap.c +++ b/arch/i386/mm/mmap.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/personality.h> | 27 | #include <linux/personality.h> |
28 | #include <linux/mm.h> | 28 | #include <linux/mm.h> |
29 | #include <linux/random.h> | 29 | #include <linux/random.h> |
30 | #include <linux/sched.h> | ||
30 | 31 | ||
31 | /* | 32 | /* |
32 | * Top of mmap area (just below the process stack). | 33 | * Top of mmap area (just below the process stack). |
diff --git a/arch/i386/oprofile/nmi_int.c b/arch/i386/oprofile/nmi_int.c index 8e185208dfd4..a7c0783b269a 100644 --- a/arch/i386/oprofile/nmi_int.c +++ b/arch/i386/oprofile/nmi_int.c | |||
@@ -131,7 +131,6 @@ static void nmi_save_registers(void * dummy) | |||
131 | { | 131 | { |
132 | int cpu = smp_processor_id(); | 132 | int cpu = smp_processor_id(); |
133 | struct op_msrs * msrs = &cpu_msrs[cpu]; | 133 | struct op_msrs * msrs = &cpu_msrs[cpu]; |
134 | model->fill_in_addresses(msrs); | ||
135 | nmi_cpu_save_registers(msrs); | 134 | nmi_cpu_save_registers(msrs); |
136 | } | 135 | } |
137 | 136 | ||
@@ -195,6 +194,7 @@ static struct notifier_block profile_exceptions_nb = { | |||
195 | static int nmi_setup(void) | 194 | static int nmi_setup(void) |
196 | { | 195 | { |
197 | int err=0; | 196 | int err=0; |
197 | int cpu; | ||
198 | 198 | ||
199 | if (!allocate_msrs()) | 199 | if (!allocate_msrs()) |
200 | return -ENOMEM; | 200 | return -ENOMEM; |
@@ -207,6 +207,13 @@ static int nmi_setup(void) | |||
207 | /* We need to serialize save and setup for HT because the subset | 207 | /* We need to serialize save and setup for HT because the subset |
208 | * of msrs are distinct for save and setup operations | 208 | * of msrs are distinct for save and setup operations |
209 | */ | 209 | */ |
210 | |||
211 | /* Assume saved/restored counters are the same on all CPUs */ | ||
212 | model->fill_in_addresses(&cpu_msrs[0]); | ||
213 | for_each_possible_cpu (cpu) { | ||
214 | if (cpu != 0) | ||
215 | cpu_msrs[cpu] = cpu_msrs[0]; | ||
216 | } | ||
210 | on_each_cpu(nmi_save_registers, NULL, 0, 1); | 217 | on_each_cpu(nmi_save_registers, NULL, 0, 1); |
211 | on_each_cpu(nmi_cpu_setup, NULL, 0, 1); | 218 | on_each_cpu(nmi_cpu_setup, NULL, 0, 1); |
212 | nmi_enabled = 1; | 219 | nmi_enabled = 1; |
diff --git a/arch/mips/kernel/unaligned.c b/arch/mips/kernel/unaligned.c index a7d49ae805b4..18c4a3c45a31 100644 --- a/arch/mips/kernel/unaligned.c +++ b/arch/mips/kernel/unaligned.c | |||
@@ -76,7 +76,7 @@ | |||
76 | #include <linux/module.h> | 76 | #include <linux/module.h> |
77 | #include <linux/signal.h> | 77 | #include <linux/signal.h> |
78 | #include <linux/smp.h> | 78 | #include <linux/smp.h> |
79 | 79 | #include <linux/sched.h> | |
80 | #include <asm/asm.h> | 80 | #include <asm/asm.h> |
81 | #include <asm/branch.h> | 81 | #include <asm/branch.h> |
82 | #include <asm/byteorder.h> | 82 | #include <asm/byteorder.h> |
diff --git a/arch/mips/mm/ioremap.c b/arch/mips/mm/ioremap.c index cea7d0ea36e4..59945b9ee23c 100644 --- a/arch/mips/mm/ioremap.c +++ b/arch/mips/mm/ioremap.c | |||
@@ -9,7 +9,7 @@ | |||
9 | #include <linux/module.h> | 9 | #include <linux/module.h> |
10 | #include <asm/addrspace.h> | 10 | #include <asm/addrspace.h> |
11 | #include <asm/byteorder.h> | 11 | #include <asm/byteorder.h> |
12 | 12 | #include <linux/sched.h> | |
13 | #include <linux/vmalloc.h> | 13 | #include <linux/vmalloc.h> |
14 | #include <asm/cacheflush.h> | 14 | #include <asm/cacheflush.h> |
15 | #include <asm/io.h> | 15 | #include <asm/io.h> |
diff --git a/arch/parisc/kernel/cache.c b/arch/parisc/kernel/cache.c index 0dc924ccceb5..395bbce64993 100644 --- a/arch/parisc/kernel/cache.c +++ b/arch/parisc/kernel/cache.c | |||
@@ -18,7 +18,7 @@ | |||
18 | #include <linux/module.h> | 18 | #include <linux/module.h> |
19 | #include <linux/seq_file.h> | 19 | #include <linux/seq_file.h> |
20 | #include <linux/pagemap.h> | 20 | #include <linux/pagemap.h> |
21 | 21 | #include <linux/sched.h> | |
22 | #include <asm/pdc.h> | 22 | #include <asm/pdc.h> |
23 | #include <asm/cache.h> | 23 | #include <asm/cache.h> |
24 | #include <asm/cacheflush.h> | 24 | #include <asm/cacheflush.h> |
diff --git a/arch/parisc/kernel/processor.c b/arch/parisc/kernel/processor.c index dd5d0cb6b347..566226d78bc9 100644 --- a/arch/parisc/kernel/processor.c +++ b/arch/parisc/kernel/processor.c | |||
@@ -33,7 +33,7 @@ | |||
33 | #include <linux/seq_file.h> | 33 | #include <linux/seq_file.h> |
34 | #include <linux/slab.h> | 34 | #include <linux/slab.h> |
35 | #include <linux/cpu.h> | 35 | #include <linux/cpu.h> |
36 | 36 | #include <asm/param.h> | |
37 | #include <asm/cache.h> | 37 | #include <asm/cache.h> |
38 | #include <asm/hardware.h> /* for register_parisc_driver() stuff */ | 38 | #include <asm/hardware.h> /* for register_parisc_driver() stuff */ |
39 | #include <asm/processor.h> | 39 | #include <asm/processor.h> |
diff --git a/arch/powerpc/mm/mmap.c b/arch/powerpc/mm/mmap.c index 972a8e884b9a..86010fc7d3b1 100644 --- a/arch/powerpc/mm/mmap.c +++ b/arch/powerpc/mm/mmap.c | |||
@@ -24,6 +24,7 @@ | |||
24 | 24 | ||
25 | #include <linux/personality.h> | 25 | #include <linux/personality.h> |
26 | #include <linux/mm.h> | 26 | #include <linux/mm.h> |
27 | #include <linux/sched.h> | ||
27 | 28 | ||
28 | /* | 29 | /* |
29 | * Top of mmap area (just below the process stack). | 30 | * Top of mmap area (just below the process stack). |
diff --git a/arch/s390/kernel/compat_wrapper.S b/arch/s390/kernel/compat_wrapper.S index 32a69a18a796..acc415457b45 100644 --- a/arch/s390/kernel/compat_wrapper.S +++ b/arch/s390/kernel/compat_wrapper.S | |||
@@ -1682,3 +1682,31 @@ compat_sys_utimes_wrapper: | |||
1682 | llgtr %r2,%r2 # char * | 1682 | llgtr %r2,%r2 # char * |
1683 | llgtr %r3,%r3 # struct compat_timeval * | 1683 | llgtr %r3,%r3 # struct compat_timeval * |
1684 | jg compat_sys_utimes | 1684 | jg compat_sys_utimes |
1685 | |||
1686 | .globl compat_sys_utimensat_wrapper | ||
1687 | compat_sys_utimensat_wrapper: | ||
1688 | llgfr %r2,%r2 # unsigned int | ||
1689 | llgtr %r3,%r3 # char * | ||
1690 | llgtr %r4,%r4 # struct compat_timespec * | ||
1691 | lgfr %r5,%r5 # int | ||
1692 | jg compat_sys_utimensat | ||
1693 | |||
1694 | .globl compat_sys_signalfd_wrapper | ||
1695 | compat_sys_signalfd_wrapper: | ||
1696 | lgfr %r2,%r2 # int | ||
1697 | llgtr %r3,%r3 # compat_sigset_t * | ||
1698 | llgfr %r4,%r4 # compat_size_t | ||
1699 | jg compat_sys_signalfd | ||
1700 | |||
1701 | .globl compat_sys_timerfd_wrapper | ||
1702 | compat_sys_timerfd_wrapper: | ||
1703 | lgfr %r2,%r2 # int | ||
1704 | lgfr %r3,%r3 # int | ||
1705 | lgfr %r4,%r4 # int | ||
1706 | llgtr %r5,%r5 # struct compat_itimerspec * | ||
1707 | jg compat_sys_timerfd | ||
1708 | |||
1709 | .globl sys_eventfd_wrapper | ||
1710 | sys_eventfd_wrapper: | ||
1711 | llgfr %r2,%r2 # unsigned int | ||
1712 | jg sys_eventfd | ||
diff --git a/arch/s390/kernel/kprobes.c b/arch/s390/kernel/kprobes.c index e39333ae0fcf..358d2bbbc481 100644 --- a/arch/s390/kernel/kprobes.c +++ b/arch/s390/kernel/kprobes.c | |||
@@ -413,7 +413,7 @@ static int __kprobes trampoline_probe_handler(struct kprobe *p, | |||
413 | break; | 413 | break; |
414 | } | 414 | } |
415 | } | 415 | } |
416 | BUG_ON(!orig_ret_address || (orig_ret_address == trampoline_address)); | 416 | kretprobe_assert(ri, orig_ret_address, trampoline_address); |
417 | regs->psw.addr = orig_ret_address | PSW_ADDR_AMODE; | 417 | regs->psw.addr = orig_ret_address | PSW_ADDR_AMODE; |
418 | 418 | ||
419 | reset_current_kprobe(); | 419 | reset_current_kprobe(); |
diff --git a/arch/s390/kernel/syscalls.S b/arch/s390/kernel/syscalls.S index cd8d321cd0c2..738feb4a0aad 100644 --- a/arch/s390/kernel/syscalls.S +++ b/arch/s390/kernel/syscalls.S | |||
@@ -322,3 +322,8 @@ NI_SYSCALL /* 310 sys_move_pages */ | |||
322 | SYSCALL(sys_getcpu,sys_getcpu,sys_getcpu_wrapper) | 322 | SYSCALL(sys_getcpu,sys_getcpu,sys_getcpu_wrapper) |
323 | SYSCALL(sys_epoll_pwait,sys_epoll_pwait,compat_sys_epoll_pwait_wrapper) | 323 | SYSCALL(sys_epoll_pwait,sys_epoll_pwait,compat_sys_epoll_pwait_wrapper) |
324 | SYSCALL(sys_utimes,sys_utimes,compat_sys_utimes_wrapper) | 324 | SYSCALL(sys_utimes,sys_utimes,compat_sys_utimes_wrapper) |
325 | NI_SYSCALL /* 314 sys_fallocate */ | ||
326 | SYSCALL(sys_utimensat,sys_utimensat,compat_sys_utimensat_wrapper) /* 315 */ | ||
327 | SYSCALL(sys_signalfd,sys_signalfd,compat_sys_signalfd_wrapper) | ||
328 | SYSCALL(sys_timerfd,sys_timerfd,compat_sys_timerfd_wrapper) | ||
329 | SYSCALL(sys_eventfd,sys_eventfd,sys_eventfd_wrapper) | ||
diff --git a/arch/s390/mm/init.c b/arch/s390/mm/init.c index 916b72a8cde8..9098531a2671 100644 --- a/arch/s390/mm/init.c +++ b/arch/s390/mm/init.c | |||
@@ -61,30 +61,38 @@ void diag10(unsigned long addr) | |||
61 | 61 | ||
62 | void show_mem(void) | 62 | void show_mem(void) |
63 | { | 63 | { |
64 | int i, total = 0, reserved = 0; | 64 | int i, total = 0, reserved = 0; |
65 | int shared = 0, cached = 0; | 65 | int shared = 0, cached = 0; |
66 | struct page *page; | 66 | struct page *page; |
67 | 67 | ||
68 | printk("Mem-info:\n"); | 68 | printk("Mem-info:\n"); |
69 | show_free_areas(); | 69 | show_free_areas(); |
70 | printk("Free swap: %6ldkB\n", nr_swap_pages<<(PAGE_SHIFT-10)); | 70 | printk("Free swap: %6ldkB\n", nr_swap_pages << (PAGE_SHIFT - 10)); |
71 | i = max_mapnr; | 71 | i = max_mapnr; |
72 | while (i-- > 0) { | 72 | while (i-- > 0) { |
73 | if (!pfn_valid(i)) | 73 | if (!pfn_valid(i)) |
74 | continue; | 74 | continue; |
75 | page = pfn_to_page(i); | 75 | page = pfn_to_page(i); |
76 | total++; | 76 | total++; |
77 | if (PageReserved(page)) | 77 | if (PageReserved(page)) |
78 | reserved++; | 78 | reserved++; |
79 | else if (PageSwapCache(page)) | 79 | else if (PageSwapCache(page)) |
80 | cached++; | 80 | cached++; |
81 | else if (page_count(page)) | 81 | else if (page_count(page)) |
82 | shared += page_count(page) - 1; | 82 | shared += page_count(page) - 1; |
83 | } | 83 | } |
84 | printk("%d pages of RAM\n",total); | 84 | printk("%d pages of RAM\n", total); |
85 | printk("%d reserved pages\n",reserved); | 85 | printk("%d reserved pages\n", reserved); |
86 | printk("%d pages shared\n",shared); | 86 | printk("%d pages shared\n", shared); |
87 | printk("%d pages swap cached\n",cached); | 87 | printk("%d pages swap cached\n", cached); |
88 | |||
89 | printk("%lu pages dirty\n", global_page_state(NR_FILE_DIRTY)); | ||
90 | printk("%lu pages writeback\n", global_page_state(NR_WRITEBACK)); | ||
91 | printk("%lu pages mapped\n", global_page_state(NR_FILE_MAPPED)); | ||
92 | printk("%lu pages slab\n", | ||
93 | global_page_state(NR_SLAB_RECLAIMABLE) + | ||
94 | global_page_state(NR_SLAB_UNRECLAIMABLE)); | ||
95 | printk("%lu pages pagetables\n", global_page_state(NR_PAGETABLE)); | ||
88 | } | 96 | } |
89 | 97 | ||
90 | static void __init setup_ro_region(void) | 98 | static void __init setup_ro_region(void) |
diff --git a/arch/x86_64/defconfig b/arch/x86_64/defconfig index 941a7e3aa5fb..40178e5c3104 100644 --- a/arch/x86_64/defconfig +++ b/arch/x86_64/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.21-git3 | 3 | # Linux kernel version: 2.6.22-rc2 |
4 | # Tue May 1 07:30:48 2007 | 4 | # Mon May 21 13:23:40 2007 |
5 | # | 5 | # |
6 | CONFIG_X86_64=y | 6 | CONFIG_X86_64=y |
7 | CONFIG_64BIT=y | 7 | CONFIG_64BIT=y |
@@ -53,6 +53,7 @@ CONFIG_POSIX_MQUEUE=y | |||
53 | # CONFIG_AUDIT is not set | 53 | # CONFIG_AUDIT is not set |
54 | CONFIG_IKCONFIG=y | 54 | CONFIG_IKCONFIG=y |
55 | CONFIG_IKCONFIG_PROC=y | 55 | CONFIG_IKCONFIG_PROC=y |
56 | CONFIG_LOG_BUF_SHIFT=18 | ||
56 | # CONFIG_CPUSETS is not set | 57 | # CONFIG_CPUSETS is not set |
57 | CONFIG_SYSFS_DEPRECATED=y | 58 | CONFIG_SYSFS_DEPRECATED=y |
58 | # CONFIG_RELAY is not set | 59 | # CONFIG_RELAY is not set |
@@ -72,14 +73,19 @@ CONFIG_BUG=y | |||
72 | CONFIG_ELF_CORE=y | 73 | CONFIG_ELF_CORE=y |
73 | CONFIG_BASE_FULL=y | 74 | CONFIG_BASE_FULL=y |
74 | CONFIG_FUTEX=y | 75 | CONFIG_FUTEX=y |
76 | CONFIG_ANON_INODES=y | ||
75 | CONFIG_EPOLL=y | 77 | CONFIG_EPOLL=y |
78 | CONFIG_SIGNALFD=y | ||
79 | CONFIG_TIMERFD=y | ||
80 | CONFIG_EVENTFD=y | ||
76 | CONFIG_SHMEM=y | 81 | CONFIG_SHMEM=y |
77 | CONFIG_SLAB=y | ||
78 | CONFIG_VM_EVENT_COUNTERS=y | 82 | CONFIG_VM_EVENT_COUNTERS=y |
83 | CONFIG_SLAB=y | ||
84 | # CONFIG_SLUB is not set | ||
85 | # CONFIG_SLOB is not set | ||
79 | CONFIG_RT_MUTEXES=y | 86 | CONFIG_RT_MUTEXES=y |
80 | # CONFIG_TINY_SHMEM is not set | 87 | # CONFIG_TINY_SHMEM is not set |
81 | CONFIG_BASE_SMALL=0 | 88 | CONFIG_BASE_SMALL=0 |
82 | # CONFIG_SLOB is not set | ||
83 | 89 | ||
84 | # | 90 | # |
85 | # Loadable module support | 91 | # Loadable module support |
@@ -118,11 +124,11 @@ CONFIG_X86_PC=y | |||
118 | # CONFIG_X86_VSMP is not set | 124 | # CONFIG_X86_VSMP is not set |
119 | # CONFIG_MK8 is not set | 125 | # CONFIG_MK8 is not set |
120 | # CONFIG_MPSC is not set | 126 | # CONFIG_MPSC is not set |
121 | CONFIG_MCORE2=y | 127 | # CONFIG_MCORE2 is not set |
122 | # CONFIG_GENERIC_CPU is not set | 128 | CONFIG_GENERIC_CPU=y |
123 | CONFIG_X86_L1_CACHE_BYTES=64 | 129 | CONFIG_X86_L1_CACHE_BYTES=128 |
124 | CONFIG_X86_L1_CACHE_SHIFT=6 | 130 | CONFIG_X86_L1_CACHE_SHIFT=7 |
125 | CONFIG_X86_INTERNODE_CACHE_BYTES=64 | 131 | CONFIG_X86_INTERNODE_CACHE_BYTES=128 |
126 | CONFIG_X86_TSC=y | 132 | CONFIG_X86_TSC=y |
127 | CONFIG_X86_GOOD_APIC=y | 133 | CONFIG_X86_GOOD_APIC=y |
128 | # CONFIG_MICROCODE is not set | 134 | # CONFIG_MICROCODE is not set |
@@ -174,7 +180,7 @@ CONFIG_X86_MCE_INTEL=y | |||
174 | CONFIG_X86_MCE_AMD=y | 180 | CONFIG_X86_MCE_AMD=y |
175 | # CONFIG_KEXEC is not set | 181 | # CONFIG_KEXEC is not set |
176 | # CONFIG_CRASH_DUMP is not set | 182 | # CONFIG_CRASH_DUMP is not set |
177 | # CONFIG_RELOCATABLE is not set | 183 | CONFIG_RELOCATABLE=y |
178 | CONFIG_PHYSICAL_START=0x200000 | 184 | CONFIG_PHYSICAL_START=0x200000 |
179 | CONFIG_SECCOMP=y | 185 | CONFIG_SECCOMP=y |
180 | # CONFIG_CC_STACKPROTECTOR is not set | 186 | # CONFIG_CC_STACKPROTECTOR is not set |
@@ -242,7 +248,7 @@ CONFIG_CPU_FREQ_GOV_PERFORMANCE=y | |||
242 | # CONFIG_CPU_FREQ_GOV_POWERSAVE is not set | 248 | # CONFIG_CPU_FREQ_GOV_POWERSAVE is not set |
243 | CONFIG_CPU_FREQ_GOV_USERSPACE=y | 249 | CONFIG_CPU_FREQ_GOV_USERSPACE=y |
244 | CONFIG_CPU_FREQ_GOV_ONDEMAND=y | 250 | CONFIG_CPU_FREQ_GOV_ONDEMAND=y |
245 | CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y | 251 | # CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set |
246 | 252 | ||
247 | # | 253 | # |
248 | # CPUFreq processor drivers | 254 | # CPUFreq processor drivers |
@@ -266,6 +272,7 @@ CONFIG_PCI_DIRECT=y | |||
266 | CONFIG_PCI_MMCONFIG=y | 272 | CONFIG_PCI_MMCONFIG=y |
267 | CONFIG_PCIEPORTBUS=y | 273 | CONFIG_PCIEPORTBUS=y |
268 | CONFIG_PCIEAER=y | 274 | CONFIG_PCIEAER=y |
275 | CONFIG_ARCH_SUPPORTS_MSI=y | ||
269 | CONFIG_PCI_MSI=y | 276 | CONFIG_PCI_MSI=y |
270 | # CONFIG_PCI_DEBUG is not set | 277 | # CONFIG_PCI_DEBUG is not set |
271 | # CONFIG_HT_IRQ is not set | 278 | # CONFIG_HT_IRQ is not set |
@@ -274,10 +281,6 @@ CONFIG_PCI_MSI=y | |||
274 | # PCCARD (PCMCIA/CardBus) support | 281 | # PCCARD (PCMCIA/CardBus) support |
275 | # | 282 | # |
276 | # CONFIG_PCCARD is not set | 283 | # CONFIG_PCCARD is not set |
277 | |||
278 | # | ||
279 | # PCI Hotplug Support | ||
280 | # | ||
281 | # CONFIG_HOTPLUG_PCI is not set | 284 | # CONFIG_HOTPLUG_PCI is not set |
282 | 285 | ||
283 | # | 286 | # |
@@ -395,7 +398,9 @@ CONFIG_IPV6_SIT=y | |||
395 | # | 398 | # |
396 | # CONFIG_CFG80211 is not set | 399 | # CONFIG_CFG80211 is not set |
397 | # CONFIG_WIRELESS_EXT is not set | 400 | # CONFIG_WIRELESS_EXT is not set |
401 | # CONFIG_MAC80211 is not set | ||
398 | # CONFIG_IEEE80211 is not set | 402 | # CONFIG_IEEE80211 is not set |
403 | # CONFIG_RFKILL is not set | ||
399 | 404 | ||
400 | # | 405 | # |
401 | # Device Drivers | 406 | # Device Drivers |
@@ -458,14 +463,12 @@ CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | |||
458 | # Misc devices | 463 | # Misc devices |
459 | # | 464 | # |
460 | # CONFIG_IBM_ASM is not set | 465 | # CONFIG_IBM_ASM is not set |
466 | # CONFIG_PHANTOM is not set | ||
461 | # CONFIG_SGI_IOC4 is not set | 467 | # CONFIG_SGI_IOC4 is not set |
462 | # CONFIG_TIFM_CORE is not set | 468 | # CONFIG_TIFM_CORE is not set |
463 | # CONFIG_SONY_LAPTOP is not set | 469 | # CONFIG_SONY_LAPTOP is not set |
464 | # CONFIG_THINKPAD_ACPI is not set | 470 | # CONFIG_THINKPAD_ACPI is not set |
465 | 471 | # CONFIG_BLINK is not set | |
466 | # | ||
467 | # ATA/ATAPI/MFM/RLL support | ||
468 | # | ||
469 | CONFIG_IDE=y | 472 | CONFIG_IDE=y |
470 | CONFIG_BLK_DEV_IDE=y | 473 | CONFIG_BLK_DEV_IDE=y |
471 | 474 | ||
@@ -482,6 +485,7 @@ CONFIG_BLK_DEV_IDECD=y | |||
482 | # CONFIG_BLK_DEV_IDESCSI is not set | 485 | # CONFIG_BLK_DEV_IDESCSI is not set |
483 | CONFIG_BLK_DEV_IDEACPI=y | 486 | CONFIG_BLK_DEV_IDEACPI=y |
484 | # CONFIG_IDE_TASK_IOCTL is not set | 487 | # CONFIG_IDE_TASK_IOCTL is not set |
488 | CONFIG_IDE_PROC_FS=y | ||
485 | 489 | ||
486 | # | 490 | # |
487 | # IDE chipset support/bugfixes | 491 | # IDE chipset support/bugfixes |
@@ -491,6 +495,7 @@ CONFIG_IDE_GENERIC=y | |||
491 | # CONFIG_BLK_DEV_IDEPNP is not set | 495 | # CONFIG_BLK_DEV_IDEPNP is not set |
492 | CONFIG_BLK_DEV_IDEPCI=y | 496 | CONFIG_BLK_DEV_IDEPCI=y |
493 | # CONFIG_IDEPCI_SHARE_IRQ is not set | 497 | # CONFIG_IDEPCI_SHARE_IRQ is not set |
498 | CONFIG_IDEPCI_PCIBUS_ORDER=y | ||
494 | # CONFIG_BLK_DEV_OFFBOARD is not set | 499 | # CONFIG_BLK_DEV_OFFBOARD is not set |
495 | # CONFIG_BLK_DEV_GENERIC is not set | 500 | # CONFIG_BLK_DEV_GENERIC is not set |
496 | # CONFIG_BLK_DEV_OPTI621 is not set | 501 | # CONFIG_BLK_DEV_OPTI621 is not set |
@@ -556,6 +561,7 @@ CONFIG_CHR_DEV_SG=y | |||
556 | CONFIG_SCSI_CONSTANTS=y | 561 | CONFIG_SCSI_CONSTANTS=y |
557 | # CONFIG_SCSI_LOGGING is not set | 562 | # CONFIG_SCSI_LOGGING is not set |
558 | # CONFIG_SCSI_SCAN_ASYNC is not set | 563 | # CONFIG_SCSI_SCAN_ASYNC is not set |
564 | CONFIG_SCSI_WAIT_SCAN=m | ||
559 | 565 | ||
560 | # | 566 | # |
561 | # SCSI Transports | 567 | # SCSI Transports |
@@ -579,15 +585,16 @@ CONFIG_SCSI_SAS_ATTRS=y | |||
579 | CONFIG_SCSI_AIC79XX=y | 585 | CONFIG_SCSI_AIC79XX=y |
580 | CONFIG_AIC79XX_CMDS_PER_DEVICE=32 | 586 | CONFIG_AIC79XX_CMDS_PER_DEVICE=32 |
581 | CONFIG_AIC79XX_RESET_DELAY_MS=4000 | 587 | CONFIG_AIC79XX_RESET_DELAY_MS=4000 |
582 | # CONFIG_AIC79XX_ENABLE_RD_STRM is not set | ||
583 | # CONFIG_AIC79XX_DEBUG_ENABLE is not set | 588 | # CONFIG_AIC79XX_DEBUG_ENABLE is not set |
584 | CONFIG_AIC79XX_DEBUG_MASK=0 | 589 | CONFIG_AIC79XX_DEBUG_MASK=0 |
585 | # CONFIG_AIC79XX_REG_PRETTY_PRINT is not set | 590 | # CONFIG_AIC79XX_REG_PRETTY_PRINT is not set |
586 | # CONFIG_SCSI_AIC94XX is not set | 591 | # CONFIG_SCSI_AIC94XX is not set |
587 | # CONFIG_SCSI_ARCMSR is not set | 592 | # CONFIG_SCSI_ARCMSR is not set |
588 | # CONFIG_MEGARAID_NEWGEN is not set | 593 | CONFIG_MEGARAID_NEWGEN=y |
594 | CONFIG_MEGARAID_MM=y | ||
595 | CONFIG_MEGARAID_MAILBOX=y | ||
589 | # CONFIG_MEGARAID_LEGACY is not set | 596 | # CONFIG_MEGARAID_LEGACY is not set |
590 | # CONFIG_MEGARAID_SAS is not set | 597 | CONFIG_MEGARAID_SAS=y |
591 | # CONFIG_SCSI_HPTIOP is not set | 598 | # CONFIG_SCSI_HPTIOP is not set |
592 | # CONFIG_SCSI_BUSLOGIC is not set | 599 | # CONFIG_SCSI_BUSLOGIC is not set |
593 | # CONFIG_SCSI_DMX3191D is not set | 600 | # CONFIG_SCSI_DMX3191D is not set |
@@ -609,12 +616,9 @@ CONFIG_AIC79XX_DEBUG_MASK=0 | |||
609 | # CONFIG_SCSI_DEBUG is not set | 616 | # CONFIG_SCSI_DEBUG is not set |
610 | # CONFIG_SCSI_ESP_CORE is not set | 617 | # CONFIG_SCSI_ESP_CORE is not set |
611 | # CONFIG_SCSI_SRP is not set | 618 | # CONFIG_SCSI_SRP is not set |
612 | |||
613 | # | ||
614 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | ||
615 | # | ||
616 | CONFIG_ATA=y | 619 | CONFIG_ATA=y |
617 | # CONFIG_ATA_NONSTANDARD is not set | 620 | # CONFIG_ATA_NONSTANDARD is not set |
621 | CONFIG_ATA_ACPI=y | ||
618 | CONFIG_SATA_AHCI=y | 622 | CONFIG_SATA_AHCI=y |
619 | CONFIG_SATA_SVW=y | 623 | CONFIG_SATA_SVW=y |
620 | CONFIG_ATA_PIIX=y | 624 | CONFIG_ATA_PIIX=y |
@@ -631,7 +635,6 @@ CONFIG_SATA_SIL=y | |||
631 | CONFIG_SATA_VIA=y | 635 | CONFIG_SATA_VIA=y |
632 | # CONFIG_SATA_VITESSE is not set | 636 | # CONFIG_SATA_VITESSE is not set |
633 | # CONFIG_SATA_INIC162X is not set | 637 | # CONFIG_SATA_INIC162X is not set |
634 | CONFIG_SATA_ACPI=y | ||
635 | # CONFIG_PATA_ALI is not set | 638 | # CONFIG_PATA_ALI is not set |
636 | # CONFIG_PATA_AMD is not set | 639 | # CONFIG_PATA_AMD is not set |
637 | # CONFIG_PATA_ARTOP is not set | 640 | # CONFIG_PATA_ARTOP is not set |
@@ -681,6 +684,7 @@ CONFIG_BLK_DEV_DM=y | |||
681 | # CONFIG_DM_MIRROR is not set | 684 | # CONFIG_DM_MIRROR is not set |
682 | # CONFIG_DM_ZERO is not set | 685 | # CONFIG_DM_ZERO is not set |
683 | # CONFIG_DM_MULTIPATH is not set | 686 | # CONFIG_DM_MULTIPATH is not set |
687 | # CONFIG_DM_DELAY is not set | ||
684 | 688 | ||
685 | # | 689 | # |
686 | # Fusion MPT device support | 690 | # Fusion MPT device support |
@@ -688,13 +692,14 @@ CONFIG_BLK_DEV_DM=y | |||
688 | CONFIG_FUSION=y | 692 | CONFIG_FUSION=y |
689 | CONFIG_FUSION_SPI=y | 693 | CONFIG_FUSION_SPI=y |
690 | # CONFIG_FUSION_FC is not set | 694 | # CONFIG_FUSION_FC is not set |
691 | # CONFIG_FUSION_SAS is not set | 695 | CONFIG_FUSION_SAS=y |
692 | CONFIG_FUSION_MAX_SGE=128 | 696 | CONFIG_FUSION_MAX_SGE=128 |
693 | # CONFIG_FUSION_CTL is not set | 697 | # CONFIG_FUSION_CTL is not set |
694 | 698 | ||
695 | # | 699 | # |
696 | # IEEE 1394 (FireWire) support | 700 | # IEEE 1394 (FireWire) support |
697 | # | 701 | # |
702 | # CONFIG_FIREWIRE is not set | ||
698 | CONFIG_IEEE1394=y | 703 | CONFIG_IEEE1394=y |
699 | 704 | ||
700 | # | 705 | # |
@@ -705,10 +710,7 @@ CONFIG_IEEE1394=y | |||
705 | # | 710 | # |
706 | # Controllers | 711 | # Controllers |
707 | # | 712 | # |
708 | 713 | # CONFIG_IEEE1394_PCILYNX is not set | |
709 | # | ||
710 | # Texas Instruments PCILynx requires I2C | ||
711 | # | ||
712 | CONFIG_IEEE1394_OHCI1394=y | 714 | CONFIG_IEEE1394_OHCI1394=y |
713 | 715 | ||
714 | # | 716 | # |
@@ -725,11 +727,7 @@ CONFIG_IEEE1394_RAWIO=y | |||
725 | # I2O device support | 727 | # I2O device support |
726 | # | 728 | # |
727 | # CONFIG_I2O is not set | 729 | # CONFIG_I2O is not set |
728 | 730 | # CONFIG_MACINTOSH_DRIVERS is not set | |
729 | # | ||
730 | # Macintosh device drivers | ||
731 | # | ||
732 | # CONFIG_MAC_EMUMOUSEBTN is not set | ||
733 | 731 | ||
734 | # | 732 | # |
735 | # Network device support | 733 | # Network device support |
@@ -745,10 +743,6 @@ CONFIG_TUN=y | |||
745 | # ARCnet devices | 743 | # ARCnet devices |
746 | # | 744 | # |
747 | # CONFIG_ARCNET is not set | 745 | # CONFIG_ARCNET is not set |
748 | |||
749 | # | ||
750 | # PHY device support | ||
751 | # | ||
752 | # CONFIG_PHYLIB is not set | 746 | # CONFIG_PHYLIB is not set |
753 | 747 | ||
754 | # | 748 | # |
@@ -779,8 +773,7 @@ CONFIG_TULIP=y | |||
779 | # CONFIG_HP100 is not set | 773 | # CONFIG_HP100 is not set |
780 | CONFIG_NET_PCI=y | 774 | CONFIG_NET_PCI=y |
781 | # CONFIG_PCNET32 is not set | 775 | # CONFIG_PCNET32 is not set |
782 | CONFIG_AMD8111_ETH=y | 776 | # CONFIG_AMD8111_ETH is not set |
783 | # CONFIG_AMD8111E_NAPI is not set | ||
784 | # CONFIG_ADAPTEC_STARFIRE is not set | 777 | # CONFIG_ADAPTEC_STARFIRE is not set |
785 | CONFIG_B44=y | 778 | CONFIG_B44=y |
786 | CONFIG_FORCEDETH=y | 779 | CONFIG_FORCEDETH=y |
@@ -802,10 +795,7 @@ CONFIG_8139TOO=y | |||
802 | # CONFIG_SUNDANCE is not set | 795 | # CONFIG_SUNDANCE is not set |
803 | # CONFIG_VIA_RHINE is not set | 796 | # CONFIG_VIA_RHINE is not set |
804 | # CONFIG_SC92031 is not set | 797 | # CONFIG_SC92031 is not set |
805 | 798 | CONFIG_NETDEV_1000=y | |
806 | # | ||
807 | # Ethernet (1000 Mbit) | ||
808 | # | ||
809 | # CONFIG_ACENIC is not set | 799 | # CONFIG_ACENIC is not set |
810 | # CONFIG_DL2K is not set | 800 | # CONFIG_DL2K is not set |
811 | CONFIG_E1000=y | 801 | CONFIG_E1000=y |
@@ -824,10 +814,7 @@ CONFIG_TIGON3=y | |||
824 | CONFIG_BNX2=y | 814 | CONFIG_BNX2=y |
825 | # CONFIG_QLA3XXX is not set | 815 | # CONFIG_QLA3XXX is not set |
826 | # CONFIG_ATL1 is not set | 816 | # CONFIG_ATL1 is not set |
827 | 817 | CONFIG_NETDEV_10000=y | |
828 | # | ||
829 | # Ethernet (10000 Mbit) | ||
830 | # | ||
831 | # CONFIG_CHELSIO_T1 is not set | 818 | # CONFIG_CHELSIO_T1 is not set |
832 | # CONFIG_CHELSIO_T3 is not set | 819 | # CONFIG_CHELSIO_T3 is not set |
833 | # CONFIG_IXGB is not set | 820 | # CONFIG_IXGB is not set |
@@ -835,6 +822,7 @@ CONFIG_S2IO=m | |||
835 | # CONFIG_S2IO_NAPI is not set | 822 | # CONFIG_S2IO_NAPI is not set |
836 | # CONFIG_MYRI10GE is not set | 823 | # CONFIG_MYRI10GE is not set |
837 | # CONFIG_NETXEN_NIC is not set | 824 | # CONFIG_NETXEN_NIC is not set |
825 | # CONFIG_MLX4_CORE is not set | ||
838 | 826 | ||
839 | # | 827 | # |
840 | # Token Ring devices | 828 | # Token Ring devices |
@@ -848,8 +836,14 @@ CONFIG_S2IO=m | |||
848 | # CONFIG_WLAN_80211 is not set | 836 | # CONFIG_WLAN_80211 is not set |
849 | 837 | ||
850 | # | 838 | # |
851 | # Wan interfaces | 839 | # USB Network Adapters |
852 | # | 840 | # |
841 | # CONFIG_USB_CATC is not set | ||
842 | # CONFIG_USB_KAWETH is not set | ||
843 | # CONFIG_USB_PEGASUS is not set | ||
844 | # CONFIG_USB_RTL8150 is not set | ||
845 | # CONFIG_USB_USBNET_MII is not set | ||
846 | # CONFIG_USB_USBNET is not set | ||
853 | # CONFIG_WAN is not set | 847 | # CONFIG_WAN is not set |
854 | # CONFIG_FDDI is not set | 848 | # CONFIG_FDDI is not set |
855 | # CONFIG_HIPPI is not set | 849 | # CONFIG_HIPPI is not set |
@@ -902,9 +896,17 @@ CONFIG_KEYBOARD_ATKBD=y | |||
902 | # CONFIG_KEYBOARD_STOWAWAY is not set | 896 | # CONFIG_KEYBOARD_STOWAWAY is not set |
903 | CONFIG_INPUT_MOUSE=y | 897 | CONFIG_INPUT_MOUSE=y |
904 | CONFIG_MOUSE_PS2=y | 898 | CONFIG_MOUSE_PS2=y |
899 | CONFIG_MOUSE_PS2_ALPS=y | ||
900 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | ||
901 | CONFIG_MOUSE_PS2_SYNAPTICS=y | ||
902 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
903 | CONFIG_MOUSE_PS2_TRACKPOINT=y | ||
904 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | ||
905 | # CONFIG_MOUSE_SERIAL is not set | 905 | # CONFIG_MOUSE_SERIAL is not set |
906 | # CONFIG_MOUSE_APPLETOUCH is not set | ||
906 | # CONFIG_MOUSE_VSXXXAA is not set | 907 | # CONFIG_MOUSE_VSXXXAA is not set |
907 | # CONFIG_INPUT_JOYSTICK is not set | 908 | # CONFIG_INPUT_JOYSTICK is not set |
909 | # CONFIG_INPUT_TABLET is not set | ||
908 | # CONFIG_INPUT_TOUCHSCREEN is not set | 910 | # CONFIG_INPUT_TOUCHSCREEN is not set |
909 | # CONFIG_INPUT_MISC is not set | 911 | # CONFIG_INPUT_MISC is not set |
910 | 912 | ||
@@ -954,10 +956,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
954 | # IPMI | 956 | # IPMI |
955 | # | 957 | # |
956 | # CONFIG_IPMI_HANDLER is not set | 958 | # CONFIG_IPMI_HANDLER is not set |
957 | |||
958 | # | ||
959 | # Watchdog Cards | ||
960 | # | ||
961 | # CONFIG_WATCHDOG is not set | 959 | # CONFIG_WATCHDOG is not set |
962 | CONFIG_HW_RANDOM=y | 960 | CONFIG_HW_RANDOM=y |
963 | CONFIG_HW_RANDOM_INTEL=y | 961 | CONFIG_HW_RANDOM_INTEL=y |
@@ -965,7 +963,6 @@ CONFIG_HW_RANDOM_AMD=y | |||
965 | # CONFIG_HW_RANDOM_GEODE is not set | 963 | # CONFIG_HW_RANDOM_GEODE is not set |
966 | # CONFIG_NVRAM is not set | 964 | # CONFIG_NVRAM is not set |
967 | CONFIG_RTC=y | 965 | CONFIG_RTC=y |
968 | # CONFIG_DTLK is not set | ||
969 | # CONFIG_R3964 is not set | 966 | # CONFIG_R3964 is not set |
970 | # CONFIG_APPLICOM is not set | 967 | # CONFIG_APPLICOM is not set |
971 | CONFIG_AGP=y | 968 | CONFIG_AGP=y |
@@ -988,11 +985,58 @@ CONFIG_HPET_MMAP=y | |||
988 | # | 985 | # |
989 | # CONFIG_TCG_TPM is not set | 986 | # CONFIG_TCG_TPM is not set |
990 | # CONFIG_TELCLOCK is not set | 987 | # CONFIG_TELCLOCK is not set |
991 | 988 | CONFIG_DEVPORT=y | |
992 | # | 989 | CONFIG_I2C=m |
993 | # I2C support | 990 | CONFIG_I2C_BOARDINFO=y |
994 | # | 991 | CONFIG_I2C_CHARDEV=m |
995 | # CONFIG_I2C is not set | 992 | |
993 | # | ||
994 | # I2C Algorithms | ||
995 | # | ||
996 | # CONFIG_I2C_ALGOBIT is not set | ||
997 | # CONFIG_I2C_ALGOPCF is not set | ||
998 | # CONFIG_I2C_ALGOPCA is not set | ||
999 | |||
1000 | # | ||
1001 | # I2C Hardware Bus support | ||
1002 | # | ||
1003 | # CONFIG_I2C_ALI1535 is not set | ||
1004 | # CONFIG_I2C_ALI1563 is not set | ||
1005 | # CONFIG_I2C_ALI15X3 is not set | ||
1006 | # CONFIG_I2C_AMD756 is not set | ||
1007 | # CONFIG_I2C_AMD8111 is not set | ||
1008 | # CONFIG_I2C_I801 is not set | ||
1009 | # CONFIG_I2C_I810 is not set | ||
1010 | # CONFIG_I2C_PIIX4 is not set | ||
1011 | # CONFIG_I2C_NFORCE2 is not set | ||
1012 | # CONFIG_I2C_OCORES is not set | ||
1013 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
1014 | # CONFIG_I2C_PROSAVAGE is not set | ||
1015 | # CONFIG_I2C_SAVAGE4 is not set | ||
1016 | # CONFIG_I2C_SIMTEC is not set | ||
1017 | # CONFIG_I2C_SIS5595 is not set | ||
1018 | # CONFIG_I2C_SIS630 is not set | ||
1019 | # CONFIG_I2C_SIS96X is not set | ||
1020 | # CONFIG_I2C_STUB is not set | ||
1021 | # CONFIG_I2C_TINY_USB is not set | ||
1022 | # CONFIG_I2C_VIA is not set | ||
1023 | # CONFIG_I2C_VIAPRO is not set | ||
1024 | # CONFIG_I2C_VOODOO3 is not set | ||
1025 | |||
1026 | # | ||
1027 | # Miscellaneous I2C Chip support | ||
1028 | # | ||
1029 | # CONFIG_SENSORS_DS1337 is not set | ||
1030 | # CONFIG_SENSORS_DS1374 is not set | ||
1031 | # CONFIG_SENSORS_EEPROM is not set | ||
1032 | # CONFIG_SENSORS_PCF8574 is not set | ||
1033 | # CONFIG_SENSORS_PCA9539 is not set | ||
1034 | # CONFIG_SENSORS_PCF8591 is not set | ||
1035 | # CONFIG_SENSORS_MAX6875 is not set | ||
1036 | # CONFIG_I2C_DEBUG_CORE is not set | ||
1037 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
1038 | # CONFIG_I2C_DEBUG_BUS is not set | ||
1039 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
996 | 1040 | ||
997 | # | 1041 | # |
998 | # SPI support | 1042 | # SPI support |
@@ -1004,12 +1048,58 @@ CONFIG_HPET_MMAP=y | |||
1004 | # Dallas's 1-wire bus | 1048 | # Dallas's 1-wire bus |
1005 | # | 1049 | # |
1006 | # CONFIG_W1 is not set | 1050 | # CONFIG_W1 is not set |
1007 | 1051 | CONFIG_HWMON=y | |
1008 | # | ||
1009 | # Hardware Monitoring support | ||
1010 | # | ||
1011 | # CONFIG_HWMON is not set | ||
1012 | # CONFIG_HWMON_VID is not set | 1052 | # CONFIG_HWMON_VID is not set |
1053 | # CONFIG_SENSORS_ABITUGURU is not set | ||
1054 | # CONFIG_SENSORS_AD7418 is not set | ||
1055 | # CONFIG_SENSORS_ADM1021 is not set | ||
1056 | # CONFIG_SENSORS_ADM1025 is not set | ||
1057 | # CONFIG_SENSORS_ADM1026 is not set | ||
1058 | # CONFIG_SENSORS_ADM1029 is not set | ||
1059 | # CONFIG_SENSORS_ADM1031 is not set | ||
1060 | # CONFIG_SENSORS_ADM9240 is not set | ||
1061 | # CONFIG_SENSORS_K8TEMP is not set | ||
1062 | # CONFIG_SENSORS_ASB100 is not set | ||
1063 | # CONFIG_SENSORS_ATXP1 is not set | ||
1064 | # CONFIG_SENSORS_DS1621 is not set | ||
1065 | # CONFIG_SENSORS_F71805F is not set | ||
1066 | # CONFIG_SENSORS_FSCHER is not set | ||
1067 | # CONFIG_SENSORS_FSCPOS is not set | ||
1068 | # CONFIG_SENSORS_GL518SM is not set | ||
1069 | # CONFIG_SENSORS_GL520SM is not set | ||
1070 | CONFIG_SENSORS_CORETEMP=y | ||
1071 | # CONFIG_SENSORS_IT87 is not set | ||
1072 | # CONFIG_SENSORS_LM63 is not set | ||
1073 | # CONFIG_SENSORS_LM75 is not set | ||
1074 | # CONFIG_SENSORS_LM77 is not set | ||
1075 | # CONFIG_SENSORS_LM78 is not set | ||
1076 | # CONFIG_SENSORS_LM80 is not set | ||
1077 | # CONFIG_SENSORS_LM83 is not set | ||
1078 | # CONFIG_SENSORS_LM85 is not set | ||
1079 | # CONFIG_SENSORS_LM87 is not set | ||
1080 | # CONFIG_SENSORS_LM90 is not set | ||
1081 | # CONFIG_SENSORS_LM92 is not set | ||
1082 | # CONFIG_SENSORS_MAX1619 is not set | ||
1083 | # CONFIG_SENSORS_MAX6650 is not set | ||
1084 | # CONFIG_SENSORS_PC87360 is not set | ||
1085 | # CONFIG_SENSORS_PC87427 is not set | ||
1086 | # CONFIG_SENSORS_SIS5595 is not set | ||
1087 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
1088 | # CONFIG_SENSORS_SMSC47M192 is not set | ||
1089 | CONFIG_SENSORS_SMSC47B397=m | ||
1090 | # CONFIG_SENSORS_VIA686A is not set | ||
1091 | # CONFIG_SENSORS_VT1211 is not set | ||
1092 | # CONFIG_SENSORS_VT8231 is not set | ||
1093 | # CONFIG_SENSORS_W83781D is not set | ||
1094 | # CONFIG_SENSORS_W83791D is not set | ||
1095 | # CONFIG_SENSORS_W83792D is not set | ||
1096 | # CONFIG_SENSORS_W83793 is not set | ||
1097 | # CONFIG_SENSORS_W83L785TS is not set | ||
1098 | # CONFIG_SENSORS_W83627HF is not set | ||
1099 | # CONFIG_SENSORS_W83627EHF is not set | ||
1100 | # CONFIG_SENSORS_HDAPS is not set | ||
1101 | # CONFIG_SENSORS_APPLESMC is not set | ||
1102 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
1013 | 1103 | ||
1014 | # | 1104 | # |
1015 | # Multifunction device drivers | 1105 | # Multifunction device drivers |
@@ -1020,17 +1110,20 @@ CONFIG_HPET_MMAP=y | |||
1020 | # Multimedia devices | 1110 | # Multimedia devices |
1021 | # | 1111 | # |
1022 | # CONFIG_VIDEO_DEV is not set | 1112 | # CONFIG_VIDEO_DEV is not set |
1023 | 1113 | # CONFIG_DVB_CORE is not set | |
1024 | # | 1114 | CONFIG_DAB=y |
1025 | # Digital Video Broadcasting Devices | ||
1026 | # | ||
1027 | # CONFIG_DVB is not set | ||
1028 | # CONFIG_USB_DABUSB is not set | 1115 | # CONFIG_USB_DABUSB is not set |
1029 | 1116 | ||
1030 | # | 1117 | # |
1031 | # Graphics support | 1118 | # Graphics support |
1032 | # | 1119 | # |
1033 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 1120 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
1121 | |||
1122 | # | ||
1123 | # Display device support | ||
1124 | # | ||
1125 | # CONFIG_DISPLAY_SUPPORT is not set | ||
1126 | # CONFIG_VGASTATE is not set | ||
1034 | # CONFIG_FB is not set | 1127 | # CONFIG_FB is not set |
1035 | 1128 | ||
1036 | # | 1129 | # |
@@ -1056,14 +1149,10 @@ CONFIG_SOUND=y | |||
1056 | # Open Sound System | 1149 | # Open Sound System |
1057 | # | 1150 | # |
1058 | CONFIG_SOUND_PRIME=y | 1151 | CONFIG_SOUND_PRIME=y |
1059 | CONFIG_OBSOLETE_OSS=y | 1152 | # CONFIG_OSS_OBSOLETE is not set |
1060 | # CONFIG_SOUND_BT878 is not set | ||
1061 | # CONFIG_SOUND_ES1371 is not set | ||
1062 | CONFIG_SOUND_ICH=y | ||
1063 | # CONFIG_SOUND_TRIDENT is not set | 1153 | # CONFIG_SOUND_TRIDENT is not set |
1064 | # CONFIG_SOUND_MSNDCLAS is not set | 1154 | # CONFIG_SOUND_MSNDCLAS is not set |
1065 | # CONFIG_SOUND_MSNDPIN is not set | 1155 | # CONFIG_SOUND_MSNDPIN is not set |
1066 | # CONFIG_SOUND_VIA82CXXX is not set | ||
1067 | # CONFIG_SOUND_OSS is not set | 1156 | # CONFIG_SOUND_OSS is not set |
1068 | 1157 | ||
1069 | # | 1158 | # |
@@ -1142,37 +1231,10 @@ CONFIG_USB_STORAGE=y | |||
1142 | # CONFIG_USB_LIBUSUAL is not set | 1231 | # CONFIG_USB_LIBUSUAL is not set |
1143 | 1232 | ||
1144 | # | 1233 | # |
1145 | # USB Input Devices | ||
1146 | # | ||
1147 | # CONFIG_USB_AIPTEK is not set | ||
1148 | # CONFIG_USB_WACOM is not set | ||
1149 | # CONFIG_USB_ACECAD is not set | ||
1150 | # CONFIG_USB_KBTAB is not set | ||
1151 | # CONFIG_USB_POWERMATE is not set | ||
1152 | # CONFIG_USB_TOUCHSCREEN is not set | ||
1153 | # CONFIG_USB_YEALINK is not set | ||
1154 | # CONFIG_USB_XPAD is not set | ||
1155 | # CONFIG_USB_ATI_REMOTE is not set | ||
1156 | # CONFIG_USB_ATI_REMOTE2 is not set | ||
1157 | # CONFIG_USB_KEYSPAN_REMOTE is not set | ||
1158 | # CONFIG_USB_APPLETOUCH is not set | ||
1159 | # CONFIG_USB_GTCO is not set | ||
1160 | |||
1161 | # | ||
1162 | # USB Imaging devices | 1234 | # USB Imaging devices |
1163 | # | 1235 | # |
1164 | # CONFIG_USB_MDC800 is not set | 1236 | # CONFIG_USB_MDC800 is not set |
1165 | # CONFIG_USB_MICROTEK is not set | 1237 | # CONFIG_USB_MICROTEK is not set |
1166 | |||
1167 | # | ||
1168 | # USB Network Adapters | ||
1169 | # | ||
1170 | # CONFIG_USB_CATC is not set | ||
1171 | # CONFIG_USB_KAWETH is not set | ||
1172 | # CONFIG_USB_PEGASUS is not set | ||
1173 | # CONFIG_USB_RTL8150 is not set | ||
1174 | # CONFIG_USB_USBNET_MII is not set | ||
1175 | # CONFIG_USB_USBNET is not set | ||
1176 | CONFIG_USB_MON=y | 1238 | CONFIG_USB_MON=y |
1177 | 1239 | ||
1178 | # | 1240 | # |
@@ -1216,10 +1278,6 @@ CONFIG_USB_MON=y | |||
1216 | # USB Gadget Support | 1278 | # USB Gadget Support |
1217 | # | 1279 | # |
1218 | # CONFIG_USB_GADGET is not set | 1280 | # CONFIG_USB_GADGET is not set |
1219 | |||
1220 | # | ||
1221 | # MMC/SD Card support | ||
1222 | # | ||
1223 | # CONFIG_MMC is not set | 1281 | # CONFIG_MMC is not set |
1224 | 1282 | ||
1225 | # | 1283 | # |
@@ -1264,10 +1322,6 @@ CONFIG_USB_MON=y | |||
1264 | # | 1322 | # |
1265 | 1323 | ||
1266 | # | 1324 | # |
1267 | # Auxiliary Display support | ||
1268 | # | ||
1269 | |||
1270 | # | ||
1271 | # Virtualization | 1325 | # Virtualization |
1272 | # | 1326 | # |
1273 | # CONFIG_KVM is not set | 1327 | # CONFIG_KVM is not set |
@@ -1385,6 +1439,7 @@ CONFIG_LOCKD_V4=y | |||
1385 | CONFIG_EXPORTFS=y | 1439 | CONFIG_EXPORTFS=y |
1386 | CONFIG_NFS_COMMON=y | 1440 | CONFIG_NFS_COMMON=y |
1387 | CONFIG_SUNRPC=y | 1441 | CONFIG_SUNRPC=y |
1442 | # CONFIG_SUNRPC_BIND34 is not set | ||
1388 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1443 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
1389 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1444 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
1390 | # CONFIG_SMB_FS is not set | 1445 | # CONFIG_SMB_FS is not set |
@@ -1468,10 +1523,9 @@ CONFIG_DEBUG_FS=y | |||
1468 | # CONFIG_HEADERS_CHECK is not set | 1523 | # CONFIG_HEADERS_CHECK is not set |
1469 | CONFIG_DEBUG_KERNEL=y | 1524 | CONFIG_DEBUG_KERNEL=y |
1470 | # CONFIG_DEBUG_SHIRQ is not set | 1525 | # CONFIG_DEBUG_SHIRQ is not set |
1471 | CONFIG_LOG_BUF_SHIFT=18 | ||
1472 | CONFIG_DETECT_SOFTLOCKUP=y | 1526 | CONFIG_DETECT_SOFTLOCKUP=y |
1473 | # CONFIG_SCHEDSTATS is not set | 1527 | # CONFIG_SCHEDSTATS is not set |
1474 | CONFIG_TIMER_STATS=y | 1528 | # CONFIG_TIMER_STATS is not set |
1475 | # CONFIG_DEBUG_SLAB is not set | 1529 | # CONFIG_DEBUG_SLAB is not set |
1476 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1530 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1477 | # CONFIG_RT_MUTEX_TESTER is not set | 1531 | # CONFIG_RT_MUTEX_TESTER is not set |
@@ -1487,6 +1541,8 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1487 | # CONFIG_DEBUG_VM is not set | 1541 | # CONFIG_DEBUG_VM is not set |
1488 | # CONFIG_DEBUG_LIST is not set | 1542 | # CONFIG_DEBUG_LIST is not set |
1489 | # CONFIG_FRAME_POINTER is not set | 1543 | # CONFIG_FRAME_POINTER is not set |
1544 | CONFIG_UNWIND_INFO=y | ||
1545 | CONFIG_STACK_UNWIND=y | ||
1490 | # CONFIG_FORCED_INLINING is not set | 1546 | # CONFIG_FORCED_INLINING is not set |
1491 | # CONFIG_RCU_TORTURE_TEST is not set | 1547 | # CONFIG_RCU_TORTURE_TEST is not set |
1492 | # CONFIG_LKDTM is not set | 1548 | # CONFIG_LKDTM is not set |
@@ -1513,9 +1569,11 @@ CONFIG_DEBUG_STACKOVERFLOW=y | |||
1513 | CONFIG_BITREVERSE=y | 1569 | CONFIG_BITREVERSE=y |
1514 | # CONFIG_CRC_CCITT is not set | 1570 | # CONFIG_CRC_CCITT is not set |
1515 | # CONFIG_CRC16 is not set | 1571 | # CONFIG_CRC16 is not set |
1572 | # CONFIG_CRC_ITU_T is not set | ||
1516 | CONFIG_CRC32=y | 1573 | CONFIG_CRC32=y |
1517 | # CONFIG_LIBCRC32C is not set | 1574 | # CONFIG_LIBCRC32C is not set |
1518 | CONFIG_ZLIB_INFLATE=y | 1575 | CONFIG_ZLIB_INFLATE=y |
1519 | CONFIG_PLIST=y | 1576 | CONFIG_PLIST=y |
1520 | CONFIG_HAS_IOMEM=y | 1577 | CONFIG_HAS_IOMEM=y |
1521 | CONFIG_HAS_IOPORT=y | 1578 | CONFIG_HAS_IOPORT=y |
1579 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/x86_64/ia32/mmap32.c b/arch/x86_64/ia32/mmap32.c index 079f4132575c..e4b84b4a417a 100644 --- a/arch/x86_64/ia32/mmap32.c +++ b/arch/x86_64/ia32/mmap32.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <linux/personality.h> | 29 | #include <linux/personality.h> |
30 | #include <linux/mm.h> | 30 | #include <linux/mm.h> |
31 | #include <linux/random.h> | 31 | #include <linux/random.h> |
32 | #include <linux/sched.h> | ||
32 | 33 | ||
33 | /* | 34 | /* |
34 | * Top of mmap area (just below the process stack). | 35 | * Top of mmap area (just below the process stack). |
diff --git a/arch/x86_64/kernel/early_printk.c b/arch/x86_64/kernel/early_printk.c index 56eaa259782b..296d2b0c5d88 100644 --- a/arch/x86_64/kernel/early_printk.c +++ b/arch/x86_64/kernel/early_printk.c | |||
@@ -91,9 +91,9 @@ static int early_serial_putc(unsigned char ch) | |||
91 | static void early_serial_write(struct console *con, const char *s, unsigned n) | 91 | static void early_serial_write(struct console *con, const char *s, unsigned n) |
92 | { | 92 | { |
93 | while (*s && n-- > 0) { | 93 | while (*s && n-- > 0) { |
94 | early_serial_putc(*s); | ||
95 | if (*s == '\n') | 94 | if (*s == '\n') |
96 | early_serial_putc('\r'); | 95 | early_serial_putc('\r'); |
96 | early_serial_putc(*s); | ||
97 | s++; | 97 | s++; |
98 | } | 98 | } |
99 | } | 99 | } |
diff --git a/arch/x86_64/kernel/reboot.c b/arch/x86_64/kernel/reboot.c index c116b54d422e..7503068e788d 100644 --- a/arch/x86_64/kernel/reboot.c +++ b/arch/x86_64/kernel/reboot.c | |||
@@ -8,6 +8,7 @@ | |||
8 | #include <linux/string.h> | 8 | #include <linux/string.h> |
9 | #include <linux/pm.h> | 9 | #include <linux/pm.h> |
10 | #include <linux/kdebug.h> | 10 | #include <linux/kdebug.h> |
11 | #include <linux/sched.h> | ||
11 | #include <asm/io.h> | 12 | #include <asm/io.h> |
12 | #include <asm/delay.h> | 13 | #include <asm/delay.h> |
13 | #include <asm/hw_irq.h> | 14 | #include <asm/hw_irq.h> |
diff --git a/arch/x86_64/kernel/vsyscall.c b/arch/x86_64/kernel/vsyscall.c index 51d4c6fa88c8..57660d58d500 100644 --- a/arch/x86_64/kernel/vsyscall.c +++ b/arch/x86_64/kernel/vsyscall.c | |||
@@ -175,10 +175,13 @@ int __vsyscall(0) vgettimeofday(struct timeval * tv, struct timezone * tz) | |||
175 | * unlikely */ | 175 | * unlikely */ |
176 | time_t __vsyscall(1) vtime(time_t *t) | 176 | time_t __vsyscall(1) vtime(time_t *t) |
177 | { | 177 | { |
178 | struct timeval tv; | ||
178 | time_t result; | 179 | time_t result; |
179 | if (unlikely(!__vsyscall_gtod_data.sysctl_enabled)) | 180 | if (unlikely(!__vsyscall_gtod_data.sysctl_enabled)) |
180 | return time_syscall(t); | 181 | return time_syscall(t); |
181 | result = __vsyscall_gtod_data.wall_time_sec; | 182 | |
183 | vgettimeofday(&tv, 0); | ||
184 | result = tv.tv_sec; | ||
182 | if (t) | 185 | if (t) |
183 | *t = result; | 186 | *t = result; |
184 | return result; | 187 | return result; |