diff options
Diffstat (limited to 'arch')
156 files changed, 2078 insertions, 1719 deletions
diff --git a/arch/alpha/include/asm/bug.h b/arch/alpha/include/asm/bug.h index 7b85b7c93709..1720c8ad86fe 100644 --- a/arch/alpha/include/asm/bug.h +++ b/arch/alpha/include/asm/bug.h | |||
| @@ -8,12 +8,12 @@ | |||
| 8 | 8 | ||
| 9 | /* ??? Would be nice to use .gprel32 here, but we can't be sure that the | 9 | /* ??? Would be nice to use .gprel32 here, but we can't be sure that the |
| 10 | function loaded the GP, so this could fail in modules. */ | 10 | function loaded the GP, so this could fail in modules. */ |
| 11 | #define BUG() { \ | 11 | #define BUG() do { \ |
| 12 | __asm__ __volatile__( \ | 12 | __asm__ __volatile__( \ |
| 13 | "call_pal %0 # bugchk\n\t" \ | 13 | "call_pal %0 # bugchk\n\t" \ |
| 14 | ".long %1\n\t.8byte %2" \ | 14 | ".long %1\n\t.8byte %2" \ |
| 15 | : : "i"(PAL_bugchk), "i"(__LINE__), "i"(__FILE__)); \ | 15 | : : "i"(PAL_bugchk), "i"(__LINE__), "i"(__FILE__)); \ |
| 16 | for ( ; ; ); } | 16 | for ( ; ; ); } while (0) |
| 17 | 17 | ||
| 18 | #define HAVE_ARCH_BUG | 18 | #define HAVE_ARCH_BUG |
| 19 | #endif | 19 | #endif |
diff --git a/arch/arm/kernel/entry-armv.S b/arch/arm/kernel/entry-armv.S index 77b047475539..85040cfeb5e5 100644 --- a/arch/arm/kernel/entry-armv.S +++ b/arch/arm/kernel/entry-armv.S | |||
| @@ -650,6 +650,7 @@ ENTRY(fp_enter) | |||
| 650 | no_fp: mov pc, lr | 650 | no_fp: mov pc, lr |
| 651 | 651 | ||
| 652 | __und_usr_unknown: | 652 | __und_usr_unknown: |
| 653 | enable_irq | ||
| 653 | mov r0, sp | 654 | mov r0, sp |
| 654 | adr lr, ret_from_exception | 655 | adr lr, ret_from_exception |
| 655 | b do_undefinstr | 656 | b do_undefinstr |
diff --git a/arch/arm/kernel/entry-common.S b/arch/arm/kernel/entry-common.S index 06269ea375c5..49a6ba926c2b 100644 --- a/arch/arm/kernel/entry-common.S +++ b/arch/arm/kernel/entry-common.S | |||
| @@ -136,7 +136,7 @@ ENTRY(mcount) | |||
| 136 | ldmia sp!, {r0-r3, pc} | 136 | ldmia sp!, {r0-r3, pc} |
| 137 | 137 | ||
| 138 | trace: | 138 | trace: |
| 139 | ldr r1, [fp, #-4] | 139 | ldr r1, [fp, #-4] @ lr of instrumented routine |
| 140 | mov r0, lr | 140 | mov r0, lr |
| 141 | sub r0, r0, #MCOUNT_INSN_SIZE | 141 | sub r0, r0, #MCOUNT_INSN_SIZE |
| 142 | mov lr, pc | 142 | mov lr, pc |
diff --git a/arch/arm/kernel/irq.c b/arch/arm/kernel/irq.c index 7141cee1fab7..363db186cb93 100644 --- a/arch/arm/kernel/irq.c +++ b/arch/arm/kernel/irq.c | |||
| @@ -101,7 +101,7 @@ unlock: | |||
| 101 | /* Handle bad interrupts */ | 101 | /* Handle bad interrupts */ |
| 102 | static struct irq_desc bad_irq_desc = { | 102 | static struct irq_desc bad_irq_desc = { |
| 103 | .handle_irq = handle_bad_irq, | 103 | .handle_irq = handle_bad_irq, |
| 104 | .lock = SPIN_LOCK_UNLOCKED | 104 | .lock = __SPIN_LOCK_UNLOCKED(bad_irq_desc.lock), |
| 105 | }; | 105 | }; |
| 106 | 106 | ||
| 107 | /* | 107 | /* |
diff --git a/arch/arm/kernel/machine_kexec.c b/arch/arm/kernel/machine_kexec.c index 440dc62cdc3a..598ca61e7bca 100644 --- a/arch/arm/kernel/machine_kexec.c +++ b/arch/arm/kernel/machine_kexec.c | |||
| @@ -13,8 +13,8 @@ | |||
| 13 | #include <asm/cacheflush.h> | 13 | #include <asm/cacheflush.h> |
| 14 | #include <asm/mach-types.h> | 14 | #include <asm/mach-types.h> |
| 15 | 15 | ||
| 16 | const extern unsigned char relocate_new_kernel[]; | 16 | extern const unsigned char relocate_new_kernel[]; |
| 17 | const extern unsigned int relocate_new_kernel_size; | 17 | extern const unsigned int relocate_new_kernel_size; |
| 18 | 18 | ||
| 19 | extern void setup_mm_for_reboot(char mode); | 19 | extern void setup_mm_for_reboot(char mode); |
| 20 | 20 | ||
diff --git a/arch/arm/mach-msm/board-halibut.c b/arch/arm/mach-msm/board-halibut.c index c2a96e3965a6..e61967dde9a1 100644 --- a/arch/arm/mach-msm/board-halibut.c +++ b/arch/arm/mach-msm/board-halibut.c | |||
| @@ -27,6 +27,7 @@ | |||
| 27 | #include <asm/mach/map.h> | 27 | #include <asm/mach/map.h> |
| 28 | #include <asm/mach/flash.h> | 28 | #include <asm/mach/flash.h> |
| 29 | 29 | ||
| 30 | #include <mach/irqs.h> | ||
| 30 | #include <mach/board.h> | 31 | #include <mach/board.h> |
| 31 | #include <mach/msm_iomap.h> | 32 | #include <mach/msm_iomap.h> |
| 32 | 33 | ||
diff --git a/arch/arm/mach-omap1/devices.c b/arch/arm/mach-omap1/devices.c index 77382d8b6b2f..ba5d7c08dc17 100644 --- a/arch/arm/mach-omap1/devices.c +++ b/arch/arm/mach-omap1/devices.c | |||
| @@ -181,7 +181,7 @@ void __init omap1_init_mmc(struct omap_mmc_platform_data **mmc_data, | |||
| 181 | } | 181 | } |
| 182 | size = OMAP1_MMC_SIZE; | 182 | size = OMAP1_MMC_SIZE; |
| 183 | 183 | ||
| 184 | omap_mmc_add(i, base, size, irq, mmc_data[i]); | 184 | omap_mmc_add("mmci-omap", i, base, size, irq, mmc_data[i]); |
| 185 | }; | 185 | }; |
| 186 | } | 186 | } |
| 187 | 187 | ||
diff --git a/arch/arm/mach-omap1/mcbsp.c b/arch/arm/mach-omap1/mcbsp.c index ca7a0cc1707c..575ba31295cf 100644 --- a/arch/arm/mach-omap1/mcbsp.c +++ b/arch/arm/mach-omap1/mcbsp.c | |||
| @@ -28,81 +28,8 @@ | |||
| 28 | #define DPS_RSTCT2_PER_EN (1 << 0) | 28 | #define DPS_RSTCT2_PER_EN (1 << 0) |
| 29 | #define DSP_RSTCT2_WD_PER_EN (1 << 1) | 29 | #define DSP_RSTCT2_WD_PER_EN (1 << 1) |
| 30 | 30 | ||
| 31 | struct mcbsp_internal_clk { | ||
| 32 | struct clk clk; | ||
| 33 | struct clk **childs; | ||
| 34 | int n_childs; | ||
| 35 | }; | ||
| 36 | |||
| 37 | #if defined(CONFIG_ARCH_OMAP15XX) || defined(CONFIG_ARCH_OMAP16XX) | 31 | #if defined(CONFIG_ARCH_OMAP15XX) || defined(CONFIG_ARCH_OMAP16XX) |
| 38 | static void omap_mcbsp_clk_init(struct mcbsp_internal_clk *mclk) | 32 | const char *clk_names[] = { "dsp_ck", "api_ck", "dspxor_ck" }; |
| 39 | { | ||
| 40 | const char *clk_names[] = { "dsp_ck", "api_ck", "dspxor_ck" }; | ||
| 41 | int i; | ||
| 42 | |||
| 43 | mclk->n_childs = ARRAY_SIZE(clk_names); | ||
| 44 | mclk->childs = kzalloc(mclk->n_childs * sizeof(struct clk *), | ||
| 45 | GFP_KERNEL); | ||
| 46 | |||
| 47 | for (i = 0; i < mclk->n_childs; i++) { | ||
| 48 | /* We fake a platform device to get correct device id */ | ||
| 49 | struct platform_device pdev; | ||
| 50 | |||
| 51 | pdev.dev.bus = &platform_bus_type; | ||
| 52 | pdev.id = mclk->clk.id; | ||
| 53 | mclk->childs[i] = clk_get(&pdev.dev, clk_names[i]); | ||
| 54 | if (IS_ERR(mclk->childs[i])) | ||
| 55 | printk(KERN_ERR "Could not get clock %s (%d).\n", | ||
| 56 | clk_names[i], mclk->clk.id); | ||
| 57 | } | ||
| 58 | } | ||
| 59 | |||
| 60 | static int omap_mcbsp_clk_enable(struct clk *clk) | ||
| 61 | { | ||
| 62 | struct mcbsp_internal_clk *mclk = container_of(clk, | ||
| 63 | struct mcbsp_internal_clk, clk); | ||
| 64 | int i; | ||
| 65 | |||
| 66 | for (i = 0; i < mclk->n_childs; i++) | ||
| 67 | clk_enable(mclk->childs[i]); | ||
| 68 | return 0; | ||
| 69 | } | ||
| 70 | |||
| 71 | static void omap_mcbsp_clk_disable(struct clk *clk) | ||
| 72 | { | ||
| 73 | struct mcbsp_internal_clk *mclk = container_of(clk, | ||
| 74 | struct mcbsp_internal_clk, clk); | ||
| 75 | int i; | ||
| 76 | |||
| 77 | for (i = 0; i < mclk->n_childs; i++) | ||
| 78 | clk_disable(mclk->childs[i]); | ||
| 79 | } | ||
| 80 | |||
| 81 | static struct mcbsp_internal_clk omap_mcbsp_clks[] = { | ||
| 82 | { | ||
| 83 | .clk = { | ||
| 84 | .name = "mcbsp_clk", | ||
| 85 | .id = 1, | ||
| 86 | .enable = omap_mcbsp_clk_enable, | ||
| 87 | .disable = omap_mcbsp_clk_disable, | ||
| 88 | }, | ||
| 89 | }, | ||
| 90 | { | ||
| 91 | .clk = { | ||
| 92 | .name = "mcbsp_clk", | ||
| 93 | .id = 3, | ||
| 94 | .enable = omap_mcbsp_clk_enable, | ||
| 95 | .disable = omap_mcbsp_clk_disable, | ||
| 96 | }, | ||
| 97 | }, | ||
| 98 | }; | ||
| 99 | |||
| 100 | #define omap_mcbsp_clks_size ARRAY_SIZE(omap_mcbsp_clks) | ||
| 101 | #else | ||
| 102 | #define omap_mcbsp_clks_size 0 | ||
| 103 | static struct mcbsp_internal_clk __initdata *omap_mcbsp_clks; | ||
| 104 | static inline void omap_mcbsp_clk_init(struct mcbsp_internal_clk *mclk) | ||
| 105 | { } | ||
| 106 | #endif | 33 | #endif |
| 107 | 34 | ||
| 108 | static void omap1_mcbsp_request(unsigned int id) | 35 | static void omap1_mcbsp_request(unsigned int id) |
| @@ -167,8 +94,9 @@ static struct omap_mcbsp_platform_data omap15xx_mcbsp_pdata[] = { | |||
| 167 | .rx_irq = INT_McBSP1RX, | 94 | .rx_irq = INT_McBSP1RX, |
| 168 | .tx_irq = INT_McBSP1TX, | 95 | .tx_irq = INT_McBSP1TX, |
| 169 | .ops = &omap1_mcbsp_ops, | 96 | .ops = &omap1_mcbsp_ops, |
| 170 | .clk_name = "mcbsp_clk", | 97 | .clk_names = clk_names, |
| 171 | }, | 98 | .num_clks = 3, |
| 99 | }, | ||
| 172 | { | 100 | { |
| 173 | .phys_base = OMAP1510_MCBSP2_BASE, | 101 | .phys_base = OMAP1510_MCBSP2_BASE, |
| 174 | .dma_rx_sync = OMAP_DMA_MCBSP2_RX, | 102 | .dma_rx_sync = OMAP_DMA_MCBSP2_RX, |
| @@ -184,7 +112,8 @@ static struct omap_mcbsp_platform_data omap15xx_mcbsp_pdata[] = { | |||
| 184 | .rx_irq = INT_McBSP3RX, | 112 | .rx_irq = INT_McBSP3RX, |
| 185 | .tx_irq = INT_McBSP3TX, | 113 | .tx_irq = INT_McBSP3TX, |
| 186 | .ops = &omap1_mcbsp_ops, | 114 | .ops = &omap1_mcbsp_ops, |
| 187 | .clk_name = "mcbsp_clk", | 115 | .clk_names = clk_names, |
| 116 | .num_clks = 3, | ||
| 188 | }, | 117 | }, |
| 189 | }; | 118 | }; |
| 190 | #define OMAP15XX_MCBSP_PDATA_SZ ARRAY_SIZE(omap15xx_mcbsp_pdata) | 119 | #define OMAP15XX_MCBSP_PDATA_SZ ARRAY_SIZE(omap15xx_mcbsp_pdata) |
| @@ -202,7 +131,8 @@ static struct omap_mcbsp_platform_data omap16xx_mcbsp_pdata[] = { | |||
| 202 | .rx_irq = INT_McBSP1RX, | 131 | .rx_irq = INT_McBSP1RX, |
| 203 | .tx_irq = INT_McBSP1TX, | 132 | .tx_irq = INT_McBSP1TX, |
| 204 | .ops = &omap1_mcbsp_ops, | 133 | .ops = &omap1_mcbsp_ops, |
| 205 | .clk_name = "mcbsp_clk", | 134 | .clk_names = clk_names, |
| 135 | .num_clks = 3, | ||
| 206 | }, | 136 | }, |
| 207 | { | 137 | { |
| 208 | .phys_base = OMAP1610_MCBSP2_BASE, | 138 | .phys_base = OMAP1610_MCBSP2_BASE, |
| @@ -219,7 +149,8 @@ static struct omap_mcbsp_platform_data omap16xx_mcbsp_pdata[] = { | |||
| 219 | .rx_irq = INT_McBSP3RX, | 149 | .rx_irq = INT_McBSP3RX, |
| 220 | .tx_irq = INT_McBSP3TX, | 150 | .tx_irq = INT_McBSP3TX, |
| 221 | .ops = &omap1_mcbsp_ops, | 151 | .ops = &omap1_mcbsp_ops, |
| 222 | .clk_name = "mcbsp_clk", | 152 | .clk_names = clk_names, |
| 153 | .num_clks = 3, | ||
| 223 | }, | 154 | }, |
| 224 | }; | 155 | }; |
| 225 | #define OMAP16XX_MCBSP_PDATA_SZ ARRAY_SIZE(omap16xx_mcbsp_pdata) | 156 | #define OMAP16XX_MCBSP_PDATA_SZ ARRAY_SIZE(omap16xx_mcbsp_pdata) |
| @@ -230,15 +161,6 @@ static struct omap_mcbsp_platform_data omap16xx_mcbsp_pdata[] = { | |||
| 230 | 161 | ||
| 231 | int __init omap1_mcbsp_init(void) | 162 | int __init omap1_mcbsp_init(void) |
| 232 | { | 163 | { |
| 233 | int i; | ||
| 234 | |||
| 235 | for (i = 0; i < omap_mcbsp_clks_size; i++) { | ||
| 236 | if (cpu_is_omap15xx() || cpu_is_omap16xx()) { | ||
| 237 | omap_mcbsp_clk_init(&omap_mcbsp_clks[i]); | ||
| 238 | clk_register(&omap_mcbsp_clks[i].clk); | ||
| 239 | } | ||
| 240 | } | ||
| 241 | |||
| 242 | if (cpu_is_omap730()) | 164 | if (cpu_is_omap730()) |
| 243 | omap_mcbsp_count = OMAP730_MCBSP_PDATA_SZ; | 165 | omap_mcbsp_count = OMAP730_MCBSP_PDATA_SZ; |
| 244 | if (cpu_is_omap15xx()) | 166 | if (cpu_is_omap15xx()) |
diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index 9d7216ff6c9f..ce03fa750775 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c | |||
| @@ -421,6 +421,7 @@ void __init omap2_init_mmc(struct omap_mmc_platform_data **mmc_data, | |||
| 421 | int nr_controllers) | 421 | int nr_controllers) |
| 422 | { | 422 | { |
| 423 | int i; | 423 | int i; |
| 424 | char *name; | ||
| 424 | 425 | ||
| 425 | for (i = 0; i < nr_controllers; i++) { | 426 | for (i = 0; i < nr_controllers; i++) { |
| 426 | unsigned long base, size; | 427 | unsigned long base, size; |
| @@ -450,12 +451,14 @@ void __init omap2_init_mmc(struct omap_mmc_platform_data **mmc_data, | |||
| 450 | continue; | 451 | continue; |
| 451 | } | 452 | } |
| 452 | 453 | ||
| 453 | if (cpu_is_omap2420()) | 454 | if (cpu_is_omap2420()) { |
| 454 | size = OMAP2420_MMC_SIZE; | 455 | size = OMAP2420_MMC_SIZE; |
| 455 | else | 456 | name = "mmci-omap"; |
| 457 | } else { | ||
| 456 | size = HSMMC_SIZE; | 458 | size = HSMMC_SIZE; |
| 457 | 459 | name = "mmci-omap-hs"; | |
| 458 | omap_mmc_add(i, base, size, irq, mmc_data[i]); | 460 | } |
| 461 | omap_mmc_add(name, i, base, size, irq, mmc_data[i]); | ||
| 459 | }; | 462 | }; |
| 460 | } | 463 | } |
| 461 | 464 | ||
diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c index b0f8e7d62798..b52a02fc7cd6 100644 --- a/arch/arm/mach-omap2/id.c +++ b/arch/arm/mach-omap2/id.c | |||
| @@ -172,9 +172,13 @@ void __init omap34xx_check_revision(void) | |||
| 172 | omap_revision = OMAP3430_REV_ES3_0; | 172 | omap_revision = OMAP3430_REV_ES3_0; |
| 173 | rev_name = "ES3.0"; | 173 | rev_name = "ES3.0"; |
| 174 | break; | 174 | break; |
| 175 | case 4: | ||
| 176 | omap_revision = OMAP3430_REV_ES3_1; | ||
| 177 | rev_name = "ES3.1"; | ||
| 178 | break; | ||
| 175 | default: | 179 | default: |
| 176 | /* Use the latest known revision as default */ | 180 | /* Use the latest known revision as default */ |
| 177 | omap_revision = OMAP3430_REV_ES3_0; | 181 | omap_revision = OMAP3430_REV_ES3_1; |
| 178 | rev_name = "Unknown revision\n"; | 182 | rev_name = "Unknown revision\n"; |
| 179 | } | 183 | } |
| 180 | } | 184 | } |
diff --git a/arch/arm/mach-omap2/irq.c b/arch/arm/mach-omap2/irq.c index 636e2821af7d..9ba20d985dda 100644 --- a/arch/arm/mach-omap2/irq.c +++ b/arch/arm/mach-omap2/irq.c | |||
| @@ -134,6 +134,7 @@ static struct irq_chip omap_irq_chip = { | |||
| 134 | .ack = omap_mask_ack_irq, | 134 | .ack = omap_mask_ack_irq, |
| 135 | .mask = omap_mask_irq, | 135 | .mask = omap_mask_irq, |
| 136 | .unmask = omap_unmask_irq, | 136 | .unmask = omap_unmask_irq, |
| 137 | .disable = omap_mask_irq, | ||
| 137 | }; | 138 | }; |
| 138 | 139 | ||
| 139 | static void __init omap_irq_bank_init_one(struct omap_irq_bank *bank) | 140 | static void __init omap_irq_bank_init_one(struct omap_irq_bank *bank) |
diff --git a/arch/arm/mach-omap2/mcbsp.c b/arch/arm/mach-omap2/mcbsp.c index e20023c9d15d..a9e631fc1134 100644 --- a/arch/arm/mach-omap2/mcbsp.c +++ b/arch/arm/mach-omap2/mcbsp.c | |||
| @@ -24,106 +24,7 @@ | |||
| 24 | #include <mach/cpu.h> | 24 | #include <mach/cpu.h> |
| 25 | #include <mach/mcbsp.h> | 25 | #include <mach/mcbsp.h> |
| 26 | 26 | ||
| 27 | struct mcbsp_internal_clk { | 27 | const char *clk_names[] = { "mcbsp_ick", "mcbsp_fck" }; |
| 28 | struct clk clk; | ||
| 29 | struct clk **childs; | ||
| 30 | int n_childs; | ||
| 31 | }; | ||
| 32 | |||
| 33 | #if defined(CONFIG_ARCH_OMAP24XX) || defined(CONFIG_ARCH_OMAP34XX) | ||
| 34 | static void omap_mcbsp_clk_init(struct mcbsp_internal_clk *mclk) | ||
| 35 | { | ||
| 36 | const char *clk_names[] = { "mcbsp_ick", "mcbsp_fck" }; | ||
| 37 | int i; | ||
| 38 | |||
| 39 | mclk->n_childs = ARRAY_SIZE(clk_names); | ||
| 40 | mclk->childs = kzalloc(mclk->n_childs * sizeof(struct clk *), | ||
| 41 | GFP_KERNEL); | ||
| 42 | |||
| 43 | for (i = 0; i < mclk->n_childs; i++) { | ||
| 44 | /* We fake a platform device to get correct device id */ | ||
| 45 | struct platform_device pdev; | ||
| 46 | |||
| 47 | pdev.dev.bus = &platform_bus_type; | ||
| 48 | pdev.id = mclk->clk.id; | ||
| 49 | mclk->childs[i] = clk_get(&pdev.dev, clk_names[i]); | ||
| 50 | if (IS_ERR(mclk->childs[i])) | ||
| 51 | printk(KERN_ERR "Could not get clock %s (%d).\n", | ||
| 52 | clk_names[i], mclk->clk.id); | ||
| 53 | } | ||
| 54 | } | ||
| 55 | |||
| 56 | static int omap_mcbsp_clk_enable(struct clk *clk) | ||
| 57 | { | ||
| 58 | struct mcbsp_internal_clk *mclk = container_of(clk, | ||
| 59 | struct mcbsp_internal_clk, clk); | ||
| 60 | int i; | ||
| 61 | |||
| 62 | for (i = 0; i < mclk->n_childs; i++) | ||
| 63 | clk_enable(mclk->childs[i]); | ||
| 64 | return 0; | ||
| 65 | } | ||
| 66 | |||
| 67 | static void omap_mcbsp_clk_disable(struct clk *clk) | ||
| 68 | { | ||
| 69 | struct mcbsp_internal_clk *mclk = container_of(clk, | ||
| 70 | struct mcbsp_internal_clk, clk); | ||
| 71 | int i; | ||
| 72 | |||
| 73 | for (i = 0; i < mclk->n_childs; i++) | ||
| 74 | clk_disable(mclk->childs[i]); | ||
| 75 | } | ||
| 76 | |||
| 77 | static struct mcbsp_internal_clk omap_mcbsp_clks[] = { | ||
| 78 | { | ||
| 79 | .clk = { | ||
| 80 | .name = "mcbsp_clk", | ||
| 81 | .id = 1, | ||
| 82 | .enable = omap_mcbsp_clk_enable, | ||
| 83 | .disable = omap_mcbsp_clk_disable, | ||
| 84 | }, | ||
| 85 | }, | ||
| 86 | { | ||
| 87 | .clk = { | ||
| 88 | .name = "mcbsp_clk", | ||
| 89 | .id = 2, | ||
| 90 | .enable = omap_mcbsp_clk_enable, | ||
| 91 | .disable = omap_mcbsp_clk_disable, | ||
| 92 | }, | ||
| 93 | }, | ||
| 94 | { | ||
| 95 | .clk = { | ||
| 96 | .name = "mcbsp_clk", | ||
| 97 | .id = 3, | ||
| 98 | .enable = omap_mcbsp_clk_enable, | ||
| 99 | .disable = omap_mcbsp_clk_disable, | ||
| 100 | }, | ||
| 101 | }, | ||
| 102 | { | ||
| 103 | .clk = { | ||
| 104 | .name = "mcbsp_clk", | ||
| 105 | .id = 4, | ||
| 106 | .enable = omap_mcbsp_clk_enable, | ||
| 107 | .disable = omap_mcbsp_clk_disable, | ||
| 108 | }, | ||
| 109 | }, | ||
| 110 | { | ||
| 111 | .clk = { | ||
| 112 | .name = "mcbsp_clk", | ||
| 113 | .id = 5, | ||
| 114 | .enable = omap_mcbsp_clk_enable, | ||
| 115 | .disable = omap_mcbsp_clk_disable, | ||
| 116 | }, | ||
| 117 | }, | ||
| 118 | }; | ||
| 119 | |||
| 120 | #define omap_mcbsp_clks_size ARRAY_SIZE(omap_mcbsp_clks) | ||
| 121 | #else | ||
| 122 | #define omap_mcbsp_clks_size 0 | ||
| 123 | static struct mcbsp_internal_clk __initdata *omap_mcbsp_clks; | ||
| 124 | static inline void omap_mcbsp_clk_init(struct clk *clk) | ||
| 125 | { } | ||
| 126 | #endif | ||
| 127 | 28 | ||
| 128 | static void omap2_mcbsp2_mux_setup(void) | 29 | static void omap2_mcbsp2_mux_setup(void) |
| 129 | { | 30 | { |
| @@ -156,7 +57,8 @@ static struct omap_mcbsp_platform_data omap2420_mcbsp_pdata[] = { | |||
| 156 | .rx_irq = INT_24XX_MCBSP1_IRQ_RX, | 57 | .rx_irq = INT_24XX_MCBSP1_IRQ_RX, |
| 157 | .tx_irq = INT_24XX_MCBSP1_IRQ_TX, | 58 | .tx_irq = INT_24XX_MCBSP1_IRQ_TX, |
| 158 | .ops = &omap2_mcbsp_ops, | 59 | .ops = &omap2_mcbsp_ops, |
| 159 | .clk_name = "mcbsp_clk", | 60 | .clk_names = clk_names, |
| 61 | .num_clks = 2, | ||
| 160 | }, | 62 | }, |
| 161 | { | 63 | { |
| 162 | .phys_base = OMAP24XX_MCBSP2_BASE, | 64 | .phys_base = OMAP24XX_MCBSP2_BASE, |
| @@ -165,7 +67,8 @@ static struct omap_mcbsp_platform_data omap2420_mcbsp_pdata[] = { | |||
| 165 | .rx_irq = INT_24XX_MCBSP2_IRQ_RX, | 67 | .rx_irq = INT_24XX_MCBSP2_IRQ_RX, |
| 166 | .tx_irq = INT_24XX_MCBSP2_IRQ_TX, | 68 | .tx_irq = INT_24XX_MCBSP2_IRQ_TX, |
| 167 | .ops = &omap2_mcbsp_ops, | 69 | .ops = &omap2_mcbsp_ops, |
| 168 | .clk_name = "mcbsp_clk", | 70 | .clk_names = clk_names, |
| 71 | .num_clks = 2, | ||
| 169 | }, | 72 | }, |
| 170 | }; | 73 | }; |
| 171 | #define OMAP2420_MCBSP_PDATA_SZ ARRAY_SIZE(omap2420_mcbsp_pdata) | 74 | #define OMAP2420_MCBSP_PDATA_SZ ARRAY_SIZE(omap2420_mcbsp_pdata) |
| @@ -183,7 +86,8 @@ static struct omap_mcbsp_platform_data omap2430_mcbsp_pdata[] = { | |||
| 183 | .rx_irq = INT_24XX_MCBSP1_IRQ_RX, | 86 | .rx_irq = INT_24XX_MCBSP1_IRQ_RX, |
| 184 | .tx_irq = INT_24XX_MCBSP1_IRQ_TX, | 87 | .tx_irq = INT_24XX_MCBSP1_IRQ_TX, |
| 185 | .ops = &omap2_mcbsp_ops, | 88 | .ops = &omap2_mcbsp_ops, |
| 186 | .clk_name = "mcbsp_clk", | 89 | .clk_names = clk_names, |
| 90 | .num_clks = 2, | ||
| 187 | }, | 91 | }, |
| 188 | { | 92 | { |
| 189 | .phys_base = OMAP24XX_MCBSP2_BASE, | 93 | .phys_base = OMAP24XX_MCBSP2_BASE, |
| @@ -192,7 +96,8 @@ static struct omap_mcbsp_platform_data omap2430_mcbsp_pdata[] = { | |||
| 192 | .rx_irq = INT_24XX_MCBSP2_IRQ_RX, | 96 | .rx_irq = INT_24XX_MCBSP2_IRQ_RX, |
| 193 | .tx_irq = INT_24XX_MCBSP2_IRQ_TX, | 97 | .tx_irq = INT_24XX_MCBSP2_IRQ_TX, |
| 194 | .ops = &omap2_mcbsp_ops, | 98 | .ops = &omap2_mcbsp_ops, |
| 195 | .clk_name = "mcbsp_clk", | 99 | .clk_names = clk_names, |
| 100 | .num_clks = 2, | ||
| 196 | }, | 101 | }, |
| 197 | { | 102 | { |
| 198 | .phys_base = OMAP2430_MCBSP3_BASE, | 103 | .phys_base = OMAP2430_MCBSP3_BASE, |
| @@ -201,7 +106,8 @@ static struct omap_mcbsp_platform_data omap2430_mcbsp_pdata[] = { | |||
| 201 | .rx_irq = INT_24XX_MCBSP3_IRQ_RX, | 106 | .rx_irq = INT_24XX_MCBSP3_IRQ_RX, |
| 202 | .tx_irq = INT_24XX_MCBSP3_IRQ_TX, | 107 | .tx_irq = INT_24XX_MCBSP3_IRQ_TX, |
| 203 | .ops = &omap2_mcbsp_ops, | 108 | .ops = &omap2_mcbsp_ops, |
| 204 | .clk_name = "mcbsp_clk", | 109 | .clk_names = clk_names, |
| 110 | .num_clks = 2, | ||
| 205 | }, | 111 | }, |
| 206 | { | 112 | { |
| 207 | .phys_base = OMAP2430_MCBSP4_BASE, | 113 | .phys_base = OMAP2430_MCBSP4_BASE, |
| @@ -210,7 +116,8 @@ static struct omap_mcbsp_platform_data omap2430_mcbsp_pdata[] = { | |||
| 210 | .rx_irq = INT_24XX_MCBSP4_IRQ_RX, | 116 | .rx_irq = INT_24XX_MCBSP4_IRQ_RX, |
| 211 | .tx_irq = INT_24XX_MCBSP4_IRQ_TX, | 117 | .tx_irq = INT_24XX_MCBSP4_IRQ_TX, |
| 212 | .ops = &omap2_mcbsp_ops, | 118 | .ops = &omap2_mcbsp_ops, |
| 213 | .clk_name = "mcbsp_clk", | 119 | .clk_names = clk_names, |
| 120 | .num_clks = 2, | ||
| 214 | }, | 121 | }, |
| 215 | { | 122 | { |
| 216 | .phys_base = OMAP2430_MCBSP5_BASE, | 123 | .phys_base = OMAP2430_MCBSP5_BASE, |
| @@ -219,7 +126,8 @@ static struct omap_mcbsp_platform_data omap2430_mcbsp_pdata[] = { | |||
| 219 | .rx_irq = INT_24XX_MCBSP5_IRQ_RX, | 126 | .rx_irq = INT_24XX_MCBSP5_IRQ_RX, |
| 220 | .tx_irq = INT_24XX_MCBSP5_IRQ_TX, | 127 | .tx_irq = INT_24XX_MCBSP5_IRQ_TX, |
| 221 | .ops = &omap2_mcbsp_ops, | 128 | .ops = &omap2_mcbsp_ops, |
| 222 | .clk_name = "mcbsp_clk", | 129 | .clk_names = clk_names, |
| 130 | .num_clks = 2, | ||
| 223 | }, | 131 | }, |
| 224 | }; | 132 | }; |
| 225 | #define OMAP2430_MCBSP_PDATA_SZ ARRAY_SIZE(omap2430_mcbsp_pdata) | 133 | #define OMAP2430_MCBSP_PDATA_SZ ARRAY_SIZE(omap2430_mcbsp_pdata) |
| @@ -237,7 +145,8 @@ static struct omap_mcbsp_platform_data omap34xx_mcbsp_pdata[] = { | |||
| 237 | .rx_irq = INT_24XX_MCBSP1_IRQ_RX, | 145 | .rx_irq = INT_24XX_MCBSP1_IRQ_RX, |
| 238 | .tx_irq = INT_24XX_MCBSP1_IRQ_TX, | 146 | .tx_irq = INT_24XX_MCBSP1_IRQ_TX, |
| 239 | .ops = &omap2_mcbsp_ops, | 147 | .ops = &omap2_mcbsp_ops, |
| 240 | .clk_name = "mcbsp_clk", | 148 | .clk_names = clk_names, |
| 149 | .num_clks = 2, | ||
| 241 | }, | 150 | }, |
| 242 | { | 151 | { |
| 243 | .phys_base = OMAP34XX_MCBSP2_BASE, | 152 | .phys_base = OMAP34XX_MCBSP2_BASE, |
| @@ -246,7 +155,8 @@ static struct omap_mcbsp_platform_data omap34xx_mcbsp_pdata[] = { | |||
| 246 | .rx_irq = INT_24XX_MCBSP2_IRQ_RX, | 155 | .rx_irq = INT_24XX_MCBSP2_IRQ_RX, |
| 247 | .tx_irq = INT_24XX_MCBSP2_IRQ_TX, | 156 | .tx_irq = INT_24XX_MCBSP2_IRQ_TX, |
| 248 | .ops = &omap2_mcbsp_ops, | 157 | .ops = &omap2_mcbsp_ops, |
| 249 | .clk_name = "mcbsp_clk", | 158 | .clk_names = clk_names, |
| 159 | .num_clks = 2, | ||
| 250 | }, | 160 | }, |
| 251 | { | 161 | { |
| 252 | .phys_base = OMAP34XX_MCBSP3_BASE, | 162 | .phys_base = OMAP34XX_MCBSP3_BASE, |
| @@ -255,7 +165,8 @@ static struct omap_mcbsp_platform_data omap34xx_mcbsp_pdata[] = { | |||
| 255 | .rx_irq = INT_24XX_MCBSP3_IRQ_RX, | 165 | .rx_irq = INT_24XX_MCBSP3_IRQ_RX, |
| 256 | .tx_irq = INT_24XX_MCBSP3_IRQ_TX, | 166 | .tx_irq = INT_24XX_MCBSP3_IRQ_TX, |
| 257 | .ops = &omap2_mcbsp_ops, | 167 | .ops = &omap2_mcbsp_ops, |
| 258 | .clk_name = "mcbsp_clk", | 168 | .clk_names = clk_names, |
| 169 | .num_clks = 2, | ||
| 259 | }, | 170 | }, |
| 260 | { | 171 | { |
| 261 | .phys_base = OMAP34XX_MCBSP4_BASE, | 172 | .phys_base = OMAP34XX_MCBSP4_BASE, |
| @@ -264,7 +175,8 @@ static struct omap_mcbsp_platform_data omap34xx_mcbsp_pdata[] = { | |||
| 264 | .rx_irq = INT_24XX_MCBSP4_IRQ_RX, | 175 | .rx_irq = INT_24XX_MCBSP4_IRQ_RX, |
| 265 | .tx_irq = INT_24XX_MCBSP4_IRQ_TX, | 176 | .tx_irq = INT_24XX_MCBSP4_IRQ_TX, |
| 266 | .ops = &omap2_mcbsp_ops, | 177 | .ops = &omap2_mcbsp_ops, |
| 267 | .clk_name = "mcbsp_clk", | 178 | .clk_names = clk_names, |
| 179 | .num_clks = 2, | ||
| 268 | }, | 180 | }, |
| 269 | { | 181 | { |
| 270 | .phys_base = OMAP34XX_MCBSP5_BASE, | 182 | .phys_base = OMAP34XX_MCBSP5_BASE, |
| @@ -273,7 +185,8 @@ static struct omap_mcbsp_platform_data omap34xx_mcbsp_pdata[] = { | |||
| 273 | .rx_irq = INT_24XX_MCBSP5_IRQ_RX, | 185 | .rx_irq = INT_24XX_MCBSP5_IRQ_RX, |
| 274 | .tx_irq = INT_24XX_MCBSP5_IRQ_TX, | 186 | .tx_irq = INT_24XX_MCBSP5_IRQ_TX, |
| 275 | .ops = &omap2_mcbsp_ops, | 187 | .ops = &omap2_mcbsp_ops, |
| 276 | .clk_name = "mcbsp_clk", | 188 | .clk_names = clk_names, |
| 189 | .num_clks = 2, | ||
| 277 | }, | 190 | }, |
| 278 | }; | 191 | }; |
| 279 | #define OMAP34XX_MCBSP_PDATA_SZ ARRAY_SIZE(omap34xx_mcbsp_pdata) | 192 | #define OMAP34XX_MCBSP_PDATA_SZ ARRAY_SIZE(omap34xx_mcbsp_pdata) |
| @@ -284,14 +197,6 @@ static struct omap_mcbsp_platform_data omap34xx_mcbsp_pdata[] = { | |||
| 284 | 197 | ||
| 285 | static int __init omap2_mcbsp_init(void) | 198 | static int __init omap2_mcbsp_init(void) |
| 286 | { | 199 | { |
| 287 | int i; | ||
| 288 | |||
| 289 | for (i = 0; i < omap_mcbsp_clks_size; i++) { | ||
| 290 | /* Once we call clk_get inside init, we do not register it */ | ||
| 291 | omap_mcbsp_clk_init(&omap_mcbsp_clks[i]); | ||
| 292 | clk_register(&omap_mcbsp_clks[i].clk); | ||
| 293 | } | ||
| 294 | |||
| 295 | if (cpu_is_omap2420()) | 200 | if (cpu_is_omap2420()) |
| 296 | omap_mcbsp_count = OMAP2420_MCBSP_PDATA_SZ; | 201 | omap_mcbsp_count = OMAP2420_MCBSP_PDATA_SZ; |
| 297 | if (cpu_is_omap2430()) | 202 | if (cpu_is_omap2430()) |
diff --git a/arch/arm/mach-omap2/sleep24xx.S b/arch/arm/mach-omap2/sleep24xx.S index 43336b93b21c..bf9e96105e11 100644 --- a/arch/arm/mach-omap2/sleep24xx.S +++ b/arch/arm/mach-omap2/sleep24xx.S | |||
| @@ -93,9 +93,8 @@ ENTRY(omap24xx_cpu_suspend) | |||
| 93 | orr r4, r4, #0x40 @ enable self refresh on idle req | 93 | orr r4, r4, #0x40 @ enable self refresh on idle req |
| 94 | mov r5, #0x2000 @ set delay (DPLL relock + DLL relock) | 94 | mov r5, #0x2000 @ set delay (DPLL relock + DLL relock) |
| 95 | str r4, [r2] @ make it so | 95 | str r4, [r2] @ make it so |
| 96 | mov r2, #0 | ||
| 97 | nop | 96 | nop |
| 98 | mcr p15, 0, r2, c7, c0, 4 @ wait for interrupt | 97 | mcr p15, 0, r3, c7, c0, 4 @ wait for interrupt |
| 99 | nop | 98 | nop |
| 100 | loop: | 99 | loop: |
| 101 | subs r5, r5, #0x1 @ awake, wait just a bit | 100 | subs r5, r5, #0x1 @ awake, wait just a bit |
diff --git a/arch/arm/mach-omap2/timer-gp.c b/arch/arm/mach-omap2/timer-gp.c index ae6036300f60..9fc13a2cc3f4 100644 --- a/arch/arm/mach-omap2/timer-gp.c +++ b/arch/arm/mach-omap2/timer-gp.c | |||
| @@ -118,7 +118,8 @@ static void __init omap2_gp_clockevent_init(void) | |||
| 118 | clockevent_gpt.max_delta_ns = | 118 | clockevent_gpt.max_delta_ns = |
| 119 | clockevent_delta2ns(0xffffffff, &clockevent_gpt); | 119 | clockevent_delta2ns(0xffffffff, &clockevent_gpt); |
| 120 | clockevent_gpt.min_delta_ns = | 120 | clockevent_gpt.min_delta_ns = |
| 121 | clockevent_delta2ns(1, &clockevent_gpt); | 121 | clockevent_delta2ns(3, &clockevent_gpt); |
| 122 | /* Timer internal resynch latency. */ | ||
| 122 | 123 | ||
| 123 | clockevent_gpt.cpumask = cpumask_of(0); | 124 | clockevent_gpt.cpumask = cpumask_of(0); |
| 124 | clockevents_register_device(&clockevent_gpt); | 125 | clockevents_register_device(&clockevent_gpt); |
diff --git a/arch/arm/mach-pxa/dma.c b/arch/arm/mach-pxa/dma.c index b1514fb20d3a..7de17fc5d54b 100644 --- a/arch/arm/mach-pxa/dma.c +++ b/arch/arm/mach-pxa/dma.c | |||
| @@ -121,20 +121,22 @@ int __init pxa_init_dma(int num_ch) | |||
| 121 | if (dma_channels == NULL) | 121 | if (dma_channels == NULL) |
| 122 | return -ENOMEM; | 122 | return -ENOMEM; |
| 123 | 123 | ||
| 124 | ret = request_irq(IRQ_DMA, dma_irq_handler, IRQF_DISABLED, "DMA", NULL); | ||
| 125 | if (ret) { | ||
| 126 | printk (KERN_CRIT "Wow! Can't register IRQ for DMA\n"); | ||
| 127 | kfree(dma_channels); | ||
| 128 | return ret; | ||
| 129 | } | ||
| 130 | |||
| 131 | /* dma channel priorities on pxa2xx processors: | 124 | /* dma channel priorities on pxa2xx processors: |
| 132 | * ch 0 - 3, 16 - 19 <--> (0) DMA_PRIO_HIGH | 125 | * ch 0 - 3, 16 - 19 <--> (0) DMA_PRIO_HIGH |
| 133 | * ch 4 - 7, 20 - 23 <--> (1) DMA_PRIO_MEDIUM | 126 | * ch 4 - 7, 20 - 23 <--> (1) DMA_PRIO_MEDIUM |
| 134 | * ch 8 - 15, 24 - 31 <--> (2) DMA_PRIO_LOW | 127 | * ch 8 - 15, 24 - 31 <--> (2) DMA_PRIO_LOW |
| 135 | */ | 128 | */ |
| 136 | for (i = 0; i < num_ch; i++) | 129 | for (i = 0; i < num_ch; i++) { |
| 130 | DCSR(i) = 0; | ||
| 137 | dma_channels[i].prio = min((i & 0xf) >> 2, DMA_PRIO_LOW); | 131 | dma_channels[i].prio = min((i & 0xf) >> 2, DMA_PRIO_LOW); |
| 132 | } | ||
| 133 | |||
| 134 | ret = request_irq(IRQ_DMA, dma_irq_handler, IRQF_DISABLED, "DMA", NULL); | ||
| 135 | if (ret) { | ||
| 136 | printk (KERN_CRIT "Wow! Can't register IRQ for DMA\n"); | ||
| 137 | kfree(dma_channels); | ||
| 138 | return ret; | ||
| 139 | } | ||
| 138 | 140 | ||
| 139 | num_dma_channels = num_ch; | 141 | num_dma_channels = num_ch; |
| 140 | return 0; | 142 | return 0; |
diff --git a/arch/arm/mach-pxa/include/mach/regs-ac97.h b/arch/arm/mach-pxa/include/mach/regs-ac97.h index e41b9d202b8c..b8d14bd9ae59 100644 --- a/arch/arm/mach-pxa/include/mach/regs-ac97.h +++ b/arch/arm/mach-pxa/include/mach/regs-ac97.h | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | #ifndef __ASM_ARCH_REGS_AC97_H | 1 | #ifndef __ASM_ARCH_REGS_AC97_H |
| 2 | #define __ASM_ARCH_REGS_AC97_H | 2 | #define __ASM_ARCH_REGS_AC97_H |
| 3 | 3 | ||
| 4 | #include <mach/hardware.h> | ||
| 5 | |||
| 4 | /* | 6 | /* |
| 5 | * AC97 Controller registers | 7 | * AC97 Controller registers |
| 6 | */ | 8 | */ |
diff --git a/arch/arm/mach-pxa/include/mach/regs-ssp.h b/arch/arm/mach-pxa/include/mach/regs-ssp.h index 3c04cde2cf1f..cf31986f6f05 100644 --- a/arch/arm/mach-pxa/include/mach/regs-ssp.h +++ b/arch/arm/mach-pxa/include/mach/regs-ssp.h | |||
| @@ -41,6 +41,9 @@ | |||
| 41 | #elif defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx) | 41 | #elif defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx) |
| 42 | #define SSCR0_SCR (0x000fff00) /* Serial Clock Rate (mask) */ | 42 | #define SSCR0_SCR (0x000fff00) /* Serial Clock Rate (mask) */ |
| 43 | #define SSCR0_SerClkDiv(x) (((x) - 1) << 8) /* Divisor [1..4096] */ | 43 | #define SSCR0_SerClkDiv(x) (((x) - 1) << 8) /* Divisor [1..4096] */ |
| 44 | #endif | ||
| 45 | |||
| 46 | #if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx) | ||
| 44 | #define SSCR0_EDSS (1 << 20) /* Extended data size select */ | 47 | #define SSCR0_EDSS (1 << 20) /* Extended data size select */ |
| 45 | #define SSCR0_NCS (1 << 21) /* Network clock select */ | 48 | #define SSCR0_NCS (1 << 21) /* Network clock select */ |
| 46 | #define SSCR0_RIM (1 << 22) /* Receive FIFO overrrun interrupt mask */ | 49 | #define SSCR0_RIM (1 << 22) /* Receive FIFO overrrun interrupt mask */ |
diff --git a/arch/arm/mach-pxa/pxa300.c b/arch/arm/mach-pxa/pxa300.c index f735e58e6669..83fb609b6eb7 100644 --- a/arch/arm/mach-pxa/pxa300.c +++ b/arch/arm/mach-pxa/pxa300.c | |||
| @@ -88,13 +88,13 @@ static struct pxa3xx_mfp_addr_map pxa310_mfp_addr_map[] __initdata = { | |||
| 88 | static DEFINE_PXA3_CKEN(common_nand, NAND, 156000000, 0); | 88 | static DEFINE_PXA3_CKEN(common_nand, NAND, 156000000, 0); |
| 89 | 89 | ||
| 90 | static struct clk_lookup common_clkregs[] = { | 90 | static struct clk_lookup common_clkregs[] = { |
| 91 | INIT_CLKREG(&clk_common_nand, "pxa3xx-nand", "NANDCLK"), | 91 | INIT_CLKREG(&clk_common_nand, "pxa3xx-nand", NULL), |
| 92 | }; | 92 | }; |
| 93 | 93 | ||
| 94 | static DEFINE_PXA3_CKEN(pxa310_mmc3, MMC3, 19500000, 0); | 94 | static DEFINE_PXA3_CKEN(pxa310_mmc3, MMC3, 19500000, 0); |
| 95 | 95 | ||
| 96 | static struct clk_lookup pxa310_clkregs[] = { | 96 | static struct clk_lookup pxa310_clkregs[] = { |
| 97 | INIT_CLKREG(&clk_pxa310_mmc3, "pxa2xx-mci.2", "MMCCLK"), | 97 | INIT_CLKREG(&clk_pxa310_mmc3, "pxa2xx-mci.2", NULL), |
| 98 | }; | 98 | }; |
| 99 | 99 | ||
| 100 | static int __init pxa300_init(void) | 100 | static int __init pxa300_init(void) |
diff --git a/arch/arm/mach-pxa/pxa320.c b/arch/arm/mach-pxa/pxa320.c index effe408c186f..36f066196fa2 100644 --- a/arch/arm/mach-pxa/pxa320.c +++ b/arch/arm/mach-pxa/pxa320.c | |||
| @@ -83,7 +83,7 @@ static struct pxa3xx_mfp_addr_map pxa320_mfp_addr_map[] __initdata = { | |||
| 83 | static DEFINE_PXA3_CKEN(pxa320_nand, NAND, 104000000, 0); | 83 | static DEFINE_PXA3_CKEN(pxa320_nand, NAND, 104000000, 0); |
| 84 | 84 | ||
| 85 | static struct clk_lookup pxa320_clkregs[] = { | 85 | static struct clk_lookup pxa320_clkregs[] = { |
| 86 | INIT_CLKREG(&clk_pxa320_nand, "pxa3xx-nand", "NANDCLK"), | 86 | INIT_CLKREG(&clk_pxa320_nand, "pxa3xx-nand", NULL), |
| 87 | }; | 87 | }; |
| 88 | 88 | ||
| 89 | static int __init pxa320_init(void) | 89 | static int __init pxa320_init(void) |
diff --git a/arch/arm/mach-sa1100/generic.c b/arch/arm/mach-sa1100/generic.c index c1fbd5b5f9c4..23cfdd593954 100644 --- a/arch/arm/mach-sa1100/generic.c +++ b/arch/arm/mach-sa1100/generic.c | |||
| @@ -289,7 +289,7 @@ static struct platform_device sa11x0pcmcia_device = { | |||
| 289 | }; | 289 | }; |
| 290 | 290 | ||
| 291 | static struct platform_device sa11x0mtd_device = { | 291 | static struct platform_device sa11x0mtd_device = { |
| 292 | .name = "flash", | 292 | .name = "sa1100-mtd", |
| 293 | .id = -1, | 293 | .id = -1, |
| 294 | }; | 294 | }; |
| 295 | 295 | ||
diff --git a/arch/arm/mm/fault-armv.c b/arch/arm/mm/fault-armv.c index 81d0b8772de3..bc0099d5ae85 100644 --- a/arch/arm/mm/fault-armv.c +++ b/arch/arm/mm/fault-armv.c | |||
| @@ -66,7 +66,10 @@ static int adjust_pte(struct vm_area_struct *vma, unsigned long address) | |||
| 66 | * fault (ie, is old), we can safely ignore any issues. | 66 | * fault (ie, is old), we can safely ignore any issues. |
| 67 | */ | 67 | */ |
| 68 | if (ret && (pte_val(entry) & L_PTE_MT_MASK) != shared_pte_mask) { | 68 | if (ret && (pte_val(entry) & L_PTE_MT_MASK) != shared_pte_mask) { |
| 69 | flush_cache_page(vma, address, pte_pfn(entry)); | 69 | unsigned long pfn = pte_pfn(entry); |
| 70 | flush_cache_page(vma, address, pfn); | ||
| 71 | outer_flush_range((pfn << PAGE_SHIFT), | ||
| 72 | (pfn << PAGE_SHIFT) + PAGE_SIZE); | ||
| 70 | pte_val(entry) &= ~L_PTE_MT_MASK; | 73 | pte_val(entry) &= ~L_PTE_MT_MASK; |
| 71 | pte_val(entry) |= shared_pte_mask; | 74 | pte_val(entry) |= shared_pte_mask; |
| 72 | set_pte_at(vma->vm_mm, address, pte, entry); | 75 | set_pte_at(vma->vm_mm, address, pte, entry); |
diff --git a/arch/arm/plat-omap/devices.c b/arch/arm/plat-omap/devices.c index ac15c23fd5da..208dbb121f47 100644 --- a/arch/arm/plat-omap/devices.c +++ b/arch/arm/plat-omap/devices.c | |||
| @@ -200,14 +200,15 @@ void omap_mcbsp_register_board_cfg(struct omap_mcbsp_platform_data *config, | |||
| 200 | /* | 200 | /* |
| 201 | * Register MMC devices. Called from mach-omap1 and mach-omap2 device init. | 201 | * Register MMC devices. Called from mach-omap1 and mach-omap2 device init. |
| 202 | */ | 202 | */ |
| 203 | int __init omap_mmc_add(int id, unsigned long base, unsigned long size, | 203 | int __init omap_mmc_add(const char *name, int id, unsigned long base, |
| 204 | unsigned int irq, struct omap_mmc_platform_data *data) | 204 | unsigned long size, unsigned int irq, |
| 205 | struct omap_mmc_platform_data *data) | ||
| 205 | { | 206 | { |
| 206 | struct platform_device *pdev; | 207 | struct platform_device *pdev; |
| 207 | struct resource res[OMAP_MMC_NR_RES]; | 208 | struct resource res[OMAP_MMC_NR_RES]; |
| 208 | int ret; | 209 | int ret; |
| 209 | 210 | ||
| 210 | pdev = platform_device_alloc("mmci-omap", id); | 211 | pdev = platform_device_alloc(name, id); |
| 211 | if (!pdev) | 212 | if (!pdev) |
| 212 | return -ENOMEM; | 213 | return -ENOMEM; |
| 213 | 214 | ||
diff --git a/arch/arm/plat-omap/dma.c b/arch/arm/plat-omap/dma.c index e77373c39f8c..47ec77af4ccb 100644 --- a/arch/arm/plat-omap/dma.c +++ b/arch/arm/plat-omap/dma.c | |||
| @@ -709,6 +709,7 @@ int omap_request_dma(int dev_id, const char *dev_name, | |||
| 709 | chan->dev_name = dev_name; | 709 | chan->dev_name = dev_name; |
| 710 | chan->callback = callback; | 710 | chan->callback = callback; |
| 711 | chan->data = data; | 711 | chan->data = data; |
| 712 | chan->flags = 0; | ||
| 712 | 713 | ||
| 713 | #ifndef CONFIG_ARCH_OMAP1 | 714 | #ifndef CONFIG_ARCH_OMAP1 |
| 714 | if (cpu_class_is_omap2()) { | 715 | if (cpu_class_is_omap2()) { |
| @@ -1888,11 +1889,11 @@ static int omap2_dma_handle_ch(int ch) | |||
| 1888 | status = dma_read(CSR(ch)); | 1889 | status = dma_read(CSR(ch)); |
| 1889 | } | 1890 | } |
| 1890 | 1891 | ||
| 1892 | dma_write(status, CSR(ch)); | ||
| 1893 | |||
| 1891 | if (likely(dma_chan[ch].callback != NULL)) | 1894 | if (likely(dma_chan[ch].callback != NULL)) |
| 1892 | dma_chan[ch].callback(ch, status, dma_chan[ch].data); | 1895 | dma_chan[ch].callback(ch, status, dma_chan[ch].data); |
| 1893 | 1896 | ||
| 1894 | dma_write(status, CSR(ch)); | ||
| 1895 | |||
| 1896 | return 0; | 1897 | return 0; |
| 1897 | } | 1898 | } |
| 1898 | 1899 | ||
diff --git a/arch/arm/plat-omap/include/mach/cpu.h b/arch/arm/plat-omap/include/mach/cpu.h index b2062f1175de..a8e1178a9468 100644 --- a/arch/arm/plat-omap/include/mach/cpu.h +++ b/arch/arm/plat-omap/include/mach/cpu.h | |||
| @@ -339,6 +339,7 @@ IS_OMAP_TYPE(3430, 0x3430) | |||
| 339 | #define OMAP3430_REV_ES2_0 0x34301034 | 339 | #define OMAP3430_REV_ES2_0 0x34301034 |
| 340 | #define OMAP3430_REV_ES2_1 0x34302034 | 340 | #define OMAP3430_REV_ES2_1 0x34302034 |
| 341 | #define OMAP3430_REV_ES3_0 0x34303034 | 341 | #define OMAP3430_REV_ES3_0 0x34303034 |
| 342 | #define OMAP3430_REV_ES3_1 0x34304034 | ||
| 342 | 343 | ||
| 343 | /* | 344 | /* |
| 344 | * omap_chip bits | 345 | * omap_chip bits |
diff --git a/arch/arm/plat-omap/include/mach/mcbsp.h b/arch/arm/plat-omap/include/mach/mcbsp.h index eef873db3d48..113c2466c86a 100644 --- a/arch/arm/plat-omap/include/mach/mcbsp.h +++ b/arch/arm/plat-omap/include/mach/mcbsp.h | |||
| @@ -344,7 +344,8 @@ struct omap_mcbsp_platform_data { | |||
| 344 | u8 dma_rx_sync, dma_tx_sync; | 344 | u8 dma_rx_sync, dma_tx_sync; |
| 345 | u16 rx_irq, tx_irq; | 345 | u16 rx_irq, tx_irq; |
| 346 | struct omap_mcbsp_ops *ops; | 346 | struct omap_mcbsp_ops *ops; |
| 347 | char const *clk_name; | 347 | char const **clk_names; |
| 348 | int num_clks; | ||
| 348 | }; | 349 | }; |
| 349 | 350 | ||
| 350 | struct omap_mcbsp { | 351 | struct omap_mcbsp { |
| @@ -376,7 +377,8 @@ struct omap_mcbsp { | |||
| 376 | /* Protect the field .free, while checking if the mcbsp is in use */ | 377 | /* Protect the field .free, while checking if the mcbsp is in use */ |
| 377 | spinlock_t lock; | 378 | spinlock_t lock; |
| 378 | struct omap_mcbsp_platform_data *pdata; | 379 | struct omap_mcbsp_platform_data *pdata; |
| 379 | struct clk *clk; | 380 | struct clk **clks; |
| 381 | int num_clks; | ||
| 380 | }; | 382 | }; |
| 381 | extern struct omap_mcbsp **mcbsp_ptr; | 383 | extern struct omap_mcbsp **mcbsp_ptr; |
| 382 | extern int omap_mcbsp_count; | 384 | extern int omap_mcbsp_count; |
diff --git a/arch/arm/plat-omap/include/mach/mmc.h b/arch/arm/plat-omap/include/mach/mmc.h index 031250f02805..73a9e15031b1 100644 --- a/arch/arm/plat-omap/include/mach/mmc.h +++ b/arch/arm/plat-omap/include/mach/mmc.h | |||
| @@ -115,8 +115,9 @@ void omap1_init_mmc(struct omap_mmc_platform_data **mmc_data, | |||
| 115 | int nr_controllers); | 115 | int nr_controllers); |
| 116 | void omap2_init_mmc(struct omap_mmc_platform_data **mmc_data, | 116 | void omap2_init_mmc(struct omap_mmc_platform_data **mmc_data, |
| 117 | int nr_controllers); | 117 | int nr_controllers); |
| 118 | int omap_mmc_add(int id, unsigned long base, unsigned long size, | 118 | int omap_mmc_add(const char *name, int id, unsigned long base, |
| 119 | unsigned int irq, struct omap_mmc_platform_data *data); | 119 | unsigned long size, unsigned int irq, |
| 120 | struct omap_mmc_platform_data *data); | ||
| 120 | #else | 121 | #else |
| 121 | static inline void omap1_init_mmc(struct omap_mmc_platform_data **mmc_data, | 122 | static inline void omap1_init_mmc(struct omap_mmc_platform_data **mmc_data, |
| 122 | int nr_controllers) | 123 | int nr_controllers) |
| @@ -126,8 +127,9 @@ static inline void omap2_init_mmc(struct omap_mmc_platform_data **mmc_data, | |||
| 126 | int nr_controllers) | 127 | int nr_controllers) |
| 127 | { | 128 | { |
| 128 | } | 129 | } |
| 129 | static inline int omap_mmc_add(int id, unsigned long base, unsigned long size, | 130 | static inline int omap_mmc_add(const char *name, int id, unsigned long base, |
| 130 | unsigned int irq, struct omap_mmc_platform_data *data) | 131 | unsigned long size, unsigned int irq, |
| 132 | struct omap_mmc_platform_data *data) | ||
| 131 | { | 133 | { |
| 132 | return 0; | 134 | return 0; |
| 133 | } | 135 | } |
diff --git a/arch/arm/plat-omap/mcbsp.c b/arch/arm/plat-omap/mcbsp.c index f2401a831f99..e5842e30e534 100644 --- a/arch/arm/plat-omap/mcbsp.c +++ b/arch/arm/plat-omap/mcbsp.c | |||
| @@ -214,6 +214,7 @@ EXPORT_SYMBOL(omap_mcbsp_set_io_type); | |||
| 214 | int omap_mcbsp_request(unsigned int id) | 214 | int omap_mcbsp_request(unsigned int id) |
| 215 | { | 215 | { |
| 216 | struct omap_mcbsp *mcbsp; | 216 | struct omap_mcbsp *mcbsp; |
| 217 | int i; | ||
| 217 | int err; | 218 | int err; |
| 218 | 219 | ||
| 219 | if (!omap_mcbsp_check_valid_id(id)) { | 220 | if (!omap_mcbsp_check_valid_id(id)) { |
| @@ -225,7 +226,8 @@ int omap_mcbsp_request(unsigned int id) | |||
| 225 | if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->request) | 226 | if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->request) |
| 226 | mcbsp->pdata->ops->request(id); | 227 | mcbsp->pdata->ops->request(id); |
| 227 | 228 | ||
| 228 | clk_enable(mcbsp->clk); | 229 | for (i = 0; i < mcbsp->num_clks; i++) |
| 230 | clk_enable(mcbsp->clks[i]); | ||
| 229 | 231 | ||
| 230 | spin_lock(&mcbsp->lock); | 232 | spin_lock(&mcbsp->lock); |
| 231 | if (!mcbsp->free) { | 233 | if (!mcbsp->free) { |
| @@ -276,6 +278,7 @@ EXPORT_SYMBOL(omap_mcbsp_request); | |||
| 276 | void omap_mcbsp_free(unsigned int id) | 278 | void omap_mcbsp_free(unsigned int id) |
| 277 | { | 279 | { |
| 278 | struct omap_mcbsp *mcbsp; | 280 | struct omap_mcbsp *mcbsp; |
| 281 | int i; | ||
| 279 | 282 | ||
| 280 | if (!omap_mcbsp_check_valid_id(id)) { | 283 | if (!omap_mcbsp_check_valid_id(id)) { |
| 281 | printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1); | 284 | printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1); |
| @@ -286,7 +289,8 @@ void omap_mcbsp_free(unsigned int id) | |||
| 286 | if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free) | 289 | if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free) |
| 287 | mcbsp->pdata->ops->free(id); | 290 | mcbsp->pdata->ops->free(id); |
| 288 | 291 | ||
| 289 | clk_disable(mcbsp->clk); | 292 | for (i = mcbsp->num_clks - 1; i >= 0; i--) |
| 293 | clk_disable(mcbsp->clks[i]); | ||
| 290 | 294 | ||
| 291 | spin_lock(&mcbsp->lock); | 295 | spin_lock(&mcbsp->lock); |
| 292 | if (mcbsp->free) { | 296 | if (mcbsp->free) { |
| @@ -872,6 +876,7 @@ static int __devinit omap_mcbsp_probe(struct platform_device *pdev) | |||
| 872 | struct omap_mcbsp_platform_data *pdata = pdev->dev.platform_data; | 876 | struct omap_mcbsp_platform_data *pdata = pdev->dev.platform_data; |
| 873 | struct omap_mcbsp *mcbsp; | 877 | struct omap_mcbsp *mcbsp; |
| 874 | int id = pdev->id - 1; | 878 | int id = pdev->id - 1; |
| 879 | int i; | ||
| 875 | int ret = 0; | 880 | int ret = 0; |
| 876 | 881 | ||
| 877 | if (!pdata) { | 882 | if (!pdata) { |
| @@ -916,14 +921,25 @@ static int __devinit omap_mcbsp_probe(struct platform_device *pdev) | |||
| 916 | mcbsp->dma_rx_sync = pdata->dma_rx_sync; | 921 | mcbsp->dma_rx_sync = pdata->dma_rx_sync; |
| 917 | mcbsp->dma_tx_sync = pdata->dma_tx_sync; | 922 | mcbsp->dma_tx_sync = pdata->dma_tx_sync; |
| 918 | 923 | ||
| 919 | if (pdata->clk_name) | 924 | if (pdata->num_clks) { |
| 920 | mcbsp->clk = clk_get(&pdev->dev, pdata->clk_name); | 925 | mcbsp->num_clks = pdata->num_clks; |
| 921 | if (IS_ERR(mcbsp->clk)) { | 926 | mcbsp->clks = kzalloc(mcbsp->num_clks * sizeof(struct clk *), |
| 922 | dev_err(&pdev->dev, | 927 | GFP_KERNEL); |
| 923 | "Invalid clock configuration for McBSP%d.\n", | 928 | if (!mcbsp->clks) { |
| 924 | mcbsp->id); | 929 | ret = -ENOMEM; |
| 925 | ret = PTR_ERR(mcbsp->clk); | 930 | goto exit; |
| 926 | goto err_clk; | 931 | } |
| 932 | for (i = 0; i < mcbsp->num_clks; i++) { | ||
| 933 | mcbsp->clks[i] = clk_get(&pdev->dev, pdata->clk_names[i]); | ||
| 934 | if (IS_ERR(mcbsp->clks[i])) { | ||
| 935 | dev_err(&pdev->dev, | ||
| 936 | "Invalid %s configuration for McBSP%d.\n", | ||
| 937 | pdata->clk_names[i], mcbsp->id); | ||
| 938 | ret = PTR_ERR(mcbsp->clks[i]); | ||
| 939 | goto err_clk; | ||
| 940 | } | ||
| 941 | } | ||
| 942 | |||
| 927 | } | 943 | } |
| 928 | 944 | ||
| 929 | mcbsp->pdata = pdata; | 945 | mcbsp->pdata = pdata; |
| @@ -932,6 +948,9 @@ static int __devinit omap_mcbsp_probe(struct platform_device *pdev) | |||
| 932 | return 0; | 948 | return 0; |
| 933 | 949 | ||
| 934 | err_clk: | 950 | err_clk: |
| 951 | while (i--) | ||
| 952 | clk_put(mcbsp->clks[i]); | ||
| 953 | kfree(mcbsp->clks); | ||
| 935 | iounmap(mcbsp->io_base); | 954 | iounmap(mcbsp->io_base); |
| 936 | err_ioremap: | 955 | err_ioremap: |
| 937 | mcbsp->free = 0; | 956 | mcbsp->free = 0; |
| @@ -942,6 +961,7 @@ exit: | |||
| 942 | static int __devexit omap_mcbsp_remove(struct platform_device *pdev) | 961 | static int __devexit omap_mcbsp_remove(struct platform_device *pdev) |
| 943 | { | 962 | { |
| 944 | struct omap_mcbsp *mcbsp = platform_get_drvdata(pdev); | 963 | struct omap_mcbsp *mcbsp = platform_get_drvdata(pdev); |
| 964 | int i; | ||
| 945 | 965 | ||
| 946 | platform_set_drvdata(pdev, NULL); | 966 | platform_set_drvdata(pdev, NULL); |
| 947 | if (mcbsp) { | 967 | if (mcbsp) { |
| @@ -950,12 +970,18 @@ static int __devexit omap_mcbsp_remove(struct platform_device *pdev) | |||
| 950 | mcbsp->pdata->ops->free) | 970 | mcbsp->pdata->ops->free) |
| 951 | mcbsp->pdata->ops->free(mcbsp->id); | 971 | mcbsp->pdata->ops->free(mcbsp->id); |
| 952 | 972 | ||
| 953 | clk_disable(mcbsp->clk); | 973 | for (i = mcbsp->num_clks - 1; i >= 0; i--) { |
| 954 | clk_put(mcbsp->clk); | 974 | clk_disable(mcbsp->clks[i]); |
| 975 | clk_put(mcbsp->clks[i]); | ||
| 976 | } | ||
| 955 | 977 | ||
| 956 | iounmap(mcbsp->io_base); | 978 | iounmap(mcbsp->io_base); |
| 957 | 979 | ||
| 958 | mcbsp->clk = NULL; | 980 | if (mcbsp->num_clks) { |
| 981 | kfree(mcbsp->clks); | ||
| 982 | mcbsp->clks = NULL; | ||
| 983 | mcbsp->num_clks = 0; | ||
| 984 | } | ||
| 959 | mcbsp->free = 0; | 985 | mcbsp->free = 0; |
| 960 | mcbsp->dev = NULL; | 986 | mcbsp->dev = NULL; |
| 961 | } | 987 | } |
diff --git a/arch/blackfin/Kconfig b/arch/blackfin/Kconfig index a949c4fbbddd..8f1f97d56e1e 100644 --- a/arch/blackfin/Kconfig +++ b/arch/blackfin/Kconfig | |||
| @@ -169,26 +169,51 @@ config BF542 | |||
| 169 | help | 169 | help |
| 170 | BF542 Processor Support. | 170 | BF542 Processor Support. |
| 171 | 171 | ||
| 172 | config BF542M | ||
| 173 | bool "BF542m" | ||
| 174 | help | ||
| 175 | BF542 Processor Support. | ||
| 176 | |||
| 172 | config BF544 | 177 | config BF544 |
| 173 | bool "BF544" | 178 | bool "BF544" |
| 174 | help | 179 | help |
| 175 | BF544 Processor Support. | 180 | BF544 Processor Support. |
| 176 | 181 | ||
| 182 | config BF544M | ||
| 183 | bool "BF544m" | ||
| 184 | help | ||
| 185 | BF544 Processor Support. | ||
| 186 | |||
| 177 | config BF547 | 187 | config BF547 |
| 178 | bool "BF547" | 188 | bool "BF547" |
| 179 | help | 189 | help |
| 180 | BF547 Processor Support. | 190 | BF547 Processor Support. |
| 181 | 191 | ||
| 192 | config BF547M | ||
| 193 | bool "BF547m" | ||
| 194 | help | ||
| 195 | BF547 Processor Support. | ||
| 196 | |||
| 182 | config BF548 | 197 | config BF548 |
| 183 | bool "BF548" | 198 | bool "BF548" |
| 184 | help | 199 | help |
| 185 | BF548 Processor Support. | 200 | BF548 Processor Support. |
| 186 | 201 | ||
| 202 | config BF548M | ||
| 203 | bool "BF548m" | ||
| 204 | help | ||
| 205 | BF548 Processor Support. | ||
| 206 | |||
| 187 | config BF549 | 207 | config BF549 |
| 188 | bool "BF549" | 208 | bool "BF549" |
| 189 | help | 209 | help |
| 190 | BF549 Processor Support. | 210 | BF549 Processor Support. |
| 191 | 211 | ||
| 212 | config BF549M | ||
| 213 | bool "BF549m" | ||
| 214 | help | ||
| 215 | BF549 Processor Support. | ||
| 216 | |||
| 192 | config BF561 | 217 | config BF561 |
| 193 | bool "BF561" | 218 | bool "BF561" |
| 194 | help | 219 | help |
| @@ -224,39 +249,39 @@ config TICK_SOURCE_SYSTMR0 | |||
| 224 | 249 | ||
| 225 | config BF_REV_MIN | 250 | config BF_REV_MIN |
| 226 | int | 251 | int |
| 227 | default 0 if (BF51x || BF52x || BF54x) | 252 | default 0 if (BF51x || BF52x || (BF54x && !BF54xM)) |
| 228 | default 2 if (BF537 || BF536 || BF534) | 253 | default 2 if (BF537 || BF536 || BF534) |
| 229 | default 3 if (BF561 ||BF533 || BF532 || BF531) | 254 | default 3 if (BF561 || BF533 || BF532 || BF531 || BF54xM) |
| 230 | default 4 if (BF538 || BF539) | 255 | default 4 if (BF538 || BF539) |
| 231 | 256 | ||
| 232 | config BF_REV_MAX | 257 | config BF_REV_MAX |
| 233 | int | 258 | int |
| 234 | default 2 if (BF51x || BF52x || BF54x) | 259 | default 2 if (BF51x || BF52x || (BF54x && !BF54xM)) |
| 235 | default 3 if (BF537 || BF536 || BF534) | 260 | default 3 if (BF537 || BF536 || BF534 || BF54xM) |
| 236 | default 5 if (BF561 || BF538 || BF539) | 261 | default 5 if (BF561 || BF538 || BF539) |
| 237 | default 6 if (BF533 || BF532 || BF531) | 262 | default 6 if (BF533 || BF532 || BF531) |
| 238 | 263 | ||
| 239 | choice | 264 | choice |
| 240 | prompt "Silicon Rev" | 265 | prompt "Silicon Rev" |
| 241 | default BF_REV_0_1 if (BF51x || BF52x || BF54x) | 266 | default BF_REV_0_1 if (BF51x || BF52x || (BF54x && !BF54xM)) |
| 242 | default BF_REV_0_2 if (BF534 || BF536 || BF537) | 267 | default BF_REV_0_2 if (BF534 || BF536 || BF537) |
| 243 | default BF_REV_0_3 if (BF531 || BF532 || BF533 || BF561) | 268 | default BF_REV_0_3 if (BF531 || BF532 || BF533 || BF54xM || BF561) |
| 244 | 269 | ||
| 245 | config BF_REV_0_0 | 270 | config BF_REV_0_0 |
| 246 | bool "0.0" | 271 | bool "0.0" |
| 247 | depends on (BF51x || BF52x || BF54x) | 272 | depends on (BF51x || BF52x || (BF54x && !BF54xM)) |
| 248 | 273 | ||
| 249 | config BF_REV_0_1 | 274 | config BF_REV_0_1 |
| 250 | bool "0.1" | 275 | bool "0.1" |
| 251 | depends on (BF52x || BF54x) | 276 | depends on (BF52x || (BF54x && !BF54xM)) |
| 252 | 277 | ||
| 253 | config BF_REV_0_2 | 278 | config BF_REV_0_2 |
| 254 | bool "0.2" | 279 | bool "0.2" |
| 255 | depends on (BF52x || BF537 || BF536 || BF534 || BF54x) | 280 | depends on (BF52x || BF537 || BF536 || BF534 || (BF54x && !BF54xM)) |
| 256 | 281 | ||
| 257 | config BF_REV_0_3 | 282 | config BF_REV_0_3 |
| 258 | bool "0.3" | 283 | bool "0.3" |
| 259 | depends on (BF561 || BF537 || BF536 || BF534 || BF533 || BF532 || BF531) | 284 | depends on (BF54xM || BF561 || BF537 || BF536 || BF534 || BF533 || BF532 || BF531) |
| 260 | 285 | ||
| 261 | config BF_REV_0_4 | 286 | config BF_REV_0_4 |
| 262 | bool "0.4" | 287 | bool "0.4" |
| @@ -293,9 +318,14 @@ config BF53x | |||
| 293 | depends on (BF531 || BF532 || BF533 || BF534 || BF536 || BF537) | 318 | depends on (BF531 || BF532 || BF533 || BF534 || BF536 || BF537) |
| 294 | default y | 319 | default y |
| 295 | 320 | ||
| 321 | config BF54xM | ||
| 322 | bool | ||
| 323 | depends on (BF542M || BF544M || BF547M || BF548M || BF549M) | ||
| 324 | default y | ||
| 325 | |||
| 296 | config BF54x | 326 | config BF54x |
| 297 | bool | 327 | bool |
| 298 | depends on (BF542 || BF544 || BF547 || BF548 || BF549) | 328 | depends on (BF542 || BF544 || BF547 || BF548 || BF549 || BF54xM) |
| 299 | default y | 329 | default y |
| 300 | 330 | ||
| 301 | config MEM_GENERIC_BOARD | 331 | config MEM_GENERIC_BOARD |
diff --git a/arch/blackfin/Makefile b/arch/blackfin/Makefile index e550c8d46066..d54c8283825c 100644 --- a/arch/blackfin/Makefile +++ b/arch/blackfin/Makefile | |||
| @@ -21,57 +21,67 @@ KALLSYMS += --symbol-prefix=_ | |||
| 21 | KBUILD_DEFCONFIG := BF537-STAMP_defconfig | 21 | KBUILD_DEFCONFIG := BF537-STAMP_defconfig |
| 22 | 22 | ||
| 23 | # setup the machine name and the machine dependent settings | 23 | # setup the machine name and the machine dependent settings |
| 24 | machine-$(CONFIG_BF512) := bf518 | 24 | machine-$(CONFIG_BF512) := bf518 |
| 25 | machine-$(CONFIG_BF514) := bf518 | 25 | machine-$(CONFIG_BF514) := bf518 |
| 26 | machine-$(CONFIG_BF516) := bf518 | 26 | machine-$(CONFIG_BF516) := bf518 |
| 27 | machine-$(CONFIG_BF518) := bf518 | 27 | machine-$(CONFIG_BF518) := bf518 |
| 28 | machine-$(CONFIG_BF522) := bf527 | 28 | machine-$(CONFIG_BF522) := bf527 |
| 29 | machine-$(CONFIG_BF523) := bf527 | 29 | machine-$(CONFIG_BF523) := bf527 |
| 30 | machine-$(CONFIG_BF524) := bf527 | 30 | machine-$(CONFIG_BF524) := bf527 |
| 31 | machine-$(CONFIG_BF525) := bf527 | 31 | machine-$(CONFIG_BF525) := bf527 |
| 32 | machine-$(CONFIG_BF526) := bf527 | 32 | machine-$(CONFIG_BF526) := bf527 |
| 33 | machine-$(CONFIG_BF527) := bf527 | 33 | machine-$(CONFIG_BF527) := bf527 |
| 34 | machine-$(CONFIG_BF531) := bf533 | 34 | machine-$(CONFIG_BF531) := bf533 |
| 35 | machine-$(CONFIG_BF532) := bf533 | 35 | machine-$(CONFIG_BF532) := bf533 |
| 36 | machine-$(CONFIG_BF533) := bf533 | 36 | machine-$(CONFIG_BF533) := bf533 |
| 37 | machine-$(CONFIG_BF534) := bf537 | 37 | machine-$(CONFIG_BF534) := bf537 |
| 38 | machine-$(CONFIG_BF536) := bf537 | 38 | machine-$(CONFIG_BF536) := bf537 |
| 39 | machine-$(CONFIG_BF537) := bf537 | 39 | machine-$(CONFIG_BF537) := bf537 |
| 40 | machine-$(CONFIG_BF538) := bf538 | 40 | machine-$(CONFIG_BF538) := bf538 |
| 41 | machine-$(CONFIG_BF539) := bf538 | 41 | machine-$(CONFIG_BF539) := bf538 |
| 42 | machine-$(CONFIG_BF542) := bf548 | 42 | machine-$(CONFIG_BF542) := bf548 |
| 43 | machine-$(CONFIG_BF544) := bf548 | 43 | machine-$(CONFIG_BF542M) := bf548 |
| 44 | machine-$(CONFIG_BF547) := bf548 | 44 | machine-$(CONFIG_BF544) := bf548 |
| 45 | machine-$(CONFIG_BF548) := bf548 | 45 | machine-$(CONFIG_BF544M) := bf548 |
| 46 | machine-$(CONFIG_BF549) := bf548 | 46 | machine-$(CONFIG_BF547) := bf548 |
| 47 | machine-$(CONFIG_BF561) := bf561 | 47 | machine-$(CONFIG_BF547M) := bf548 |
| 48 | machine-$(CONFIG_BF548) := bf548 | ||
| 49 | machine-$(CONFIG_BF548M) := bf548 | ||
| 50 | machine-$(CONFIG_BF549) := bf548 | ||
| 51 | machine-$(CONFIG_BF549M) := bf548 | ||
| 52 | machine-$(CONFIG_BF561) := bf561 | ||
| 48 | MACHINE := $(machine-y) | 53 | MACHINE := $(machine-y) |
| 49 | export MACHINE | 54 | export MACHINE |
| 50 | 55 | ||
| 51 | cpu-$(CONFIG_BF512) := bf512 | 56 | cpu-$(CONFIG_BF512) := bf512 |
| 52 | cpu-$(CONFIG_BF514) := bf514 | 57 | cpu-$(CONFIG_BF514) := bf514 |
| 53 | cpu-$(CONFIG_BF516) := bf516 | 58 | cpu-$(CONFIG_BF516) := bf516 |
| 54 | cpu-$(CONFIG_BF518) := bf518 | 59 | cpu-$(CONFIG_BF518) := bf518 |
| 55 | cpu-$(CONFIG_BF522) := bf522 | 60 | cpu-$(CONFIG_BF522) := bf522 |
| 56 | cpu-$(CONFIG_BF523) := bf523 | 61 | cpu-$(CONFIG_BF523) := bf523 |
| 57 | cpu-$(CONFIG_BF524) := bf524 | 62 | cpu-$(CONFIG_BF524) := bf524 |
| 58 | cpu-$(CONFIG_BF525) := bf525 | 63 | cpu-$(CONFIG_BF525) := bf525 |
| 59 | cpu-$(CONFIG_BF526) := bf526 | 64 | cpu-$(CONFIG_BF526) := bf526 |
| 60 | cpu-$(CONFIG_BF527) := bf527 | 65 | cpu-$(CONFIG_BF527) := bf527 |
| 61 | cpu-$(CONFIG_BF531) := bf531 | 66 | cpu-$(CONFIG_BF531) := bf531 |
| 62 | cpu-$(CONFIG_BF532) := bf532 | 67 | cpu-$(CONFIG_BF532) := bf532 |
| 63 | cpu-$(CONFIG_BF533) := bf533 | 68 | cpu-$(CONFIG_BF533) := bf533 |
| 64 | cpu-$(CONFIG_BF534) := bf534 | 69 | cpu-$(CONFIG_BF534) := bf534 |
| 65 | cpu-$(CONFIG_BF536) := bf536 | 70 | cpu-$(CONFIG_BF536) := bf536 |
| 66 | cpu-$(CONFIG_BF537) := bf537 | 71 | cpu-$(CONFIG_BF537) := bf537 |
| 67 | cpu-$(CONFIG_BF538) := bf538 | 72 | cpu-$(CONFIG_BF538) := bf538 |
| 68 | cpu-$(CONFIG_BF539) := bf539 | 73 | cpu-$(CONFIG_BF539) := bf539 |
| 69 | cpu-$(CONFIG_BF542) := bf542 | 74 | cpu-$(CONFIG_BF542) := bf542 |
| 70 | cpu-$(CONFIG_BF544) := bf544 | 75 | cpu-$(CONFIG_BF542M) := bf542m |
| 71 | cpu-$(CONFIG_BF547) := bf547 | 76 | cpu-$(CONFIG_BF544) := bf544 |
| 72 | cpu-$(CONFIG_BF548) := bf548 | 77 | cpu-$(CONFIG_BF544M) := bf544m |
| 73 | cpu-$(CONFIG_BF549) := bf549 | 78 | cpu-$(CONFIG_BF547) := bf547 |
| 74 | cpu-$(CONFIG_BF561) := bf561 | 79 | cpu-$(CONFIG_BF547M) := bf547m |
| 80 | cpu-$(CONFIG_BF548) := bf548 | ||
| 81 | cpu-$(CONFIG_BF548M) := bf548m | ||
| 82 | cpu-$(CONFIG_BF549) := bf549 | ||
| 83 | cpu-$(CONFIG_BF549M) := bf549m | ||
| 84 | cpu-$(CONFIG_BF561) := bf561 | ||
| 75 | 85 | ||
| 76 | rev-$(CONFIG_BF_REV_0_0) := 0.0 | 86 | rev-$(CONFIG_BF_REV_0_0) := 0.0 |
| 77 | rev-$(CONFIG_BF_REV_0_1) := 0.1 | 87 | rev-$(CONFIG_BF_REV_0_1) := 0.1 |
diff --git a/arch/blackfin/configs/BF518F-EZBRD_defconfig b/arch/blackfin/configs/BF518F-EZBRD_defconfig index defb9785c65b..4fdb9e04759f 100644 --- a/arch/blackfin/configs/BF518F-EZBRD_defconfig +++ b/arch/blackfin/configs/BF518F-EZBRD_defconfig | |||
| @@ -1,6 +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.28-rc2 | 3 | # Linux kernel version: 2.6.28-rc2 |
| 4 | # Fri Jan 9 17:58:41 2009 | ||
| 4 | # | 5 | # |
| 5 | # CONFIG_MMU is not set | 6 | # CONFIG_MMU is not set |
| 6 | # CONFIG_FPU is not set | 7 | # CONFIG_FPU is not set |
| @@ -149,6 +150,7 @@ CONFIG_BF_REV_0_0=y | |||
| 149 | # CONFIG_BF_REV_ANY is not set | 150 | # CONFIG_BF_REV_ANY is not set |
| 150 | # CONFIG_BF_REV_NONE is not set | 151 | # CONFIG_BF_REV_NONE is not set |
| 151 | CONFIG_BF51x=y | 152 | CONFIG_BF51x=y |
| 153 | CONFIG_MEM_MT48LC32M8A2_75=y | ||
| 152 | CONFIG_BFIN518F_EZBRD=y | 154 | CONFIG_BFIN518F_EZBRD=y |
| 153 | 155 | ||
| 154 | # | 156 | # |
| @@ -598,7 +600,10 @@ CONFIG_PHYLIB=y | |||
| 598 | # CONFIG_MDIO_BITBANG is not set | 600 | # CONFIG_MDIO_BITBANG is not set |
| 599 | CONFIG_NET_ETHERNET=y | 601 | CONFIG_NET_ETHERNET=y |
| 600 | CONFIG_MII=y | 602 | CONFIG_MII=y |
| 601 | # CONFIG_BFIN_MAC is not set | 603 | CONFIG_BFIN_MAC=y |
| 604 | CONFIG_BFIN_TX_DESC_NUM=10 | ||
| 605 | CONFIG_BFIN_RX_DESC_NUM=20 | ||
| 606 | # CONFIG_BFIN_MAC_RMII is not set | ||
| 602 | # CONFIG_SMC91X is not set | 607 | # CONFIG_SMC91X is not set |
| 603 | # CONFIG_SMSC911X is not set | 608 | # CONFIG_SMSC911X is not set |
| 604 | # CONFIG_DM9000 is not set | 609 | # CONFIG_DM9000 is not set |
| @@ -679,7 +684,7 @@ CONFIG_VT_CONSOLE=y | |||
| 679 | CONFIG_HW_CONSOLE=y | 684 | CONFIG_HW_CONSOLE=y |
| 680 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 685 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| 681 | # CONFIG_DEVKMEM is not set | 686 | # CONFIG_DEVKMEM is not set |
| 682 | # CONFIG_BFIN_JTAG_COMM is not set | 687 | CONFIG_BFIN_JTAG_COMM=m |
| 683 | # CONFIG_SERIAL_NONSTANDARD is not set | 688 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 684 | 689 | ||
| 685 | # | 690 | # |
diff --git a/arch/blackfin/configs/BF526-EZBRD_defconfig b/arch/blackfin/configs/BF526-EZBRD_defconfig index 992424ff3153..8e2b855b8db7 100644 --- a/arch/blackfin/configs/BF526-EZBRD_defconfig +++ b/arch/blackfin/configs/BF526-EZBRD_defconfig | |||
| @@ -723,7 +723,7 @@ CONFIG_VT_CONSOLE=y | |||
| 723 | CONFIG_HW_CONSOLE=y | 723 | CONFIG_HW_CONSOLE=y |
| 724 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 724 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| 725 | # CONFIG_DEVKMEM is not set | 725 | # CONFIG_DEVKMEM is not set |
| 726 | # CONFIG_BFIN_JTAG_COMM is not set | 726 | CONFIG_BFIN_JTAG_COMM=m |
| 727 | # CONFIG_SERIAL_NONSTANDARD is not set | 727 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 728 | 728 | ||
| 729 | # | 729 | # |
diff --git a/arch/blackfin/configs/BF527-EZKIT_defconfig b/arch/blackfin/configs/BF527-EZKIT_defconfig index 21e3c1af55ba..833128b39724 100644 --- a/arch/blackfin/configs/BF527-EZKIT_defconfig +++ b/arch/blackfin/configs/BF527-EZKIT_defconfig | |||
| @@ -767,7 +767,7 @@ CONFIG_VT_CONSOLE=y | |||
| 767 | CONFIG_HW_CONSOLE=y | 767 | CONFIG_HW_CONSOLE=y |
| 768 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 768 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| 769 | # CONFIG_DEVKMEM is not set | 769 | # CONFIG_DEVKMEM is not set |
| 770 | # CONFIG_BFIN_JTAG_COMM is not set | 770 | CONFIG_BFIN_JTAG_COMM=m |
| 771 | # CONFIG_SERIAL_NONSTANDARD is not set | 771 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 772 | 772 | ||
| 773 | # | 773 | # |
diff --git a/arch/blackfin/configs/BF533-EZKIT_defconfig b/arch/blackfin/configs/BF533-EZKIT_defconfig index 0bdf20a1af61..334c94b51c40 100644 --- a/arch/blackfin/configs/BF533-EZKIT_defconfig +++ b/arch/blackfin/configs/BF533-EZKIT_defconfig | |||
| @@ -672,7 +672,7 @@ CONFIG_BFIN_DMA_INTERFACE=m | |||
| 672 | CONFIG_SIMPLE_GPIO=m | 672 | CONFIG_SIMPLE_GPIO=m |
| 673 | # CONFIG_VT is not set | 673 | # CONFIG_VT is not set |
| 674 | # CONFIG_DEVKMEM is not set | 674 | # CONFIG_DEVKMEM is not set |
| 675 | # CONFIG_BFIN_JTAG_COMM is not set | 675 | CONFIG_BFIN_JTAG_COMM=m |
| 676 | # CONFIG_SERIAL_NONSTANDARD is not set | 676 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 677 | 677 | ||
| 678 | # | 678 | # |
diff --git a/arch/blackfin/configs/BF533-STAMP_defconfig b/arch/blackfin/configs/BF533-STAMP_defconfig index 2f747d6e97e2..9d733436e300 100644 --- a/arch/blackfin/configs/BF533-STAMP_defconfig +++ b/arch/blackfin/configs/BF533-STAMP_defconfig | |||
| @@ -679,7 +679,7 @@ CONFIG_BFIN_DMA_INTERFACE=m | |||
| 679 | CONFIG_SIMPLE_GPIO=m | 679 | CONFIG_SIMPLE_GPIO=m |
| 680 | # CONFIG_VT is not set | 680 | # CONFIG_VT is not set |
| 681 | # CONFIG_DEVKMEM is not set | 681 | # CONFIG_DEVKMEM is not set |
| 682 | # CONFIG_BFIN_JTAG_COMM is not set | 682 | CONFIG_BFIN_JTAG_COMM=m |
| 683 | # CONFIG_SERIAL_NONSTANDARD is not set | 683 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 684 | 684 | ||
| 685 | # | 685 | # |
diff --git a/arch/blackfin/configs/BF537-STAMP_defconfig b/arch/blackfin/configs/BF537-STAMP_defconfig index 8b0a81294e65..4fb4108d3103 100644 --- a/arch/blackfin/configs/BF537-STAMP_defconfig +++ b/arch/blackfin/configs/BF537-STAMP_defconfig | |||
| @@ -722,7 +722,7 @@ CONFIG_BFIN_DMA_INTERFACE=m | |||
| 722 | CONFIG_SIMPLE_GPIO=m | 722 | CONFIG_SIMPLE_GPIO=m |
| 723 | # CONFIG_VT is not set | 723 | # CONFIG_VT is not set |
| 724 | # CONFIG_DEVKMEM is not set | 724 | # CONFIG_DEVKMEM is not set |
| 725 | # CONFIG_BFIN_JTAG_COMM is not set | 725 | CONFIG_BFIN_JTAG_COMM=m |
| 726 | # CONFIG_SERIAL_NONSTANDARD is not set | 726 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 727 | 727 | ||
| 728 | # | 728 | # |
diff --git a/arch/blackfin/configs/BF538-EZKIT_defconfig b/arch/blackfin/configs/BF538-EZKIT_defconfig index a1f766bf7d9b..cb32f5624a1b 100644 --- a/arch/blackfin/configs/BF538-EZKIT_defconfig +++ b/arch/blackfin/configs/BF538-EZKIT_defconfig | |||
| @@ -726,7 +726,7 @@ CONFIG_BFIN_DMA_INTERFACE=m | |||
| 726 | CONFIG_SIMPLE_GPIO=m | 726 | CONFIG_SIMPLE_GPIO=m |
| 727 | # CONFIG_VT is not set | 727 | # CONFIG_VT is not set |
| 728 | # CONFIG_DEVKMEM is not set | 728 | # CONFIG_DEVKMEM is not set |
| 729 | # CONFIG_BFIN_JTAG_COMM is not set | 729 | CONFIG_BFIN_JTAG_COMM=m |
| 730 | # CONFIG_SERIAL_NONSTANDARD is not set | 730 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 731 | 731 | ||
| 732 | # | 732 | # |
diff --git a/arch/blackfin/configs/BF548-EZKIT_defconfig b/arch/blackfin/configs/BF548-EZKIT_defconfig index cd2da6b7692c..0f8697618aa5 100644 --- a/arch/blackfin/configs/BF548-EZKIT_defconfig +++ b/arch/blackfin/configs/BF548-EZKIT_defconfig | |||
| @@ -856,7 +856,7 @@ CONFIG_VT_CONSOLE=y | |||
| 856 | CONFIG_HW_CONSOLE=y | 856 | CONFIG_HW_CONSOLE=y |
| 857 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 857 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| 858 | # CONFIG_DEVKMEM is not set | 858 | # CONFIG_DEVKMEM is not set |
| 859 | # CONFIG_BFIN_JTAG_COMM is not set | 859 | CONFIG_BFIN_JTAG_COMM=m |
| 860 | # CONFIG_SERIAL_NONSTANDARD is not set | 860 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 861 | 861 | ||
| 862 | # | 862 | # |
diff --git a/arch/blackfin/configs/BF561-EZKIT_defconfig b/arch/blackfin/configs/BF561-EZKIT_defconfig index b398ca202dbd..042c7adfccfa 100644 --- a/arch/blackfin/configs/BF561-EZKIT_defconfig +++ b/arch/blackfin/configs/BF561-EZKIT_defconfig | |||
| @@ -709,7 +709,7 @@ CONFIG_BFIN_DMA_INTERFACE=m | |||
| 709 | CONFIG_SIMPLE_GPIO=m | 709 | CONFIG_SIMPLE_GPIO=m |
| 710 | # CONFIG_VT is not set | 710 | # CONFIG_VT is not set |
| 711 | # CONFIG_DEVKMEM is not set | 711 | # CONFIG_DEVKMEM is not set |
| 712 | # CONFIG_BFIN_JTAG_COMM is not set | 712 | CONFIG_BFIN_JTAG_COMM=m |
| 713 | # CONFIG_SERIAL_NONSTANDARD is not set | 713 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 714 | 714 | ||
| 715 | # | 715 | # |
diff --git a/arch/blackfin/configs/CM-BF527_defconfig b/arch/blackfin/configs/CM-BF527_defconfig index 95146948166f..865ed85a5760 100644 --- a/arch/blackfin/configs/CM-BF527_defconfig +++ b/arch/blackfin/configs/CM-BF527_defconfig | |||
| @@ -1,7 +1,6 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.24.7 | 3 | # Linux kernel version: 2.6.28 |
| 4 | # Fri Jul 18 18:00:41 2008 | ||
| 5 | # | 4 | # |
| 6 | # CONFIG_MMU is not set | 5 | # CONFIG_MMU is not set |
| 7 | # CONFIG_FPU is not set | 6 | # CONFIG_FPU is not set |
| @@ -9,7 +8,6 @@ CONFIG_RWSEM_GENERIC_SPINLOCK=y | |||
| 9 | # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set | 8 | # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set |
| 10 | CONFIG_BLACKFIN=y | 9 | CONFIG_BLACKFIN=y |
| 11 | CONFIG_ZONE_DMA=y | 10 | CONFIG_ZONE_DMA=y |
| 12 | CONFIG_SEMAPHORE_SLEEPERS=y | ||
| 13 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 11 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 14 | CONFIG_GENERIC_HWEIGHT=y | 12 | CONFIG_GENERIC_HWEIGHT=y |
| 15 | CONFIG_GENERIC_HARDIRQS=y | 13 | CONFIG_GENERIC_HARDIRQS=y |
| @@ -32,18 +30,16 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 32 | # CONFIG_POSIX_MQUEUE is not set | 30 | # CONFIG_POSIX_MQUEUE is not set |
| 33 | # CONFIG_BSD_PROCESS_ACCT is not set | 31 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 34 | # CONFIG_TASKSTATS is not set | 32 | # CONFIG_TASKSTATS is not set |
| 35 | # CONFIG_USER_NS is not set | ||
| 36 | # CONFIG_PID_NS is not set | ||
| 37 | # CONFIG_AUDIT is not set | 33 | # CONFIG_AUDIT is not set |
| 38 | CONFIG_IKCONFIG=y | 34 | CONFIG_IKCONFIG=y |
| 39 | CONFIG_IKCONFIG_PROC=y | 35 | CONFIG_IKCONFIG_PROC=y |
| 40 | CONFIG_LOG_BUF_SHIFT=14 | 36 | CONFIG_LOG_BUF_SHIFT=14 |
| 41 | # CONFIG_CGROUPS is not set | 37 | # CONFIG_CGROUPS is not set |
| 42 | CONFIG_FAIR_GROUP_SCHED=y | 38 | # CONFIG_GROUP_SCHED is not set |
| 43 | CONFIG_FAIR_USER_SCHED=y | 39 | CONFIG_SYSFS_DEPRECATED=y |
| 44 | # CONFIG_FAIR_CGROUP_SCHED is not set | 40 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 45 | # CONFIG_SYSFS_DEPRECATED is not set | ||
| 46 | # CONFIG_RELAY is not set | 41 | # CONFIG_RELAY is not set |
| 42 | # CONFIG_NAMESPACES is not set | ||
| 47 | CONFIG_BLK_DEV_INITRD=y | 43 | CONFIG_BLK_DEV_INITRD=y |
| 48 | CONFIG_INITRAMFS_SOURCE="" | 44 | CONFIG_INITRAMFS_SOURCE="" |
| 49 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 45 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| @@ -52,26 +48,35 @@ CONFIG_EMBEDDED=y | |||
| 52 | CONFIG_UID16=y | 48 | CONFIG_UID16=y |
| 53 | CONFIG_SYSCTL_SYSCALL=y | 49 | CONFIG_SYSCTL_SYSCALL=y |
| 54 | CONFIG_KALLSYMS=y | 50 | CONFIG_KALLSYMS=y |
| 51 | # CONFIG_KALLSYMS_ALL is not set | ||
| 55 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 52 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 56 | CONFIG_HOTPLUG=y | 53 | CONFIG_HOTPLUG=y |
| 57 | CONFIG_PRINTK=y | 54 | CONFIG_PRINTK=y |
| 58 | CONFIG_BUG=y | 55 | CONFIG_BUG=y |
| 59 | # CONFIG_ELF_CORE is not set | 56 | # CONFIG_ELF_CORE is not set |
| 57 | CONFIG_COMPAT_BRK=y | ||
| 60 | CONFIG_BASE_FULL=y | 58 | CONFIG_BASE_FULL=y |
| 61 | CONFIG_FUTEX=y | 59 | CONFIG_FUTEX=y |
| 62 | CONFIG_ANON_INODES=y | 60 | CONFIG_ANON_INODES=y |
| 63 | CONFIG_EPOLL=y | 61 | CONFIG_EPOLL=y |
| 64 | CONFIG_SIGNALFD=y | 62 | CONFIG_SIGNALFD=y |
| 63 | CONFIG_TIMERFD=y | ||
| 65 | CONFIG_EVENTFD=y | 64 | CONFIG_EVENTFD=y |
| 65 | CONFIG_AIO=y | ||
| 66 | CONFIG_VM_EVENT_COUNTERS=y | 66 | CONFIG_VM_EVENT_COUNTERS=y |
| 67 | CONFIG_SLAB=y | 67 | CONFIG_SLAB=y |
| 68 | # CONFIG_SLUB is not set | 68 | # CONFIG_SLUB is not set |
| 69 | # CONFIG_SLOB is not set | 69 | # CONFIG_SLOB is not set |
| 70 | # CONFIG_PROFILING is not set | ||
| 71 | # CONFIG_MARKERS is not set | ||
| 72 | CONFIG_HAVE_OPROFILE=y | ||
| 73 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 70 | CONFIG_SLABINFO=y | 74 | CONFIG_SLABINFO=y |
| 71 | CONFIG_RT_MUTEXES=y | 75 | CONFIG_RT_MUTEXES=y |
| 72 | CONFIG_TINY_SHMEM=y | 76 | CONFIG_TINY_SHMEM=y |
| 73 | CONFIG_BASE_SMALL=0 | 77 | CONFIG_BASE_SMALL=0 |
| 74 | CONFIG_MODULES=y | 78 | CONFIG_MODULES=y |
| 79 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 75 | CONFIG_MODULE_UNLOAD=y | 80 | CONFIG_MODULE_UNLOAD=y |
| 76 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 81 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 77 | # CONFIG_MODVERSIONS is not set | 82 | # CONFIG_MODVERSIONS is not set |
| @@ -82,6 +87,7 @@ CONFIG_BLOCK=y | |||
| 82 | # CONFIG_BLK_DEV_IO_TRACE is not set | 87 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 83 | # CONFIG_LSF is not set | 88 | # CONFIG_LSF is not set |
| 84 | # CONFIG_BLK_DEV_BSG is not set | 89 | # CONFIG_BLK_DEV_BSG is not set |
| 90 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 85 | 91 | ||
| 86 | # | 92 | # |
| 87 | # IO Schedulers | 93 | # IO Schedulers |
| @@ -95,9 +101,11 @@ CONFIG_IOSCHED_CFQ=y | |||
| 95 | CONFIG_DEFAULT_CFQ=y | 101 | CONFIG_DEFAULT_CFQ=y |
| 96 | # CONFIG_DEFAULT_NOOP is not set | 102 | # CONFIG_DEFAULT_NOOP is not set |
| 97 | CONFIG_DEFAULT_IOSCHED="cfq" | 103 | CONFIG_DEFAULT_IOSCHED="cfq" |
| 104 | CONFIG_CLASSIC_RCU=y | ||
| 98 | # CONFIG_PREEMPT_NONE is not set | 105 | # CONFIG_PREEMPT_NONE is not set |
| 99 | CONFIG_PREEMPT_VOLUNTARY=y | 106 | CONFIG_PREEMPT_VOLUNTARY=y |
| 100 | # CONFIG_PREEMPT is not set | 107 | # CONFIG_PREEMPT is not set |
| 108 | # CONFIG_FREEZER is not set | ||
| 101 | 109 | ||
| 102 | # | 110 | # |
| 103 | # Blackfin Processor Options | 111 | # Blackfin Processor Options |
| @@ -106,6 +114,10 @@ CONFIG_PREEMPT_VOLUNTARY=y | |||
| 106 | # | 114 | # |
| 107 | # Processor and Board Settings | 115 | # Processor and Board Settings |
| 108 | # | 116 | # |
| 117 | # CONFIG_BF512 is not set | ||
| 118 | # CONFIG_BF514 is not set | ||
| 119 | # CONFIG_BF516 is not set | ||
| 120 | # CONFIG_BF518 is not set | ||
| 109 | # CONFIG_BF522 is not set | 121 | # CONFIG_BF522 is not set |
| 110 | # CONFIG_BF523 is not set | 122 | # CONFIG_BF523 is not set |
| 111 | # CONFIG_BF524 is not set | 123 | # CONFIG_BF524 is not set |
| @@ -118,48 +130,32 @@ CONFIG_BF527=y | |||
| 118 | # CONFIG_BF534 is not set | 130 | # CONFIG_BF534 is not set |
| 119 | # CONFIG_BF536 is not set | 131 | # CONFIG_BF536 is not set |
| 120 | # CONFIG_BF537 is not set | 132 | # CONFIG_BF537 is not set |
| 133 | # CONFIG_BF538 is not set | ||
| 134 | # CONFIG_BF539 is not set | ||
| 121 | # CONFIG_BF542 is not set | 135 | # CONFIG_BF542 is not set |
| 136 | # CONFIG_BF542M is not set | ||
| 122 | # CONFIG_BF544 is not set | 137 | # CONFIG_BF544 is not set |
| 138 | # CONFIG_BF544M is not set | ||
| 123 | # CONFIG_BF547 is not set | 139 | # CONFIG_BF547 is not set |
| 140 | # CONFIG_BF547M is not set | ||
| 124 | # CONFIG_BF548 is not set | 141 | # CONFIG_BF548 is not set |
| 142 | # CONFIG_BF548M is not set | ||
| 125 | # CONFIG_BF549 is not set | 143 | # CONFIG_BF549 is not set |
| 144 | # CONFIG_BF549M is not set | ||
| 126 | # CONFIG_BF561 is not set | 145 | # CONFIG_BF561 is not set |
| 146 | CONFIG_BF_REV_MIN=0 | ||
| 147 | CONFIG_BF_REV_MAX=2 | ||
| 127 | # CONFIG_BF_REV_0_0 is not set | 148 | # CONFIG_BF_REV_0_0 is not set |
| 128 | CONFIG_BF_REV_0_1=y | 149 | CONFIG_BF_REV_0_1=y |
| 129 | # CONFIG_BF_REV_0_2 is not set | 150 | # CONFIG_BF_REV_0_2 is not set |
| 130 | # CONFIG_BF_REV_0_3 is not set | 151 | # CONFIG_BF_REV_0_3 is not set |
| 131 | # CONFIG_BF_REV_0_4 is not set | 152 | # CONFIG_BF_REV_0_4 is not set |
| 132 | # CONFIG_BF_REV_0_5 is not set | 153 | # CONFIG_BF_REV_0_5 is not set |
| 154 | # CONFIG_BF_REV_0_6 is not set | ||
| 133 | # CONFIG_BF_REV_ANY is not set | 155 | # CONFIG_BF_REV_ANY is not set |
| 134 | # CONFIG_BF_REV_NONE is not set | 156 | # CONFIG_BF_REV_NONE is not set |
| 135 | CONFIG_BF52x=y | 157 | CONFIG_BF52x=y |
| 136 | CONFIG_MEM_MT48LC16M16A2TG_75=y | 158 | CONFIG_MEM_MT48LC16M16A2TG_75=y |
| 137 | # CONFIG_BFIN527_EZKIT is not set | ||
| 138 | CONFIG_BFIN527_BLUETECHNIX_CM=y | ||
| 139 | |||
| 140 | # | ||
| 141 | # BF527 Specific Configuration | ||
| 142 | # | ||
| 143 | |||
| 144 | # | ||
| 145 | # Alternative Multiplexing Scheme | ||
| 146 | # | ||
| 147 | # CONFIG_BF527_SPORT0_PORTF is not set | ||
| 148 | CONFIG_BF527_SPORT0_PORTG=y | ||
| 149 | CONFIG_BF527_SPORT0_TSCLK_PG10=y | ||
| 150 | # CONFIG_BF527_SPORT0_TSCLK_PG14 is not set | ||
| 151 | CONFIG_BF527_UART1_PORTF=y | ||
| 152 | # CONFIG_BF527_UART1_PORTG is not set | ||
| 153 | # CONFIG_BF527_NAND_D_PORTF is not set | ||
| 154 | CONFIG_BF527_NAND_D_PORTH=y | ||
| 155 | |||
| 156 | # | ||
| 157 | # Interrupt Priority Assignment | ||
| 158 | # | ||
| 159 | |||
| 160 | # | ||
| 161 | # Priority | ||
| 162 | # | ||
| 163 | CONFIG_IRQ_PLL_WAKEUP=7 | 159 | CONFIG_IRQ_PLL_WAKEUP=7 |
| 164 | CONFIG_IRQ_DMA0_ERROR=7 | 160 | CONFIG_IRQ_DMA0_ERROR=7 |
| 165 | CONFIG_IRQ_DMAR0_BLK=7 | 161 | CONFIG_IRQ_DMAR0_BLK=7 |
| @@ -179,7 +175,6 @@ CONFIG_IRQ_SPORT0_TX=9 | |||
| 179 | CONFIG_IRQ_SPORT1_RX=9 | 175 | CONFIG_IRQ_SPORT1_RX=9 |
| 180 | CONFIG_IRQ_SPORT1_TX=9 | 176 | CONFIG_IRQ_SPORT1_TX=9 |
| 181 | CONFIG_IRQ_TWI=10 | 177 | CONFIG_IRQ_TWI=10 |
| 182 | CONFIG_IRQ_SPI=10 | ||
| 183 | CONFIG_IRQ_UART0_RX=10 | 178 | CONFIG_IRQ_UART0_RX=10 |
| 184 | CONFIG_IRQ_UART0_TX=10 | 179 | CONFIG_IRQ_UART0_TX=10 |
| 185 | CONFIG_IRQ_UART1_RX=10 | 180 | CONFIG_IRQ_UART1_RX=10 |
| @@ -205,6 +200,34 @@ CONFIG_IRQ_MEM_DMA1=13 | |||
| 205 | CONFIG_IRQ_WATCH=13 | 200 | CONFIG_IRQ_WATCH=13 |
| 206 | CONFIG_IRQ_PORTF_INTA=13 | 201 | CONFIG_IRQ_PORTF_INTA=13 |
| 207 | CONFIG_IRQ_PORTF_INTB=13 | 202 | CONFIG_IRQ_PORTF_INTB=13 |
| 203 | # CONFIG_BFIN527_EZKIT is not set | ||
| 204 | CONFIG_BFIN527_BLUETECHNIX_CM=y | ||
| 205 | # CONFIG_BFIN526_EZBRD is not set | ||
| 206 | |||
| 207 | # | ||
| 208 | # BF527 Specific Configuration | ||
| 209 | # | ||
| 210 | |||
| 211 | # | ||
| 212 | # Alternative Multiplexing Scheme | ||
| 213 | # | ||
| 214 | # CONFIG_BF527_SPORT0_PORTF is not set | ||
| 215 | CONFIG_BF527_SPORT0_PORTG=y | ||
| 216 | CONFIG_BF527_SPORT0_TSCLK_PG10=y | ||
| 217 | # CONFIG_BF527_SPORT0_TSCLK_PG14 is not set | ||
| 218 | CONFIG_BF527_UART1_PORTF=y | ||
| 219 | # CONFIG_BF527_UART1_PORTG is not set | ||
| 220 | # CONFIG_BF527_NAND_D_PORTF is not set | ||
| 221 | CONFIG_BF527_NAND_D_PORTH=y | ||
| 222 | |||
| 223 | # | ||
| 224 | # Interrupt Priority Assignment | ||
| 225 | # | ||
| 226 | |||
| 227 | # | ||
| 228 | # Priority | ||
| 229 | # | ||
| 230 | CONFIG_IRQ_SPI=10 | ||
| 208 | CONFIG_IRQ_SPI_ERROR=7 | 231 | CONFIG_IRQ_SPI_ERROR=7 |
| 209 | CONFIG_IRQ_NFC_ERROR=7 | 232 | CONFIG_IRQ_NFC_ERROR=7 |
| 210 | CONFIG_IRQ_HDMA_ERROR=7 | 233 | CONFIG_IRQ_HDMA_ERROR=7 |
| @@ -226,7 +249,6 @@ CONFIG_BOOT_LOAD=0x1000 | |||
| 226 | # | 249 | # |
| 227 | CONFIG_CLKIN_HZ=25000000 | 250 | CONFIG_CLKIN_HZ=25000000 |
| 228 | # CONFIG_BFIN_KERNEL_CLOCK is not set | 251 | # CONFIG_BFIN_KERNEL_CLOCK is not set |
| 229 | CONFIG_MAX_MEM_SIZE=512 | ||
| 230 | CONFIG_MAX_VCO_HZ=600000000 | 252 | CONFIG_MAX_VCO_HZ=600000000 |
| 231 | CONFIG_MIN_VCO_HZ=50000000 | 253 | CONFIG_MIN_VCO_HZ=50000000 |
| 232 | CONFIG_MAX_SCLK_HZ=133333333 | 254 | CONFIG_MAX_SCLK_HZ=133333333 |
| @@ -240,10 +262,10 @@ CONFIG_HZ_250=y | |||
| 240 | # CONFIG_HZ_300 is not set | 262 | # CONFIG_HZ_300 is not set |
| 241 | # CONFIG_HZ_1000 is not set | 263 | # CONFIG_HZ_1000 is not set |
| 242 | CONFIG_HZ=250 | 264 | CONFIG_HZ=250 |
| 265 | # CONFIG_SCHED_HRTICK is not set | ||
| 243 | CONFIG_GENERIC_TIME=y | 266 | CONFIG_GENERIC_TIME=y |
| 244 | CONFIG_GENERIC_CLOCKEVENTS=y | 267 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 245 | # CONFIG_CYCLES_CLOCKSOURCE is not set | 268 | # CONFIG_CYCLES_CLOCKSOURCE is not set |
| 246 | # CONFIG_TICK_ONESHOT is not set | ||
| 247 | # CONFIG_NO_HZ is not set | 269 | # CONFIG_NO_HZ is not set |
| 248 | # CONFIG_HIGH_RES_TIMERS is not set | 270 | # CONFIG_HIGH_RES_TIMERS is not set |
| 249 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | 271 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y |
| @@ -277,6 +299,12 @@ CONFIG_ACCESS_OK_L1=y | |||
| 277 | CONFIG_CACHELINE_ALIGNED_L1=y | 299 | CONFIG_CACHELINE_ALIGNED_L1=y |
| 278 | # CONFIG_SYSCALL_TAB_L1 is not set | 300 | # CONFIG_SYSCALL_TAB_L1 is not set |
| 279 | # CONFIG_CPLB_SWITCH_TAB_L1 is not set | 301 | # CONFIG_CPLB_SWITCH_TAB_L1 is not set |
| 302 | CONFIG_APP_STACK_L1=y | ||
| 303 | |||
| 304 | # | ||
| 305 | # Speed Optimizations | ||
| 306 | # | ||
| 307 | CONFIG_BFIN_INS_LOWOVERHEAD=y | ||
| 280 | CONFIG_RAMKERNEL=y | 308 | CONFIG_RAMKERNEL=y |
| 281 | # CONFIG_ROMKERNEL is not set | 309 | # CONFIG_ROMKERNEL is not set |
| 282 | CONFIG_SELECT_MEMORY_MODEL=y | 310 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -285,10 +313,10 @@ CONFIG_FLATMEM_MANUAL=y | |||
| 285 | # CONFIG_SPARSEMEM_MANUAL is not set | 313 | # CONFIG_SPARSEMEM_MANUAL is not set |
| 286 | CONFIG_FLATMEM=y | 314 | CONFIG_FLATMEM=y |
| 287 | CONFIG_FLAT_NODE_MEM_MAP=y | 315 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 288 | # CONFIG_SPARSEMEM_STATIC is not set | 316 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 289 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
| 290 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 317 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 291 | # CONFIG_RESOURCES_64BIT is not set | 318 | # CONFIG_RESOURCES_64BIT is not set |
| 319 | # CONFIG_PHYS_ADDR_T_64BIT is not set | ||
| 292 | CONFIG_ZONE_DMA_FLAG=1 | 320 | CONFIG_ZONE_DMA_FLAG=1 |
| 293 | CONFIG_VIRT_TO_BUS=y | 321 | CONFIG_VIRT_TO_BUS=y |
| 294 | CONFIG_BFIN_GPTIMERS=y | 322 | CONFIG_BFIN_GPTIMERS=y |
| @@ -334,7 +362,6 @@ CONFIG_BANK_3=0xFFC0 | |||
| 334 | # | 362 | # |
| 335 | # Bus options (PCI, PCMCIA, EISA, MCA, ISA) | 363 | # Bus options (PCI, PCMCIA, EISA, MCA, ISA) |
| 336 | # | 364 | # |
| 337 | # CONFIG_PCI is not set | ||
| 338 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 365 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 339 | # CONFIG_PCCARD is not set | 366 | # CONFIG_PCCARD is not set |
| 340 | 367 | ||
| @@ -345,25 +372,20 @@ CONFIG_BINFMT_ELF_FDPIC=y | |||
| 345 | CONFIG_BINFMT_FLAT=y | 372 | CONFIG_BINFMT_FLAT=y |
| 346 | CONFIG_BINFMT_ZFLAT=y | 373 | CONFIG_BINFMT_ZFLAT=y |
| 347 | # CONFIG_BINFMT_SHARED_FLAT is not set | 374 | # CONFIG_BINFMT_SHARED_FLAT is not set |
| 375 | # CONFIG_HAVE_AOUT is not set | ||
| 348 | # CONFIG_BINFMT_MISC is not set | 376 | # CONFIG_BINFMT_MISC is not set |
| 349 | 377 | ||
| 350 | # | 378 | # |
| 351 | # Power management options | 379 | # Power management options |
| 352 | # | 380 | # |
| 353 | # CONFIG_PM is not set | 381 | # CONFIG_PM is not set |
| 354 | CONFIG_SUSPEND_UP_POSSIBLE=y | 382 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 355 | # CONFIG_PM_BFIN_SLEEP_DEEPER is not set | ||
| 356 | # CONFIG_PM_BFIN_SLEEP is not set | ||
| 357 | # CONFIG_PM_WAKEUP_BY_GPIO is not set | 383 | # CONFIG_PM_WAKEUP_BY_GPIO is not set |
| 358 | 384 | ||
| 359 | # | 385 | # |
| 360 | # CPU Frequency scaling | 386 | # CPU Frequency scaling |
| 361 | # | 387 | # |
| 362 | # CONFIG_CPU_FREQ is not set | 388 | # CONFIG_CPU_FREQ is not set |
| 363 | |||
| 364 | # | ||
| 365 | # Networking | ||
| 366 | # | ||
| 367 | CONFIG_NET=y | 389 | CONFIG_NET=y |
| 368 | 390 | ||
| 369 | # | 391 | # |
| @@ -376,6 +398,7 @@ CONFIG_XFRM=y | |||
| 376 | # CONFIG_XFRM_USER is not set | 398 | # CONFIG_XFRM_USER is not set |
| 377 | # CONFIG_XFRM_SUB_POLICY is not set | 399 | # CONFIG_XFRM_SUB_POLICY is not set |
| 378 | # CONFIG_XFRM_MIGRATE is not set | 400 | # CONFIG_XFRM_MIGRATE is not set |
| 401 | # CONFIG_XFRM_STATISTICS is not set | ||
| 379 | # CONFIG_NET_KEY is not set | 402 | # CONFIG_NET_KEY is not set |
| 380 | CONFIG_INET=y | 403 | CONFIG_INET=y |
| 381 | # CONFIG_IP_MULTICAST is not set | 404 | # CONFIG_IP_MULTICAST is not set |
| @@ -405,8 +428,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 405 | CONFIG_DEFAULT_TCP_CONG="cubic" | 428 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 406 | # CONFIG_TCP_MD5SIG is not set | 429 | # CONFIG_TCP_MD5SIG is not set |
| 407 | # CONFIG_IPV6 is not set | 430 | # CONFIG_IPV6 is not set |
| 408 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 409 | # CONFIG_INET6_TUNNEL is not set | ||
| 410 | # CONFIG_NETLABEL is not set | 431 | # CONFIG_NETLABEL is not set |
| 411 | # CONFIG_NETWORK_SECMARK is not set | 432 | # CONFIG_NETWORK_SECMARK is not set |
| 412 | # CONFIG_NETFILTER is not set | 433 | # CONFIG_NETFILTER is not set |
| @@ -415,6 +436,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 415 | # CONFIG_TIPC is not set | 436 | # CONFIG_TIPC is not set |
| 416 | # CONFIG_ATM is not set | 437 | # CONFIG_ATM is not set |
| 417 | # CONFIG_BRIDGE is not set | 438 | # CONFIG_BRIDGE is not set |
| 439 | # CONFIG_NET_DSA is not set | ||
| 418 | # CONFIG_VLAN_8021Q is not set | 440 | # CONFIG_VLAN_8021Q is not set |
| 419 | # CONFIG_DECNET is not set | 441 | # CONFIG_DECNET is not set |
| 420 | # CONFIG_LLC2 is not set | 442 | # CONFIG_LLC2 is not set |
| @@ -431,14 +453,14 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 431 | # | 453 | # |
| 432 | # CONFIG_NET_PKTGEN is not set | 454 | # CONFIG_NET_PKTGEN is not set |
| 433 | # CONFIG_HAMRADIO is not set | 455 | # CONFIG_HAMRADIO is not set |
| 456 | # CONFIG_CAN is not set | ||
| 434 | # CONFIG_IRDA is not set | 457 | # CONFIG_IRDA is not set |
| 435 | # CONFIG_BT is not set | 458 | # CONFIG_BT is not set |
| 436 | # CONFIG_AF_RXRPC is not set | 459 | # CONFIG_AF_RXRPC is not set |
| 437 | 460 | # CONFIG_PHONET is not set | |
| 438 | # | 461 | CONFIG_WIRELESS=y |
| 439 | # Wireless | ||
| 440 | # | ||
| 441 | # CONFIG_CFG80211 is not set | 462 | # CONFIG_CFG80211 is not set |
| 463 | CONFIG_WIRELESS_OLD_REGULATORY=y | ||
| 442 | # CONFIG_WIRELESS_EXT is not set | 464 | # CONFIG_WIRELESS_EXT is not set |
| 443 | # CONFIG_MAC80211 is not set | 465 | # CONFIG_MAC80211 is not set |
| 444 | # CONFIG_IEEE80211 is not set | 466 | # CONFIG_IEEE80211 is not set |
| @@ -456,6 +478,8 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | |||
| 456 | CONFIG_STANDALONE=y | 478 | CONFIG_STANDALONE=y |
| 457 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 479 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 458 | # CONFIG_FW_LOADER is not set | 480 | # CONFIG_FW_LOADER is not set |
| 481 | # CONFIG_DEBUG_DRIVER is not set | ||
| 482 | # CONFIG_DEBUG_DEVRES is not set | ||
| 459 | # CONFIG_SYS_HYPERVISOR is not set | 483 | # CONFIG_SYS_HYPERVISOR is not set |
| 460 | # CONFIG_CONNECTOR is not set | 484 | # CONFIG_CONNECTOR is not set |
| 461 | CONFIG_MTD=y | 485 | CONFIG_MTD=y |
| @@ -464,6 +488,7 @@ CONFIG_MTD=y | |||
| 464 | CONFIG_MTD_PARTITIONS=y | 488 | CONFIG_MTD_PARTITIONS=y |
| 465 | # CONFIG_MTD_REDBOOT_PARTS is not set | 489 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 466 | # CONFIG_MTD_CMDLINE_PARTS is not set | 490 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 491 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 467 | 492 | ||
| 468 | # | 493 | # |
| 469 | # User Modules And Translation Layers | 494 | # User Modules And Translation Layers |
| @@ -507,6 +532,7 @@ CONFIG_MTD_ROM=m | |||
| 507 | # | 532 | # |
| 508 | CONFIG_MTD_COMPLEX_MAPPINGS=y | 533 | CONFIG_MTD_COMPLEX_MAPPINGS=y |
| 509 | # CONFIG_MTD_PHYSMAP is not set | 534 | # CONFIG_MTD_PHYSMAP is not set |
| 535 | # CONFIG_MTD_GPIO_ADDR is not set | ||
| 510 | # CONFIG_MTD_UCLINUX is not set | 536 | # CONFIG_MTD_UCLINUX is not set |
| 511 | # CONFIG_MTD_PLATRAM is not set | 537 | # CONFIG_MTD_PLATRAM is not set |
| 512 | 538 | ||
| @@ -542,10 +568,12 @@ CONFIG_BLK_DEV=y | |||
| 542 | CONFIG_BLK_DEV_RAM=y | 568 | CONFIG_BLK_DEV_RAM=y |
| 543 | CONFIG_BLK_DEV_RAM_COUNT=16 | 569 | CONFIG_BLK_DEV_RAM_COUNT=16 |
| 544 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 570 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
| 545 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 571 | # CONFIG_BLK_DEV_XIP is not set |
| 546 | # CONFIG_CDROM_PKTCDVD is not set | 572 | # CONFIG_CDROM_PKTCDVD is not set |
| 547 | # CONFIG_ATA_OVER_ETH is not set | 573 | # CONFIG_ATA_OVER_ETH is not set |
| 574 | # CONFIG_BLK_DEV_HD is not set | ||
| 548 | # CONFIG_MISC_DEVICES is not set | 575 | # CONFIG_MISC_DEVICES is not set |
| 576 | CONFIG_HAVE_IDE=y | ||
| 549 | # CONFIG_IDE is not set | 577 | # CONFIG_IDE is not set |
| 550 | 578 | ||
| 551 | # | 579 | # |
| @@ -558,7 +586,6 @@ CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | |||
| 558 | # CONFIG_ATA is not set | 586 | # CONFIG_ATA is not set |
| 559 | # CONFIG_MD is not set | 587 | # CONFIG_MD is not set |
| 560 | CONFIG_NETDEVICES=y | 588 | CONFIG_NETDEVICES=y |
| 561 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 562 | # CONFIG_DUMMY is not set | 589 | # CONFIG_DUMMY is not set |
| 563 | # CONFIG_BONDING is not set | 590 | # CONFIG_BONDING is not set |
| 564 | # CONFIG_MACVLAN is not set | 591 | # CONFIG_MACVLAN is not set |
| @@ -579,6 +606,7 @@ CONFIG_PHYLIB=y | |||
| 579 | # CONFIG_SMSC_PHY is not set | 606 | # CONFIG_SMSC_PHY is not set |
| 580 | # CONFIG_BROADCOM_PHY is not set | 607 | # CONFIG_BROADCOM_PHY is not set |
| 581 | # CONFIG_ICPLUS_PHY is not set | 608 | # CONFIG_ICPLUS_PHY is not set |
| 609 | # CONFIG_REALTEK_PHY is not set | ||
| 582 | # CONFIG_FIXED_PHY is not set | 610 | # CONFIG_FIXED_PHY is not set |
| 583 | # CONFIG_MDIO_BITBANG is not set | 611 | # CONFIG_MDIO_BITBANG is not set |
| 584 | CONFIG_NET_ETHERNET=y | 612 | CONFIG_NET_ETHERNET=y |
| @@ -591,11 +619,14 @@ CONFIG_BFIN_MAC_RMII=y | |||
| 591 | # CONFIG_SMC91X is not set | 619 | # CONFIG_SMC91X is not set |
| 592 | # CONFIG_SMSC911X is not set | 620 | # CONFIG_SMSC911X is not set |
| 593 | # CONFIG_DM9000 is not set | 621 | # CONFIG_DM9000 is not set |
| 622 | # CONFIG_ENC28J60 is not set | ||
| 594 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 623 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 595 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 624 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 596 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 625 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| 597 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 626 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
| 598 | # CONFIG_B44 is not set | 627 | # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set |
| 628 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set | ||
| 629 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | ||
| 599 | # CONFIG_NETDEV_1000 is not set | 630 | # CONFIG_NETDEV_1000 is not set |
| 600 | # CONFIG_NETDEV_10000 is not set | 631 | # CONFIG_NETDEV_10000 is not set |
| 601 | 632 | ||
| @@ -604,6 +635,7 @@ CONFIG_BFIN_MAC_RMII=y | |||
| 604 | # | 635 | # |
| 605 | # CONFIG_WLAN_PRE80211 is not set | 636 | # CONFIG_WLAN_PRE80211 is not set |
| 606 | # CONFIG_WLAN_80211 is not set | 637 | # CONFIG_WLAN_80211 is not set |
| 638 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 607 | 639 | ||
| 608 | # | 640 | # |
| 609 | # USB Network Adapters | 641 | # USB Network Adapters |
| @@ -616,7 +648,6 @@ CONFIG_BFIN_MAC_RMII=y | |||
| 616 | # CONFIG_WAN is not set | 648 | # CONFIG_WAN is not set |
| 617 | # CONFIG_PPP is not set | 649 | # CONFIG_PPP is not set |
| 618 | # CONFIG_SLIP is not set | 650 | # CONFIG_SLIP is not set |
| 619 | # CONFIG_SHAPER is not set | ||
| 620 | # CONFIG_NETCONSOLE is not set | 651 | # CONFIG_NETCONSOLE is not set |
| 621 | # CONFIG_NETPOLL is not set | 652 | # CONFIG_NETPOLL is not set |
| 622 | # CONFIG_NET_POLL_CONTROLLER is not set | 653 | # CONFIG_NET_POLL_CONTROLLER is not set |
| @@ -642,14 +673,15 @@ CONFIG_BFIN_MAC_RMII=y | |||
| 642 | # CONFIG_BF5xx_PPIFCD is not set | 673 | # CONFIG_BF5xx_PPIFCD is not set |
| 643 | # CONFIG_BFIN_SIMPLE_TIMER is not set | 674 | # CONFIG_BFIN_SIMPLE_TIMER is not set |
| 644 | # CONFIG_BF5xx_PPI is not set | 675 | # CONFIG_BF5xx_PPI is not set |
| 645 | CONFIG_BFIN_OTP=y | 676 | # CONFIG_BF5xx_EPPI is not set |
| 646 | # CONFIG_BFIN_OTP_WRITE_ENABLE is not set | ||
| 647 | # CONFIG_BFIN_SPORT is not set | 677 | # CONFIG_BFIN_SPORT is not set |
| 648 | # CONFIG_BFIN_TIMER_LATENCY is not set | 678 | # CONFIG_BFIN_TIMER_LATENCY is not set |
| 649 | # CONFIG_TWI_LCD is not set | 679 | # CONFIG_TWI_LCD is not set |
| 680 | CONFIG_BFIN_DMA_INTERFACE=m | ||
| 650 | CONFIG_SIMPLE_GPIO=m | 681 | CONFIG_SIMPLE_GPIO=m |
| 651 | # CONFIG_VT is not set | 682 | # CONFIG_VT is not set |
| 652 | # CONFIG_DEVKMEM is not set | 683 | # CONFIG_DEVKMEM is not set |
| 684 | # CONFIG_BFIN_JTAG_COMM is not set | ||
| 653 | # CONFIG_SERIAL_NONSTANDARD is not set | 685 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 654 | 686 | ||
| 655 | # | 687 | # |
| @@ -673,6 +705,8 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
| 673 | # CONFIG_SERIAL_BFIN_SPORT is not set | 705 | # CONFIG_SERIAL_BFIN_SPORT is not set |
| 674 | CONFIG_UNIX98_PTYS=y | 706 | CONFIG_UNIX98_PTYS=y |
| 675 | # CONFIG_LEGACY_PTYS is not set | 707 | # CONFIG_LEGACY_PTYS is not set |
| 708 | CONFIG_BFIN_OTP=y | ||
| 709 | # CONFIG_BFIN_OTP_WRITE_ENABLE is not set | ||
| 676 | 710 | ||
| 677 | # | 711 | # |
| 678 | # CAN, the car bus and industrial fieldbus | 712 | # CAN, the car bus and industrial fieldbus |
| @@ -680,44 +714,49 @@ CONFIG_UNIX98_PTYS=y | |||
| 680 | # CONFIG_CAN4LINUX is not set | 714 | # CONFIG_CAN4LINUX is not set |
| 681 | # CONFIG_IPMI_HANDLER is not set | 715 | # CONFIG_IPMI_HANDLER is not set |
| 682 | # CONFIG_HW_RANDOM is not set | 716 | # CONFIG_HW_RANDOM is not set |
| 683 | # CONFIG_GEN_RTC is not set | ||
| 684 | # CONFIG_R3964 is not set | 717 | # CONFIG_R3964 is not set |
| 685 | # CONFIG_RAW_DRIVER is not set | 718 | # CONFIG_RAW_DRIVER is not set |
| 686 | # CONFIG_TCG_TPM is not set | 719 | # CONFIG_TCG_TPM is not set |
| 687 | CONFIG_I2C=y | 720 | CONFIG_I2C=y |
| 688 | CONFIG_I2C_BOARDINFO=y | 721 | CONFIG_I2C_BOARDINFO=y |
| 689 | CONFIG_I2C_CHARDEV=m | 722 | CONFIG_I2C_CHARDEV=m |
| 723 | CONFIG_I2C_HELPER_AUTO=y | ||
| 690 | 724 | ||
| 691 | # | 725 | # |
| 692 | # I2C Algorithms | 726 | # I2C Hardware Bus support |
| 693 | # | 727 | # |
| 694 | # CONFIG_I2C_ALGOBIT is not set | ||
| 695 | # CONFIG_I2C_ALGOPCF is not set | ||
| 696 | # CONFIG_I2C_ALGOPCA is not set | ||
| 697 | 728 | ||
| 698 | # | 729 | # |
| 699 | # I2C Hardware Bus support | 730 | # I2C system bus drivers (mostly embedded / system-on-chip) |
| 700 | # | 731 | # |
| 701 | CONFIG_I2C_BLACKFIN_TWI=m | 732 | CONFIG_I2C_BLACKFIN_TWI=m |
| 702 | CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ=100 | 733 | CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ=100 |
| 703 | # CONFIG_I2C_GPIO is not set | 734 | # CONFIG_I2C_GPIO is not set |
| 704 | # CONFIG_I2C_OCORES is not set | 735 | # CONFIG_I2C_OCORES is not set |
| 705 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 706 | # CONFIG_I2C_SIMTEC is not set | 736 | # CONFIG_I2C_SIMTEC is not set |
| 737 | |||
| 738 | # | ||
| 739 | # External I2C/SMBus adapter drivers | ||
| 740 | # | ||
| 741 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 707 | # CONFIG_I2C_TAOS_EVM is not set | 742 | # CONFIG_I2C_TAOS_EVM is not set |
| 708 | # CONFIG_I2C_STUB is not set | ||
| 709 | # CONFIG_I2C_TINY_USB is not set | 743 | # CONFIG_I2C_TINY_USB is not set |
| 710 | 744 | ||
| 711 | # | 745 | # |
| 746 | # Other I2C/SMBus bus drivers | ||
| 747 | # | ||
| 748 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 749 | # CONFIG_I2C_STUB is not set | ||
| 750 | |||
| 751 | # | ||
| 712 | # Miscellaneous I2C Chip support | 752 | # Miscellaneous I2C Chip support |
| 713 | # | 753 | # |
| 714 | # CONFIG_SENSORS_DS1337 is not set | ||
| 715 | # CONFIG_SENSORS_DS1374 is not set | ||
| 716 | # CONFIG_DS1682 is not set | 754 | # CONFIG_DS1682 is not set |
| 755 | # CONFIG_AT24 is not set | ||
| 717 | # CONFIG_SENSORS_AD5252 is not set | 756 | # CONFIG_SENSORS_AD5252 is not set |
| 718 | # CONFIG_EEPROM_LEGACY is not set | 757 | # CONFIG_SENSORS_EEPROM is not set |
| 719 | # CONFIG_SENSORS_PCF8574 is not set | 758 | # CONFIG_SENSORS_PCF8574 is not set |
| 720 | # CONFIG_SENSORS_PCF8575 is not set | 759 | # CONFIG_PCF8575 is not set |
| 721 | # CONFIG_SENSORS_PCA9539 is not set | 760 | # CONFIG_SENSORS_PCA9539 is not set |
| 722 | # CONFIG_SENSORS_PCF8591 is not set | 761 | # CONFIG_SENSORS_PCF8591 is not set |
| 723 | # CONFIG_SENSORS_MAX6875 is not set | 762 | # CONFIG_SENSORS_MAX6875 is not set |
| @@ -726,37 +765,41 @@ CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ=100 | |||
| 726 | # CONFIG_I2C_DEBUG_ALGO is not set | 765 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 727 | # CONFIG_I2C_DEBUG_BUS is not set | 766 | # CONFIG_I2C_DEBUG_BUS is not set |
| 728 | # CONFIG_I2C_DEBUG_CHIP is not set | 767 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 729 | |||
| 730 | # | ||
| 731 | # SPI support | ||
| 732 | # | ||
| 733 | CONFIG_SPI=y | 768 | CONFIG_SPI=y |
| 769 | # CONFIG_SPI_DEBUG is not set | ||
| 734 | CONFIG_SPI_MASTER=y | 770 | CONFIG_SPI_MASTER=y |
| 735 | 771 | ||
| 736 | # | 772 | # |
| 737 | # SPI Master Controller Drivers | 773 | # SPI Master Controller Drivers |
| 738 | # | 774 | # |
| 739 | CONFIG_SPI_BFIN=y | 775 | CONFIG_SPI_BFIN=y |
| 776 | # CONFIG_SPI_BFIN_LOCK is not set | ||
| 740 | # CONFIG_SPI_BITBANG is not set | 777 | # CONFIG_SPI_BITBANG is not set |
| 741 | 778 | ||
| 742 | # | 779 | # |
| 743 | # SPI Protocol Masters | 780 | # SPI Protocol Masters |
| 744 | # | 781 | # |
| 745 | # CONFIG_EEPROM_AT25 is not set | 782 | # CONFIG_SPI_AT25 is not set |
| 746 | # CONFIG_SPI_SPIDEV is not set | 783 | # CONFIG_SPI_SPIDEV is not set |
| 747 | # CONFIG_SPI_TLE62X0 is not set | 784 | # CONFIG_SPI_TLE62X0 is not set |
| 785 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 786 | # CONFIG_GPIOLIB is not set | ||
| 748 | # CONFIG_W1 is not set | 787 | # CONFIG_W1 is not set |
| 749 | # CONFIG_POWER_SUPPLY is not set | 788 | # CONFIG_POWER_SUPPLY is not set |
| 750 | CONFIG_HWMON=y | 789 | CONFIG_HWMON=y |
| 751 | # CONFIG_HWMON_VID is not set | 790 | # CONFIG_HWMON_VID is not set |
| 791 | # CONFIG_SENSORS_AD7414 is not set | ||
| 752 | # CONFIG_SENSORS_AD7418 is not set | 792 | # CONFIG_SENSORS_AD7418 is not set |
| 793 | # CONFIG_SENSORS_ADCXX is not set | ||
| 753 | # CONFIG_SENSORS_ADM1021 is not set | 794 | # CONFIG_SENSORS_ADM1021 is not set |
| 754 | # CONFIG_SENSORS_ADM1025 is not set | 795 | # CONFIG_SENSORS_ADM1025 is not set |
| 755 | # CONFIG_SENSORS_ADM1026 is not set | 796 | # CONFIG_SENSORS_ADM1026 is not set |
| 756 | # CONFIG_SENSORS_ADM1029 is not set | 797 | # CONFIG_SENSORS_ADM1029 is not set |
| 757 | # CONFIG_SENSORS_ADM1031 is not set | 798 | # CONFIG_SENSORS_ADM1031 is not set |
| 758 | # CONFIG_SENSORS_ADM9240 is not set | 799 | # CONFIG_SENSORS_ADM9240 is not set |
| 800 | # CONFIG_SENSORS_ADT7462 is not set | ||
| 759 | # CONFIG_SENSORS_ADT7470 is not set | 801 | # CONFIG_SENSORS_ADT7470 is not set |
| 802 | # CONFIG_SENSORS_ADT7473 is not set | ||
| 760 | # CONFIG_SENSORS_ATXP1 is not set | 803 | # CONFIG_SENSORS_ATXP1 is not set |
| 761 | # CONFIG_SENSORS_DS1621 is not set | 804 | # CONFIG_SENSORS_DS1621 is not set |
| 762 | # CONFIG_SENSORS_F71805F is not set | 805 | # CONFIG_SENSORS_F71805F is not set |
| @@ -777,6 +820,7 @@ CONFIG_HWMON=y | |||
| 777 | # CONFIG_SENSORS_LM90 is not set | 820 | # CONFIG_SENSORS_LM90 is not set |
| 778 | # CONFIG_SENSORS_LM92 is not set | 821 | # CONFIG_SENSORS_LM92 is not set |
| 779 | # CONFIG_SENSORS_LM93 is not set | 822 | # CONFIG_SENSORS_LM93 is not set |
| 823 | # CONFIG_SENSORS_MAX1111 is not set | ||
| 780 | # CONFIG_SENSORS_MAX1619 is not set | 824 | # CONFIG_SENSORS_MAX1619 is not set |
| 781 | # CONFIG_SENSORS_MAX6650 is not set | 825 | # CONFIG_SENSORS_MAX6650 is not set |
| 782 | # CONFIG_SENSORS_PC87360 is not set | 826 | # CONFIG_SENSORS_PC87360 is not set |
| @@ -785,6 +829,7 @@ CONFIG_HWMON=y | |||
| 785 | # CONFIG_SENSORS_SMSC47M1 is not set | 829 | # CONFIG_SENSORS_SMSC47M1 is not set |
| 786 | # CONFIG_SENSORS_SMSC47M192 is not set | 830 | # CONFIG_SENSORS_SMSC47M192 is not set |
| 787 | # CONFIG_SENSORS_SMSC47B397 is not set | 831 | # CONFIG_SENSORS_SMSC47B397 is not set |
| 832 | # CONFIG_SENSORS_ADS7828 is not set | ||
| 788 | # CONFIG_SENSORS_THMC50 is not set | 833 | # CONFIG_SENSORS_THMC50 is not set |
| 789 | # CONFIG_SENSORS_VT1211 is not set | 834 | # CONFIG_SENSORS_VT1211 is not set |
| 790 | # CONFIG_SENSORS_W83781D is not set | 835 | # CONFIG_SENSORS_W83781D is not set |
| @@ -792,9 +837,12 @@ CONFIG_HWMON=y | |||
| 792 | # CONFIG_SENSORS_W83792D is not set | 837 | # CONFIG_SENSORS_W83792D is not set |
| 793 | # CONFIG_SENSORS_W83793 is not set | 838 | # CONFIG_SENSORS_W83793 is not set |
| 794 | # CONFIG_SENSORS_W83L785TS is not set | 839 | # CONFIG_SENSORS_W83L785TS is not set |
| 840 | # CONFIG_SENSORS_W83L786NG is not set | ||
| 795 | # CONFIG_SENSORS_W83627HF is not set | 841 | # CONFIG_SENSORS_W83627HF is not set |
| 796 | # CONFIG_SENSORS_W83627EHF is not set | 842 | # CONFIG_SENSORS_W83627EHF is not set |
| 797 | # CONFIG_HWMON_DEBUG_CHIP is not set | 843 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 844 | # CONFIG_THERMAL is not set | ||
| 845 | # CONFIG_THERMAL_HWMON is not set | ||
| 798 | CONFIG_WATCHDOG=y | 846 | CONFIG_WATCHDOG=y |
| 799 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 847 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 800 | 848 | ||
| @@ -810,21 +858,31 @@ CONFIG_BFIN_WDT=y | |||
| 810 | # CONFIG_USBPCWATCHDOG is not set | 858 | # CONFIG_USBPCWATCHDOG is not set |
| 811 | 859 | ||
| 812 | # | 860 | # |
| 813 | # Sonics Silicon Backplane | ||
| 814 | # | ||
| 815 | CONFIG_SSB_POSSIBLE=y | ||
| 816 | # CONFIG_SSB is not set | ||
| 817 | |||
| 818 | # | ||
| 819 | # Multifunction device drivers | 861 | # Multifunction device drivers |
| 820 | # | 862 | # |
| 863 | # CONFIG_MFD_CORE is not set | ||
| 821 | # CONFIG_MFD_SM501 is not set | 864 | # CONFIG_MFD_SM501 is not set |
| 865 | # CONFIG_HTC_PASIC3 is not set | ||
| 866 | # CONFIG_MFD_TMIO is not set | ||
| 867 | # CONFIG_PMIC_DA903X is not set | ||
| 868 | # CONFIG_MFD_WM8400 is not set | ||
| 869 | # CONFIG_MFD_WM8350_I2C is not set | ||
| 870 | # CONFIG_REGULATOR is not set | ||
| 822 | 871 | ||
| 823 | # | 872 | # |
| 824 | # Multimedia devices | 873 | # Multimedia devices |
| 825 | # | 874 | # |
| 875 | |||
| 876 | # | ||
| 877 | # Multimedia core support | ||
| 878 | # | ||
| 826 | # CONFIG_VIDEO_DEV is not set | 879 | # CONFIG_VIDEO_DEV is not set |
| 827 | # CONFIG_DVB_CORE is not set | 880 | # CONFIG_DVB_CORE is not set |
| 881 | # CONFIG_VIDEO_MEDIA is not set | ||
| 882 | |||
| 883 | # | ||
| 884 | # Multimedia drivers | ||
| 885 | # | ||
| 828 | # CONFIG_DAB is not set | 886 | # CONFIG_DAB is not set |
| 829 | 887 | ||
| 830 | # | 888 | # |
| @@ -839,10 +897,6 @@ CONFIG_SSB_POSSIBLE=y | |||
| 839 | # Display device support | 897 | # Display device support |
| 840 | # | 898 | # |
| 841 | # CONFIG_DISPLAY_SUPPORT is not set | 899 | # CONFIG_DISPLAY_SUPPORT is not set |
| 842 | |||
| 843 | # | ||
| 844 | # Sound | ||
| 845 | # | ||
| 846 | # CONFIG_SOUND is not set | 900 | # CONFIG_SOUND is not set |
| 847 | CONFIG_USB_SUPPORT=y | 901 | CONFIG_USB_SUPPORT=y |
| 848 | CONFIG_USB_ARCH_HAS_HCD=y | 902 | CONFIG_USB_ARCH_HAS_HCD=y |
| @@ -850,6 +904,7 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 850 | # CONFIG_USB_ARCH_HAS_EHCI is not set | 904 | # CONFIG_USB_ARCH_HAS_EHCI is not set |
| 851 | CONFIG_USB=y | 905 | CONFIG_USB=y |
| 852 | # CONFIG_USB_DEBUG is not set | 906 | # CONFIG_USB_DEBUG is not set |
| 907 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
| 853 | 908 | ||
| 854 | # | 909 | # |
| 855 | # Miscellaneous USB options | 910 | # Miscellaneous USB options |
| @@ -860,40 +915,48 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 860 | # CONFIG_USB_OTG is not set | 915 | # CONFIG_USB_OTG is not set |
| 861 | # CONFIG_USB_OTG_WHITELIST is not set | 916 | # CONFIG_USB_OTG_WHITELIST is not set |
| 862 | CONFIG_USB_OTG_BLACKLIST_HUB=y | 917 | CONFIG_USB_OTG_BLACKLIST_HUB=y |
| 918 | CONFIG_USB_MON=y | ||
| 919 | # CONFIG_USB_WUSB is not set | ||
| 920 | # CONFIG_USB_WUSB_CBAF is not set | ||
| 863 | 921 | ||
| 864 | # | 922 | # |
| 865 | # USB Host Controller Drivers | 923 | # USB Host Controller Drivers |
| 866 | # | 924 | # |
| 925 | # CONFIG_USB_C67X00_HCD is not set | ||
| 867 | # CONFIG_USB_ISP116X_HCD is not set | 926 | # CONFIG_USB_ISP116X_HCD is not set |
| 868 | # CONFIG_USB_ISP1362_HCD is not set | ||
| 869 | # CONFIG_USB_ISP1760_HCD is not set | 927 | # CONFIG_USB_ISP1760_HCD is not set |
| 928 | # CONFIG_USB_ISP1362_HCD is not set | ||
| 870 | # CONFIG_USB_SL811_HCD is not set | 929 | # CONFIG_USB_SL811_HCD is not set |
| 871 | # CONFIG_USB_R8A66597_HCD is not set | 930 | # CONFIG_USB_R8A66597_HCD is not set |
| 931 | # CONFIG_USB_HWA_HCD is not set | ||
| 872 | CONFIG_USB_MUSB_HDRC=y | 932 | CONFIG_USB_MUSB_HDRC=y |
| 873 | CONFIG_USB_MUSB_SOC=y | 933 | CONFIG_USB_MUSB_SOC=y |
| 874 | 934 | ||
| 875 | # | 935 | # |
| 876 | # Blackfin high speed USB support | 936 | # Blackfin high speed USB Support |
| 877 | # | 937 | # |
| 878 | CONFIG_USB_MUSB_HOST=y | 938 | CONFIG_USB_MUSB_HOST=y |
| 879 | # CONFIG_USB_MUSB_PERIPHERAL is not set | 939 | # CONFIG_USB_MUSB_PERIPHERAL is not set |
| 880 | # CONFIG_USB_MUSB_OTG is not set | 940 | # CONFIG_USB_MUSB_OTG is not set |
| 881 | CONFIG_USB_MUSB_HDRC_HCD=y | 941 | CONFIG_USB_MUSB_HDRC_HCD=y |
| 882 | CONFIG_MUSB_PIO_ONLY=y | 942 | CONFIG_MUSB_PIO_ONLY=y |
| 883 | CONFIG_USB_MUSB_LOGLEVEL=0 | 943 | CONFIG_MUSB_DMA_POLL=y |
| 944 | # CONFIG_USB_MUSB_DEBUG is not set | ||
| 884 | 945 | ||
| 885 | # | 946 | # |
| 886 | # USB Device Class drivers | 947 | # USB Device Class drivers |
| 887 | # | 948 | # |
| 888 | # CONFIG_USB_ACM is not set | 949 | # CONFIG_USB_ACM is not set |
| 889 | # CONFIG_USB_PRINTER is not set | 950 | # CONFIG_USB_PRINTER is not set |
| 951 | # CONFIG_USB_WDM is not set | ||
| 952 | # CONFIG_USB_TMC is not set | ||
| 890 | 953 | ||
| 891 | # | 954 | # |
| 892 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 955 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
| 893 | # | 956 | # |
| 894 | 957 | ||
| 895 | # | 958 | # |
| 896 | # may also be needed; see USB_STORAGE Help for more information | 959 | # see USB_STORAGE Help for more information |
| 897 | # | 960 | # |
| 898 | # CONFIG_USB_LIBUSUAL is not set | 961 | # CONFIG_USB_LIBUSUAL is not set |
| 899 | 962 | ||
| @@ -901,15 +964,10 @@ CONFIG_USB_MUSB_LOGLEVEL=0 | |||
| 901 | # USB Imaging devices | 964 | # USB Imaging devices |
| 902 | # | 965 | # |
| 903 | # CONFIG_USB_MDC800 is not set | 966 | # CONFIG_USB_MDC800 is not set |
| 904 | CONFIG_USB_MON=y | ||
| 905 | 967 | ||
| 906 | # | 968 | # |
| 907 | # USB port drivers | 969 | # USB port drivers |
| 908 | # | 970 | # |
| 909 | |||
| 910 | # | ||
| 911 | # USB Serial Converter support | ||
| 912 | # | ||
| 913 | # CONFIG_USB_SERIAL is not set | 971 | # CONFIG_USB_SERIAL is not set |
| 914 | 972 | ||
| 915 | # | 973 | # |
| @@ -918,7 +976,7 @@ CONFIG_USB_MON=y | |||
| 918 | # CONFIG_USB_EMI62 is not set | 976 | # CONFIG_USB_EMI62 is not set |
| 919 | # CONFIG_USB_EMI26 is not set | 977 | # CONFIG_USB_EMI26 is not set |
| 920 | # CONFIG_USB_ADUTUX is not set | 978 | # CONFIG_USB_ADUTUX is not set |
| 921 | # CONFIG_USB_AUERSWALD is not set | 979 | # CONFIG_USB_SEVSEG is not set |
| 922 | # CONFIG_USB_RIO500 is not set | 980 | # CONFIG_USB_RIO500 is not set |
| 923 | # CONFIG_USB_LEGOTOWER is not set | 981 | # CONFIG_USB_LEGOTOWER is not set |
| 924 | # CONFIG_USB_LCD is not set | 982 | # CONFIG_USB_LCD is not set |
| @@ -934,17 +992,13 @@ CONFIG_USB_MON=y | |||
| 934 | # CONFIG_USB_LD is not set | 992 | # CONFIG_USB_LD is not set |
| 935 | # CONFIG_USB_TRANCEVIBRATOR is not set | 993 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 936 | # CONFIG_USB_IOWARRIOR is not set | 994 | # CONFIG_USB_IOWARRIOR is not set |
| 937 | 995 | # CONFIG_USB_ISIGHTFW is not set | |
| 938 | # | 996 | # CONFIG_USB_VST is not set |
| 939 | # USB DSL modem support | ||
| 940 | # | ||
| 941 | |||
| 942 | # | ||
| 943 | # USB Gadget Support | ||
| 944 | # | ||
| 945 | # CONFIG_USB_GADGET is not set | 997 | # CONFIG_USB_GADGET is not set |
| 946 | # CONFIG_MMC is not set | 998 | # CONFIG_MMC is not set |
| 999 | # CONFIG_MEMSTICK is not set | ||
| 947 | # CONFIG_NEW_LEDS is not set | 1000 | # CONFIG_NEW_LEDS is not set |
| 1001 | # CONFIG_ACCESSIBILITY is not set | ||
| 948 | CONFIG_RTC_LIB=y | 1002 | CONFIG_RTC_LIB=y |
| 949 | CONFIG_RTC_CLASS=y | 1003 | CONFIG_RTC_CLASS=y |
| 950 | CONFIG_RTC_HCTOSYS=y | 1004 | CONFIG_RTC_HCTOSYS=y |
| @@ -973,51 +1027,59 @@ CONFIG_RTC_INTF_DEV=y | |||
| 973 | # CONFIG_RTC_DRV_PCF8563 is not set | 1027 | # CONFIG_RTC_DRV_PCF8563 is not set |
| 974 | # CONFIG_RTC_DRV_PCF8583 is not set | 1028 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 975 | # CONFIG_RTC_DRV_M41T80 is not set | 1029 | # CONFIG_RTC_DRV_M41T80 is not set |
| 1030 | # CONFIG_RTC_DRV_S35390A is not set | ||
| 1031 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 1032 | # CONFIG_RTC_DRV_RX8581 is not set | ||
| 976 | 1033 | ||
| 977 | # | 1034 | # |
| 978 | # SPI RTC drivers | 1035 | # SPI RTC drivers |
| 979 | # | 1036 | # |
| 980 | # CONFIG_RTC_DRV_RS5C348 is not set | 1037 | # CONFIG_RTC_DRV_M41T94 is not set |
| 1038 | # CONFIG_RTC_DRV_DS1305 is not set | ||
| 1039 | # CONFIG_RTC_DRV_DS1390 is not set | ||
| 981 | # CONFIG_RTC_DRV_MAX6902 is not set | 1040 | # CONFIG_RTC_DRV_MAX6902 is not set |
| 1041 | # CONFIG_RTC_DRV_R9701 is not set | ||
| 1042 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
| 1043 | # CONFIG_RTC_DRV_DS3234 is not set | ||
| 982 | 1044 | ||
| 983 | # | 1045 | # |
| 984 | # Platform RTC drivers | 1046 | # Platform RTC drivers |
| 985 | # | 1047 | # |
| 1048 | # CONFIG_RTC_DRV_DS1286 is not set | ||
| 1049 | # CONFIG_RTC_DRV_DS1511 is not set | ||
| 986 | # CONFIG_RTC_DRV_DS1553 is not set | 1050 | # CONFIG_RTC_DRV_DS1553 is not set |
| 987 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
| 988 | # CONFIG_RTC_DRV_DS1742 is not set | 1051 | # CONFIG_RTC_DRV_DS1742 is not set |
| 1052 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
| 989 | # CONFIG_RTC_DRV_M48T86 is not set | 1053 | # CONFIG_RTC_DRV_M48T86 is not set |
| 1054 | # CONFIG_RTC_DRV_M48T35 is not set | ||
| 990 | # CONFIG_RTC_DRV_M48T59 is not set | 1055 | # CONFIG_RTC_DRV_M48T59 is not set |
| 1056 | # CONFIG_RTC_DRV_BQ4802 is not set | ||
| 991 | # CONFIG_RTC_DRV_V3020 is not set | 1057 | # CONFIG_RTC_DRV_V3020 is not set |
| 992 | 1058 | ||
| 993 | # | 1059 | # |
| 994 | # on-CPU RTC drivers | 1060 | # on-CPU RTC drivers |
| 995 | # | 1061 | # |
| 996 | CONFIG_RTC_DRV_BFIN=y | 1062 | CONFIG_RTC_DRV_BFIN=y |
| 997 | 1063 | # CONFIG_DMADEVICES is not set | |
| 998 | # | ||
| 999 | # Userspace I/O | ||
| 1000 | # | ||
| 1001 | # CONFIG_UIO is not set | 1064 | # CONFIG_UIO is not set |
| 1065 | # CONFIG_STAGING is not set | ||
| 1002 | 1066 | ||
| 1003 | # | 1067 | # |
| 1004 | # File systems | 1068 | # File systems |
| 1005 | # | 1069 | # |
| 1006 | # CONFIG_EXT2_FS is not set | 1070 | # CONFIG_EXT2_FS is not set |
| 1007 | # CONFIG_EXT3_FS is not set | 1071 | # CONFIG_EXT3_FS is not set |
| 1008 | # CONFIG_EXT4DEV_FS is not set | 1072 | # CONFIG_EXT4_FS is not set |
| 1009 | # CONFIG_REISERFS_FS is not set | 1073 | # CONFIG_REISERFS_FS is not set |
| 1010 | # CONFIG_JFS_FS is not set | 1074 | # CONFIG_JFS_FS is not set |
| 1011 | # CONFIG_FS_POSIX_ACL is not set | 1075 | # CONFIG_FS_POSIX_ACL is not set |
| 1076 | CONFIG_FILE_LOCKING=y | ||
| 1012 | # CONFIG_XFS_FS is not set | 1077 | # CONFIG_XFS_FS is not set |
| 1013 | # CONFIG_GFS2_FS is not set | ||
| 1014 | # CONFIG_OCFS2_FS is not set | 1078 | # CONFIG_OCFS2_FS is not set |
| 1015 | # CONFIG_MINIX_FS is not set | 1079 | # CONFIG_DNOTIFY is not set |
| 1016 | # CONFIG_ROMFS_FS is not set | ||
| 1017 | CONFIG_INOTIFY=y | 1080 | CONFIG_INOTIFY=y |
| 1018 | CONFIG_INOTIFY_USER=y | 1081 | CONFIG_INOTIFY_USER=y |
| 1019 | # CONFIG_QUOTA is not set | 1082 | # CONFIG_QUOTA is not set |
| 1020 | # CONFIG_DNOTIFY is not set | ||
| 1021 | # CONFIG_AUTOFS_FS is not set | 1083 | # CONFIG_AUTOFS_FS is not set |
| 1022 | # CONFIG_AUTOFS4_FS is not set | 1084 | # CONFIG_AUTOFS4_FS is not set |
| 1023 | # CONFIG_FUSE_FS is not set | 1085 | # CONFIG_FUSE_FS is not set |
| @@ -1059,8 +1121,11 @@ CONFIG_SYSFS=y | |||
| 1059 | # CONFIG_JFFS2_FS is not set | 1121 | # CONFIG_JFFS2_FS is not set |
| 1060 | # CONFIG_CRAMFS is not set | 1122 | # CONFIG_CRAMFS is not set |
| 1061 | # CONFIG_VXFS_FS is not set | 1123 | # CONFIG_VXFS_FS is not set |
| 1124 | # CONFIG_MINIX_FS is not set | ||
| 1125 | # CONFIG_OMFS_FS is not set | ||
| 1062 | # CONFIG_HPFS_FS is not set | 1126 | # CONFIG_HPFS_FS is not set |
| 1063 | # CONFIG_QNX4FS_FS is not set | 1127 | # CONFIG_QNX4FS_FS is not set |
| 1128 | # CONFIG_ROMFS_FS is not set | ||
| 1064 | # CONFIG_SYSV_FS is not set | 1129 | # CONFIG_SYSV_FS is not set |
| 1065 | # CONFIG_UFS_FS is not set | 1130 | # CONFIG_UFS_FS is not set |
| 1066 | CONFIG_NETWORK_FILESYSTEMS=y | 1131 | CONFIG_NETWORK_FILESYSTEMS=y |
| @@ -1068,13 +1133,12 @@ CONFIG_NFS_FS=m | |||
| 1068 | CONFIG_NFS_V3=y | 1133 | CONFIG_NFS_V3=y |
| 1069 | # CONFIG_NFS_V3_ACL is not set | 1134 | # CONFIG_NFS_V3_ACL is not set |
| 1070 | # CONFIG_NFS_V4 is not set | 1135 | # CONFIG_NFS_V4 is not set |
| 1071 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1072 | # CONFIG_NFSD is not set | 1136 | # CONFIG_NFSD is not set |
| 1073 | CONFIG_LOCKD=m | 1137 | CONFIG_LOCKD=m |
| 1074 | CONFIG_LOCKD_V4=y | 1138 | CONFIG_LOCKD_V4=y |
| 1075 | CONFIG_NFS_COMMON=y | 1139 | CONFIG_NFS_COMMON=y |
| 1076 | CONFIG_SUNRPC=m | 1140 | CONFIG_SUNRPC=m |
| 1077 | # CONFIG_SUNRPC_BIND34 is not set | 1141 | # CONFIG_SUNRPC_REGISTER_V4 is not set |
| 1078 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1142 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1079 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1143 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1080 | CONFIG_SMB_FS=m | 1144 | CONFIG_SMB_FS=m |
| @@ -1130,7 +1194,6 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
| 1130 | # CONFIG_NLS_KOI8_U is not set | 1194 | # CONFIG_NLS_KOI8_U is not set |
| 1131 | # CONFIG_NLS_UTF8 is not set | 1195 | # CONFIG_NLS_UTF8 is not set |
| 1132 | # CONFIG_DLM is not set | 1196 | # CONFIG_DLM is not set |
| 1133 | # CONFIG_INSTRUMENTATION is not set | ||
| 1134 | 1197 | ||
| 1135 | # | 1198 | # |
| 1136 | # Kernel hacking | 1199 | # Kernel hacking |
| @@ -1138,14 +1201,61 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
| 1138 | # CONFIG_PRINTK_TIME is not set | 1201 | # CONFIG_PRINTK_TIME is not set |
| 1139 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1202 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1140 | CONFIG_ENABLE_MUST_CHECK=y | 1203 | CONFIG_ENABLE_MUST_CHECK=y |
| 1204 | CONFIG_FRAME_WARN=1024 | ||
| 1141 | # CONFIG_MAGIC_SYSRQ is not set | 1205 | # CONFIG_MAGIC_SYSRQ is not set |
| 1142 | # CONFIG_UNUSED_SYMBOLS is not set | 1206 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1143 | CONFIG_DEBUG_FS=y | 1207 | CONFIG_DEBUG_FS=y |
| 1144 | # CONFIG_HEADERS_CHECK is not set | 1208 | # CONFIG_HEADERS_CHECK is not set |
| 1145 | # CONFIG_DEBUG_KERNEL is not set | 1209 | CONFIG_DEBUG_KERNEL=y |
| 1210 | # CONFIG_DEBUG_SHIRQ is not set | ||
| 1211 | CONFIG_DETECT_SOFTLOCKUP=y | ||
| 1212 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1213 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1214 | # CONFIG_SCHED_DEBUG is not set | ||
| 1215 | # CONFIG_SCHEDSTATS is not set | ||
| 1216 | # CONFIG_TIMER_STATS is not set | ||
| 1217 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 1218 | # CONFIG_DEBUG_SLAB is not set | ||
| 1219 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
| 1220 | # CONFIG_RT_MUTEX_TESTER is not set | ||
| 1221 | # CONFIG_DEBUG_SPINLOCK is not set | ||
| 1222 | # CONFIG_DEBUG_MUTEXES is not set | ||
| 1223 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
| 1224 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
| 1225 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 1146 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1226 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1227 | # CONFIG_DEBUG_INFO is not set | ||
| 1228 | # CONFIG_DEBUG_VM is not set | ||
| 1229 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 1230 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1231 | # CONFIG_DEBUG_LIST is not set | ||
| 1232 | # CONFIG_DEBUG_SG is not set | ||
| 1233 | # CONFIG_FRAME_POINTER is not set | ||
| 1234 | # CONFIG_BOOT_PRINTK_DELAY is not set | ||
| 1235 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1236 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
| 1237 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
| 1238 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | ||
| 1239 | # CONFIG_FAULT_INJECTION is not set | ||
| 1240 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
| 1241 | |||
| 1242 | # | ||
| 1243 | # Tracers | ||
| 1244 | # | ||
| 1245 | # CONFIG_SCHED_TRACER is not set | ||
| 1246 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1247 | # CONFIG_BOOT_TRACER is not set | ||
| 1248 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 1147 | # CONFIG_SAMPLES is not set | 1249 | # CONFIG_SAMPLES is not set |
| 1250 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1251 | # CONFIG_KGDB is not set | ||
| 1252 | # CONFIG_DEBUG_STACKOVERFLOW is not set | ||
| 1253 | # CONFIG_DEBUG_STACK_USAGE is not set | ||
| 1254 | # CONFIG_KGDB_TESTCASE is not set | ||
| 1255 | CONFIG_DEBUG_VERBOSE=y | ||
| 1148 | CONFIG_DEBUG_MMRS=y | 1256 | CONFIG_DEBUG_MMRS=y |
| 1257 | # CONFIG_DEBUG_HWERR is not set | ||
| 1258 | # CONFIG_DEBUG_DOUBLEFAULT is not set | ||
| 1149 | CONFIG_DEBUG_HUNT_FOR_ZERO=y | 1259 | CONFIG_DEBUG_HUNT_FOR_ZERO=y |
| 1150 | CONFIG_DEBUG_BFIN_HWTRACE_ON=y | 1260 | CONFIG_DEBUG_BFIN_HWTRACE_ON=y |
| 1151 | CONFIG_DEBUG_BFIN_HWTRACE_COMPRESSION_OFF=y | 1261 | CONFIG_DEBUG_BFIN_HWTRACE_COMPRESSION_OFF=y |
| @@ -1154,7 +1264,7 @@ CONFIG_DEBUG_BFIN_HWTRACE_COMPRESSION_OFF=y | |||
| 1154 | CONFIG_DEBUG_BFIN_HWTRACE_COMPRESSION=0 | 1264 | CONFIG_DEBUG_BFIN_HWTRACE_COMPRESSION=0 |
| 1155 | # CONFIG_DEBUG_BFIN_HWTRACE_EXPAND is not set | 1265 | # CONFIG_DEBUG_BFIN_HWTRACE_EXPAND is not set |
| 1156 | # CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE is not set | 1266 | # CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE is not set |
| 1157 | CONFIG_EARLY_PRINTK=y | 1267 | # CONFIG_EARLY_PRINTK is not set |
| 1158 | # CONFIG_CPLB_INFO is not set | 1268 | # CONFIG_CPLB_INFO is not set |
| 1159 | CONFIG_ACCESS_CHECK=y | 1269 | CONFIG_ACCESS_CHECK=y |
| 1160 | 1270 | ||
| @@ -1163,10 +1273,96 @@ CONFIG_ACCESS_CHECK=y | |||
| 1163 | # | 1273 | # |
| 1164 | # CONFIG_KEYS is not set | 1274 | # CONFIG_KEYS is not set |
| 1165 | CONFIG_SECURITY=y | 1275 | CONFIG_SECURITY=y |
| 1276 | # CONFIG_SECURITYFS is not set | ||
| 1166 | # CONFIG_SECURITY_NETWORK is not set | 1277 | # CONFIG_SECURITY_NETWORK is not set |
| 1167 | # CONFIG_SECURITY_CAPABILITIES is not set | 1278 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1168 | # CONFIG_SECURITY_ROOTPLUG is not set | 1279 | # CONFIG_SECURITY_ROOTPLUG is not set |
| 1169 | # CONFIG_CRYPTO is not set | 1280 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 |
| 1281 | CONFIG_CRYPTO=y | ||
| 1282 | |||
| 1283 | # | ||
| 1284 | # Crypto core or helper | ||
| 1285 | # | ||
| 1286 | # CONFIG_CRYPTO_FIPS is not set | ||
| 1287 | # CONFIG_CRYPTO_MANAGER is not set | ||
| 1288 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
| 1289 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1290 | # CONFIG_CRYPTO_NULL is not set | ||
| 1291 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1292 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1293 | # CONFIG_CRYPTO_TEST is not set | ||
| 1294 | |||
| 1295 | # | ||
| 1296 | # Authenticated Encryption with Associated Data | ||
| 1297 | # | ||
| 1298 | # CONFIG_CRYPTO_CCM is not set | ||
| 1299 | # CONFIG_CRYPTO_GCM is not set | ||
| 1300 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1301 | |||
| 1302 | # | ||
| 1303 | # Block modes | ||
| 1304 | # | ||
| 1305 | # CONFIG_CRYPTO_CBC is not set | ||
| 1306 | # CONFIG_CRYPTO_CTR is not set | ||
| 1307 | # CONFIG_CRYPTO_CTS is not set | ||
| 1308 | # CONFIG_CRYPTO_ECB is not set | ||
| 1309 | # CONFIG_CRYPTO_LRW is not set | ||
| 1310 | # CONFIG_CRYPTO_PCBC is not set | ||
| 1311 | # CONFIG_CRYPTO_XTS is not set | ||
| 1312 | |||
| 1313 | # | ||
| 1314 | # Hash modes | ||
| 1315 | # | ||
| 1316 | # CONFIG_CRYPTO_HMAC is not set | ||
| 1317 | # CONFIG_CRYPTO_XCBC is not set | ||
| 1318 | |||
| 1319 | # | ||
| 1320 | # Digest | ||
| 1321 | # | ||
| 1322 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1323 | # CONFIG_CRYPTO_MD4 is not set | ||
| 1324 | # CONFIG_CRYPTO_MD5 is not set | ||
| 1325 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1326 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1327 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1328 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1329 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1330 | # CONFIG_CRYPTO_SHA1 is not set | ||
| 1331 | # CONFIG_CRYPTO_SHA256 is not set | ||
| 1332 | # CONFIG_CRYPTO_SHA512 is not set | ||
| 1333 | # CONFIG_CRYPTO_TGR192 is not set | ||
| 1334 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1335 | |||
| 1336 | # | ||
| 1337 | # Ciphers | ||
| 1338 | # | ||
| 1339 | # CONFIG_CRYPTO_AES is not set | ||
| 1340 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1341 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1342 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1343 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1344 | # CONFIG_CRYPTO_CAST5 is not set | ||
| 1345 | # CONFIG_CRYPTO_CAST6 is not set | ||
| 1346 | # CONFIG_CRYPTO_DES is not set | ||
| 1347 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1348 | # CONFIG_CRYPTO_KHAZAD is not set | ||
| 1349 | # CONFIG_CRYPTO_SALSA20 is not set | ||
| 1350 | # CONFIG_CRYPTO_SEED is not set | ||
| 1351 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1352 | # CONFIG_CRYPTO_TEA is not set | ||
| 1353 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1354 | |||
| 1355 | # | ||
| 1356 | # Compression | ||
| 1357 | # | ||
| 1358 | # CONFIG_CRYPTO_DEFLATE is not set | ||
| 1359 | # CONFIG_CRYPTO_LZO is not set | ||
| 1360 | |||
| 1361 | # | ||
| 1362 | # Random Number Generation | ||
| 1363 | # | ||
| 1364 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | ||
| 1365 | CONFIG_CRYPTO_HW=y | ||
| 1170 | 1366 | ||
| 1171 | # | 1367 | # |
| 1172 | # Library routines | 1368 | # Library routines |
| @@ -1174,6 +1370,7 @@ CONFIG_SECURITY=y | |||
| 1174 | CONFIG_BITREVERSE=y | 1370 | CONFIG_BITREVERSE=y |
| 1175 | CONFIG_CRC_CCITT=m | 1371 | CONFIG_CRC_CCITT=m |
| 1176 | # CONFIG_CRC16 is not set | 1372 | # CONFIG_CRC16 is not set |
| 1373 | # CONFIG_CRC_T10DIF is not set | ||
| 1177 | # CONFIG_CRC_ITU_T is not set | 1374 | # CONFIG_CRC_ITU_T is not set |
| 1178 | CONFIG_CRC32=y | 1375 | CONFIG_CRC32=y |
| 1179 | # CONFIG_CRC7 is not set | 1376 | # CONFIG_CRC7 is not set |
diff --git a/arch/blackfin/include/asm/checksum.h b/arch/blackfin/include/asm/checksum.h index f67289a0d8d2..793581fc9556 100644 --- a/arch/blackfin/include/asm/checksum.h +++ b/arch/blackfin/include/asm/checksum.h | |||
| @@ -63,23 +63,23 @@ static inline __wsum | |||
| 63 | csum_tcpudp_nofold(__be32 saddr, __be32 daddr, unsigned short len, | 63 | csum_tcpudp_nofold(__be32 saddr, __be32 daddr, unsigned short len, |
| 64 | unsigned short proto, __wsum sum) | 64 | unsigned short proto, __wsum sum) |
| 65 | { | 65 | { |
| 66 | 66 | unsigned int carry; | |
| 67 | __asm__ ("%0 = %0 + %1;\n\t" | 67 | |
| 68 | "CC = AC0;\n\t" | 68 | __asm__ ("%0 = %0 + %2;\n\t" |
| 69 | "if !CC jump 4;\n\t" | 69 | "CC = AC0;\n\t" |
| 70 | "%0 = %0 + %4;\n\t" | 70 | "%1 = CC;\n\t" |
| 71 | "%0 = %0 + %2;\n\t" | 71 | "%0 = %0 + %1;\n\t" |
| 72 | "CC = AC0;\n\t" | 72 | "%0 = %0 + %3;\n\t" |
| 73 | "if !CC jump 4;\n\t" | 73 | "CC = AC0;\n\t" |
| 74 | "%0 = %0 + %4;\n\t" | 74 | "%1 = CC;\n\t" |
| 75 | "%0 = %0 + %3;\n\t" | 75 | "%0 = %0 + %1;\n\t" |
| 76 | "CC = AC0;\n\t" | 76 | "%0 = %0 + %4;\n\t" |
| 77 | "if !CC jump 4;\n\t" | 77 | "CC = AC0;\n\t" |
| 78 | "%0 = %0 + %4;\n\t" | 78 | "%1 = CC;\n\t" |
| 79 | "NOP;\n\t" | 79 | "%0 = %0 + %1;\n\t" |
| 80 | : "=d" (sum) | 80 | : "=d" (sum), "=&d" (carry) |
| 81 | : "d" (daddr), "d" (saddr), "d" ((ntohs(len)<<16)+proto*256), "d" (1), "0"(sum) | 81 | : "d" (daddr), "d" (saddr), "d" ((len + proto) << 8), "0"(sum) |
| 82 | : "CC"); | 82 | : "CC"); |
| 83 | 83 | ||
| 84 | return (sum); | 84 | return (sum); |
| 85 | } | 85 | } |
diff --git a/arch/blackfin/include/asm/delay.h b/arch/blackfin/include/asm/delay.h index 0889c3abb593..c31f91cc1d5d 100644 --- a/arch/blackfin/include/asm/delay.h +++ b/arch/blackfin/include/asm/delay.h | |||
| @@ -13,29 +13,7 @@ | |||
| 13 | 13 | ||
| 14 | static inline void __delay(unsigned long loops) | 14 | static inline void __delay(unsigned long loops) |
| 15 | { | 15 | { |
| 16 | if (ANOMALY_05000312) { | 16 | __asm__ __volatile__ ( |
| 17 | /* Interrupted loads to loop registers -> bad */ | ||
| 18 | unsigned long tmp; | ||
| 19 | __asm__ __volatile__( | ||
| 20 | "[--SP] = LC0;" | ||
| 21 | "[--SP] = LT0;" | ||
| 22 | "[--SP] = LB0;" | ||
| 23 | "LSETUP (1f,1f) LC0 = %1;" | ||
| 24 | "1: NOP;" | ||
| 25 | /* We take advantage of the fact that LC0 is 0 at | ||
| 26 | * the end of the loop. Otherwise we'd need some | ||
| 27 | * NOPs after the CLI here. | ||
| 28 | */ | ||
| 29 | "CLI %0;" | ||
| 30 | "LB0 = [SP++];" | ||
| 31 | "LT0 = [SP++];" | ||
| 32 | "LC0 = [SP++];" | ||
| 33 | "STI %0;" | ||
| 34 | : "=d" (tmp) | ||
| 35 | : "a" (loops) | ||
| 36 | ); | ||
| 37 | } else | ||
| 38 | __asm__ __volatile__ ( | ||
| 39 | "LSETUP(1f, 1f) LC0 = %0;" | 17 | "LSETUP(1f, 1f) LC0 = %0;" |
| 40 | "1: NOP;" | 18 | "1: NOP;" |
| 41 | : | 19 | : |
| @@ -47,16 +25,15 @@ static inline void __delay(unsigned long loops) | |||
| 47 | #include <linux/param.h> /* needed for HZ */ | 25 | #include <linux/param.h> /* needed for HZ */ |
| 48 | 26 | ||
| 49 | /* | 27 | /* |
| 50 | * Use only for very small delays ( < 1 msec). Should probably use a | 28 | * close approximation borrowed from m68knommu to avoid 64-bit math |
| 51 | * lookup table, really, as the multiplications take much too long with | ||
| 52 | * short delays. This is a "reasonable" implementation, though (and the | ||
| 53 | * first constant multiplications gets optimized away if the delay is | ||
| 54 | * a constant) | ||
| 55 | */ | 29 | */ |
| 30 | |||
| 31 | #define HZSCALE (268435456 / (1000000/HZ)) | ||
| 32 | |||
| 56 | static inline void udelay(unsigned long usecs) | 33 | static inline void udelay(unsigned long usecs) |
| 57 | { | 34 | { |
| 58 | extern unsigned long loops_per_jiffy; | 35 | extern unsigned long loops_per_jiffy; |
| 59 | __delay(usecs * loops_per_jiffy / (1000000 / HZ)); | 36 | __delay((((usecs * HZSCALE) >> 11) * (loops_per_jiffy >> 11)) >> 6); |
| 60 | } | 37 | } |
| 61 | 38 | ||
| 62 | #endif | 39 | #endif |
diff --git a/arch/blackfin/include/asm/gpio.h b/arch/blackfin/include/asm/gpio.h index 9477d82fcad2..d4a082ef75b4 100644 --- a/arch/blackfin/include/asm/gpio.h +++ b/arch/blackfin/include/asm/gpio.h | |||
| @@ -27,60 +27,6 @@ | |||
| 27 | * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | 27 | * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 28 | */ | 28 | */ |
| 29 | 29 | ||
| 30 | /* | ||
| 31 | * Number BF537/6/4 BF561 BF533/2/1 | ||
| 32 | * BF527/5/2 | ||
| 33 | * | ||
| 34 | * GPIO_0 PF0 PF0 PF0 | ||
| 35 | * GPIO_1 PF1 PF1 PF1 | ||
| 36 | * GPIO_2 PF2 PF2 PF2 | ||
| 37 | * GPIO_3 PF3 PF3 PF3 | ||
| 38 | * GPIO_4 PF4 PF4 PF4 | ||
| 39 | * GPIO_5 PF5 PF5 PF5 | ||
| 40 | * GPIO_6 PF6 PF6 PF6 | ||
| 41 | * GPIO_7 PF7 PF7 PF7 | ||
| 42 | * GPIO_8 PF8 PF8 PF8 | ||
| 43 | * GPIO_9 PF9 PF9 PF9 | ||
| 44 | * GPIO_10 PF10 PF10 PF10 | ||
| 45 | * GPIO_11 PF11 PF11 PF11 | ||
| 46 | * GPIO_12 PF12 PF12 PF12 | ||
| 47 | * GPIO_13 PF13 PF13 PF13 | ||
| 48 | * GPIO_14 PF14 PF14 PF14 | ||
| 49 | * GPIO_15 PF15 PF15 PF15 | ||
| 50 | * GPIO_16 PG0 PF16 | ||
| 51 | * GPIO_17 PG1 PF17 | ||
| 52 | * GPIO_18 PG2 PF18 | ||
| 53 | * GPIO_19 PG3 PF19 | ||
| 54 | * GPIO_20 PG4 PF20 | ||
| 55 | * GPIO_21 PG5 PF21 | ||
| 56 | * GPIO_22 PG6 PF22 | ||
| 57 | * GPIO_23 PG7 PF23 | ||
| 58 | * GPIO_24 PG8 PF24 | ||
| 59 | * GPIO_25 PG9 PF25 | ||
| 60 | * GPIO_26 PG10 PF26 | ||
| 61 | * GPIO_27 PG11 PF27 | ||
| 62 | * GPIO_28 PG12 PF28 | ||
| 63 | * GPIO_29 PG13 PF29 | ||
| 64 | * GPIO_30 PG14 PF30 | ||
| 65 | * GPIO_31 PG15 PF31 | ||
| 66 | * GPIO_32 PH0 PF32 | ||
| 67 | * GPIO_33 PH1 PF33 | ||
| 68 | * GPIO_34 PH2 PF34 | ||
| 69 | * GPIO_35 PH3 PF35 | ||
| 70 | * GPIO_36 PH4 PF36 | ||
| 71 | * GPIO_37 PH5 PF37 | ||
| 72 | * GPIO_38 PH6 PF38 | ||
| 73 | * GPIO_39 PH7 PF39 | ||
| 74 | * GPIO_40 PH8 PF40 | ||
| 75 | * GPIO_41 PH9 PF41 | ||
| 76 | * GPIO_42 PH10 PF42 | ||
| 77 | * GPIO_43 PH11 PF43 | ||
| 78 | * GPIO_44 PH12 PF44 | ||
| 79 | * GPIO_45 PH13 PF45 | ||
| 80 | * GPIO_46 PH14 PF46 | ||
| 81 | * GPIO_47 PH15 PF47 | ||
| 82 | */ | ||
| 83 | |||
| 84 | #ifndef __ARCH_BLACKFIN_GPIO_H__ | 30 | #ifndef __ARCH_BLACKFIN_GPIO_H__ |
| 85 | #define __ARCH_BLACKFIN_GPIO_H__ | 31 | #define __ARCH_BLACKFIN_GPIO_H__ |
| 86 | 32 | ||
| @@ -295,10 +241,6 @@ int bfin_gpio_direction_output(unsigned gpio, int value); | |||
| 295 | int bfin_gpio_get_value(unsigned gpio); | 241 | int bfin_gpio_get_value(unsigned gpio); |
| 296 | void bfin_gpio_set_value(unsigned gpio, int value); | 242 | void bfin_gpio_set_value(unsigned gpio, int value); |
| 297 | 243 | ||
| 298 | #ifndef BF548_FAMILY | ||
| 299 | #define bfin_gpio_set_value(gpio, value) set_gpio_data(gpio, value) | ||
| 300 | #endif | ||
| 301 | |||
| 302 | #ifdef CONFIG_GPIOLIB | 244 | #ifdef CONFIG_GPIOLIB |
| 303 | #include <asm-generic/gpio.h> /* cansleep wrappers */ | 245 | #include <asm-generic/gpio.h> /* cansleep wrappers */ |
| 304 | 246 | ||
diff --git a/arch/blackfin/include/asm/kgdb.h b/arch/blackfin/include/asm/kgdb.h index 26ebac6646d8..c8b256d2ea30 100644 --- a/arch/blackfin/include/asm/kgdb.h +++ b/arch/blackfin/include/asm/kgdb.h | |||
| @@ -1,32 +1,8 @@ | |||
| 1 | /* | 1 | /* Blackfin KGDB header |
| 2 | * File: include/asm-blackfin/kgdb.h | ||
| 3 | * Based on: | ||
| 4 | * Author: Sonic Zhang | ||
| 5 | * | ||
| 6 | * Created: | ||
| 7 | * Description: | ||
| 8 | * | ||
| 9 | * Rev: $Id: kgdb_bfin_linux-2.6.x.patch 4934 2007-02-13 09:32:11Z sonicz $ | ||
| 10 | * | ||
| 11 | * Modified: | ||
| 12 | * Copyright 2005-2006 Analog Devices Inc. | ||
| 13 | * | ||
| 14 | * Bugs: Enter bugs at http://blackfin.uclinux.org/ | ||
| 15 | * | 2 | * |
| 16 | * This program is free software; you can redistribute it and/or modify | 3 | * Copyright 2005-2009 Analog Devices Inc. |
| 17 | * it under the terms of the GNU General Public License as published by | ||
| 18 | * the Free Software Foundation; either version 2 of the License, or | ||
| 19 | * (at your option) any later version. | ||
| 20 | * | 4 | * |
| 21 | * This program is distributed in the hope that it will be useful, | 5 | * Licensed under the GPL-2 or later. |
| 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 24 | * GNU General Public License for more details. | ||
| 25 | * | ||
| 26 | * You should have received a copy of the GNU General Public License | ||
| 27 | * along with this program; if not, see the file COPYING, or write | ||
| 28 | * to the Free Software Foundation, Inc., | ||
| 29 | * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 30 | */ | 6 | */ |
| 31 | 7 | ||
| 32 | #ifndef __ASM_BLACKFIN_KGDB_H__ | 8 | #ifndef __ASM_BLACKFIN_KGDB_H__ |
| @@ -37,17 +13,18 @@ | |||
| 37 | /* gdb locks */ | 13 | /* gdb locks */ |
| 38 | #define KGDB_MAX_NO_CPUS 8 | 14 | #define KGDB_MAX_NO_CPUS 8 |
| 39 | 15 | ||
| 40 | /************************************************************************/ | 16 | /* |
| 41 | /* BUFMAX defines the maximum number of characters in inbound/outbound buffers*/ | 17 | * BUFMAX defines the maximum number of characters in inbound/outbound buffers. |
| 42 | /* at least NUMREGBYTES*2 are needed for register packets */ | 18 | * At least NUMREGBYTES*2 are needed for register packets. |
| 43 | /* Longer buffer is needed to list all threads */ | 19 | * Longer buffer is needed to list all threads. |
| 20 | */ | ||
| 44 | #define BUFMAX 2048 | 21 | #define BUFMAX 2048 |
| 45 | 22 | ||
| 46 | /* | 23 | /* |
| 47 | * Note that this register image is different from | 24 | * Note that this register image is different from |
| 48 | * the register image that Linux produces at interrupt time. | 25 | * the register image that Linux produces at interrupt time. |
| 49 | * | 26 | * |
| 50 | * Linux's register image is defined by struct pt_regs in ptrace.h. | 27 | * Linux's register image is defined by struct pt_regs in ptrace.h. |
| 51 | */ | 28 | */ |
| 52 | enum regnames { | 29 | enum regnames { |
| 53 | /* Core Registers */ | 30 | /* Core Registers */ |
| @@ -104,14 +81,14 @@ enum regnames { | |||
| 104 | BFIN_RETX, | 81 | BFIN_RETX, |
| 105 | BFIN_RETN, | 82 | BFIN_RETN, |
| 106 | BFIN_RETE, | 83 | BFIN_RETE, |
| 107 | 84 | ||
| 108 | /* Pseudo Registers */ | 85 | /* Pseudo Registers */ |
| 109 | BFIN_PC, | 86 | BFIN_PC, |
| 110 | BFIN_CC, | 87 | BFIN_CC, |
| 111 | BFIN_EXTRA1, /* Address of .text section. */ | 88 | BFIN_EXTRA1, /* Address of .text section. */ |
| 112 | BFIN_EXTRA2, /* Address of .data section. */ | 89 | BFIN_EXTRA2, /* Address of .data section. */ |
| 113 | BFIN_EXTRA3, /* Address of .bss section. */ | 90 | BFIN_EXTRA3, /* Address of .bss section. */ |
| 114 | BFIN_FDPIC_EXEC, | 91 | BFIN_FDPIC_EXEC, |
| 115 | BFIN_FDPIC_INTERP, | 92 | BFIN_FDPIC_INTERP, |
| 116 | 93 | ||
| 117 | /* MMRs */ | 94 | /* MMRs */ |
| @@ -126,7 +103,7 @@ enum regnames { | |||
| 126 | 103 | ||
| 127 | static inline void arch_kgdb_breakpoint(void) | 104 | static inline void arch_kgdb_breakpoint(void) |
| 128 | { | 105 | { |
| 129 | asm(" EXCPT 2;"); | 106 | asm("EXCPT 2;"); |
| 130 | } | 107 | } |
| 131 | #define BREAK_INSTR_SIZE 2 | 108 | #define BREAK_INSTR_SIZE 2 |
| 132 | #define CACHE_FLUSH_IS_SAFE 1 | 109 | #define CACHE_FLUSH_IS_SAFE 1 |
diff --git a/arch/blackfin/include/asm/mem_init.h b/arch/blackfin/include/asm/mem_init.h index 255a9316ad36..61f7487fbf12 100644 --- a/arch/blackfin/include/asm/mem_init.h +++ b/arch/blackfin/include/asm/mem_init.h | |||
| @@ -115,7 +115,7 @@ | |||
| 115 | #define mem_SDRRC (((CONFIG_SCLK_HZ / 1000) * SDRAM_Tref) / SDRAM_NRA) - (SDRAM_tRAS_num + SDRAM_tRP_num) | 115 | #define mem_SDRRC (((CONFIG_SCLK_HZ / 1000) * SDRAM_Tref) / SDRAM_NRA) - (SDRAM_tRAS_num + SDRAM_tRP_num) |
| 116 | 116 | ||
| 117 | /* Enable SCLK Out */ | 117 | /* Enable SCLK Out */ |
| 118 | #define mem_SDGCTL (0x80000000 | SCTLE | SDRAM_CL | SDRAM_tRAS | SDRAM_tRP | SDRAM_tRCD | SDRAM_tWR | PSS) | 118 | #define mem_SDGCTL (SCTLE | SDRAM_CL | SDRAM_tRAS | SDRAM_tRP | SDRAM_tRCD | SDRAM_tWR | PSS) |
| 119 | #else | 119 | #else |
| 120 | #define mem_SDRRC CONFIG_MEM_SDRRC | 120 | #define mem_SDRRC CONFIG_MEM_SDRRC |
| 121 | #define mem_SDGCTL CONFIG_MEM_SDGCTL | 121 | #define mem_SDGCTL CONFIG_MEM_SDGCTL |
diff --git a/arch/blackfin/include/asm/pda.h b/arch/blackfin/include/asm/pda.h index bd8d4a7efeb2..a67142740df0 100644 --- a/arch/blackfin/include/asm/pda.h +++ b/arch/blackfin/include/asm/pda.h | |||
| @@ -59,6 +59,7 @@ struct blackfin_pda { /* Per-processor Data Area */ | |||
| 59 | unsigned long icplb_fault_addr; | 59 | unsigned long icplb_fault_addr; |
| 60 | unsigned long retx; | 60 | unsigned long retx; |
| 61 | unsigned long seqstat; | 61 | unsigned long seqstat; |
| 62 | unsigned int __nmi_count; /* number of times NMI asserted on this CPU */ | ||
| 62 | }; | 63 | }; |
| 63 | 64 | ||
| 64 | extern struct blackfin_pda cpu_pda[]; | 65 | extern struct blackfin_pda cpu_pda[]; |
diff --git a/arch/blackfin/include/asm/reboot.h b/arch/blackfin/include/asm/reboot.h index 4856d62b7467..ae1e36329bec 100644 --- a/arch/blackfin/include/asm/reboot.h +++ b/arch/blackfin/include/asm/reboot.h | |||
| @@ -15,6 +15,6 @@ extern void native_machine_halt(void); | |||
| 15 | extern void native_machine_power_off(void); | 15 | extern void native_machine_power_off(void); |
| 16 | 16 | ||
| 17 | /* common reboot workarounds */ | 17 | /* common reboot workarounds */ |
| 18 | extern void bfin_gpio_reset_spi0_ssel1(void); | 18 | extern void bfin_reset_boot_spi_cs(unsigned short pin); |
| 19 | 19 | ||
| 20 | #endif | 20 | #endif |
diff --git a/arch/blackfin/kernel/Makefile b/arch/blackfin/kernel/Makefile index 38a233374f07..4a92a86824b7 100644 --- a/arch/blackfin/kernel/Makefile +++ b/arch/blackfin/kernel/Makefile | |||
| @@ -15,6 +15,8 @@ else | |||
| 15 | obj-y += time.o | 15 | obj-y += time.o |
| 16 | endif | 16 | endif |
| 17 | 17 | ||
| 18 | CFLAGS_kgdb_test.o := -mlong-calls -O0 | ||
| 19 | |||
| 18 | obj-$(CONFIG_IPIPE) += ipipe.o | 20 | obj-$(CONFIG_IPIPE) += ipipe.o |
| 19 | obj-$(CONFIG_IPIPE_TRACE_MCOUNT) += mcount.o | 21 | obj-$(CONFIG_IPIPE_TRACE_MCOUNT) += mcount.o |
| 20 | obj-$(CONFIG_BFIN_GPTIMERS) += gptimers.o | 22 | obj-$(CONFIG_BFIN_GPTIMERS) += gptimers.o |
diff --git a/arch/blackfin/kernel/bfin_dma_5xx.c b/arch/blackfin/kernel/bfin_dma_5xx.c index 07e02c0d1c07..8531693fb48d 100644 --- a/arch/blackfin/kernel/bfin_dma_5xx.c +++ b/arch/blackfin/kernel/bfin_dma_5xx.c | |||
| @@ -249,6 +249,13 @@ static void __dma_memcpy(u32 daddr, s16 dmod, u32 saddr, s16 smod, size_t cnt, u | |||
| 249 | 249 | ||
| 250 | spin_lock_irqsave(&mdma_lock, flags); | 250 | spin_lock_irqsave(&mdma_lock, flags); |
| 251 | 251 | ||
| 252 | /* Force a sync in case a previous config reset on this channel | ||
| 253 | * occurred. This is needed so subsequent writes to DMA registers | ||
| 254 | * are not spuriously lost/corrupted. Do it under irq lock and | ||
| 255 | * without the anomaly version (because we are atomic already). | ||
| 256 | */ | ||
| 257 | __builtin_bfin_ssync(); | ||
| 258 | |||
| 252 | if (bfin_read_MDMA_S0_CONFIG()) | 259 | if (bfin_read_MDMA_S0_CONFIG()) |
| 253 | while (!(bfin_read_MDMA_D0_IRQ_STATUS() & DMA_DONE)) | 260 | while (!(bfin_read_MDMA_D0_IRQ_STATUS() & DMA_DONE)) |
| 254 | continue; | 261 | continue; |
diff --git a/arch/blackfin/kernel/bfin_gpio.c b/arch/blackfin/kernel/bfin_gpio.c index 4c14331978f6..51dac55c524a 100644 --- a/arch/blackfin/kernel/bfin_gpio.c +++ b/arch/blackfin/kernel/bfin_gpio.c | |||
| @@ -27,59 +27,6 @@ | |||
| 27 | * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | 27 | * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 28 | */ | 28 | */ |
| 29 | 29 | ||
| 30 | /* | ||
| 31 | * Number BF537/6/4 BF561 BF533/2/1 BF549/8/4/2 | ||
| 32 | * | ||
| 33 | * GPIO_0 PF0 PF0 PF0 PA0...PJ13 | ||
| 34 | * GPIO_1 PF1 PF1 PF1 | ||
| 35 | * GPIO_2 PF2 PF2 PF2 | ||
| 36 | * GPIO_3 PF3 PF3 PF3 | ||
| 37 | * GPIO_4 PF4 PF4 PF4 | ||
| 38 | * GPIO_5 PF5 PF5 PF5 | ||
| 39 | * GPIO_6 PF6 PF6 PF6 | ||
| 40 | * GPIO_7 PF7 PF7 PF7 | ||
| 41 | * GPIO_8 PF8 PF8 PF8 | ||
| 42 | * GPIO_9 PF9 PF9 PF9 | ||
| 43 | * GPIO_10 PF10 PF10 PF10 | ||
| 44 | * GPIO_11 PF11 PF11 PF11 | ||
| 45 | * GPIO_12 PF12 PF12 PF12 | ||
| 46 | * GPIO_13 PF13 PF13 PF13 | ||
| 47 | * GPIO_14 PF14 PF14 PF14 | ||
| 48 | * GPIO_15 PF15 PF15 PF15 | ||
| 49 | * GPIO_16 PG0 PF16 | ||
| 50 | * GPIO_17 PG1 PF17 | ||
| 51 | * GPIO_18 PG2 PF18 | ||
| 52 | * GPIO_19 PG3 PF19 | ||
| 53 | * GPIO_20 PG4 PF20 | ||
| 54 | * GPIO_21 PG5 PF21 | ||
| 55 | * GPIO_22 PG6 PF22 | ||
| 56 | * GPIO_23 PG7 PF23 | ||
| 57 | * GPIO_24 PG8 PF24 | ||
| 58 | * GPIO_25 PG9 PF25 | ||
| 59 | * GPIO_26 PG10 PF26 | ||
| 60 | * GPIO_27 PG11 PF27 | ||
| 61 | * GPIO_28 PG12 PF28 | ||
| 62 | * GPIO_29 PG13 PF29 | ||
| 63 | * GPIO_30 PG14 PF30 | ||
| 64 | * GPIO_31 PG15 PF31 | ||
| 65 | * GPIO_32 PH0 PF32 | ||
| 66 | * GPIO_33 PH1 PF33 | ||
| 67 | * GPIO_34 PH2 PF34 | ||
| 68 | * GPIO_35 PH3 PF35 | ||
| 69 | * GPIO_36 PH4 PF36 | ||
| 70 | * GPIO_37 PH5 PF37 | ||
| 71 | * GPIO_38 PH6 PF38 | ||
| 72 | * GPIO_39 PH7 PF39 | ||
| 73 | * GPIO_40 PH8 PF40 | ||
| 74 | * GPIO_41 PH9 PF41 | ||
| 75 | * GPIO_42 PH10 PF42 | ||
| 76 | * GPIO_43 PH11 PF43 | ||
| 77 | * GPIO_44 PH12 PF44 | ||
| 78 | * GPIO_45 PH13 PF45 | ||
| 79 | * GPIO_46 PH14 PF46 | ||
| 80 | * GPIO_47 PH15 PF47 | ||
| 81 | */ | ||
| 82 | |||
| 83 | #include <linux/delay.h> | 30 | #include <linux/delay.h> |
| 84 | #include <linux/module.h> | 31 | #include <linux/module.h> |
| 85 | #include <linux/err.h> | 32 | #include <linux/err.h> |
| @@ -119,62 +66,61 @@ enum { | |||
| 119 | #define AWA_DUMMY_READ(...) do { } while (0) | 66 | #define AWA_DUMMY_READ(...) do { } while (0) |
| 120 | #endif | 67 | #endif |
| 121 | 68 | ||
| 69 | static struct gpio_port_t * const gpio_array[] = { | ||
| 122 | #if defined(BF533_FAMILY) || defined(BF538_FAMILY) | 70 | #if defined(BF533_FAMILY) || defined(BF538_FAMILY) |
| 123 | static struct gpio_port_t *gpio_bankb[] = { | ||
| 124 | (struct gpio_port_t *) FIO_FLAG_D, | 71 | (struct gpio_port_t *) FIO_FLAG_D, |
| 125 | }; | 72 | #elif defined(BF527_FAMILY) || defined(BF537_FAMILY) || defined(BF518_FAMILY) |
| 126 | #endif | ||
| 127 | |||
| 128 | #if defined(BF527_FAMILY) || defined(BF537_FAMILY) || defined(BF518_FAMILY) | ||
| 129 | static struct gpio_port_t *gpio_bankb[] = { | ||
| 130 | (struct gpio_port_t *) PORTFIO, | 73 | (struct gpio_port_t *) PORTFIO, |
| 131 | (struct gpio_port_t *) PORTGIO, | 74 | (struct gpio_port_t *) PORTGIO, |
| 132 | (struct gpio_port_t *) PORTHIO, | 75 | (struct gpio_port_t *) PORTHIO, |
| 76 | #elif defined(BF561_FAMILY) | ||
| 77 | (struct gpio_port_t *) FIO0_FLAG_D, | ||
| 78 | (struct gpio_port_t *) FIO1_FLAG_D, | ||
| 79 | (struct gpio_port_t *) FIO2_FLAG_D, | ||
| 80 | #elif defined(BF548_FAMILY) | ||
| 81 | (struct gpio_port_t *)PORTA_FER, | ||
| 82 | (struct gpio_port_t *)PORTB_FER, | ||
| 83 | (struct gpio_port_t *)PORTC_FER, | ||
| 84 | (struct gpio_port_t *)PORTD_FER, | ||
| 85 | (struct gpio_port_t *)PORTE_FER, | ||
| 86 | (struct gpio_port_t *)PORTF_FER, | ||
| 87 | (struct gpio_port_t *)PORTG_FER, | ||
| 88 | (struct gpio_port_t *)PORTH_FER, | ||
| 89 | (struct gpio_port_t *)PORTI_FER, | ||
| 90 | (struct gpio_port_t *)PORTJ_FER, | ||
| 91 | #else | ||
| 92 | # error no gpio arrays defined | ||
| 93 | #endif | ||
| 133 | }; | 94 | }; |
| 134 | 95 | ||
| 135 | static unsigned short *port_fer[] = { | 96 | #if defined(BF527_FAMILY) || defined(BF537_FAMILY) || defined(BF518_FAMILY) |
| 97 | static unsigned short * const port_fer[] = { | ||
| 136 | (unsigned short *) PORTF_FER, | 98 | (unsigned short *) PORTF_FER, |
| 137 | (unsigned short *) PORTG_FER, | 99 | (unsigned short *) PORTG_FER, |
| 138 | (unsigned short *) PORTH_FER, | 100 | (unsigned short *) PORTH_FER, |
| 139 | }; | 101 | }; |
| 140 | #endif | ||
| 141 | 102 | ||
| 142 | #if defined(BF527_FAMILY) || defined(BF518_FAMILY) | 103 | # if !defined(BF537_FAMILY) |
| 143 | static unsigned short *port_mux[] = { | 104 | static unsigned short * const port_mux[] = { |
| 144 | (unsigned short *) PORTF_MUX, | 105 | (unsigned short *) PORTF_MUX, |
| 145 | (unsigned short *) PORTG_MUX, | 106 | (unsigned short *) PORTG_MUX, |
| 146 | (unsigned short *) PORTH_MUX, | 107 | (unsigned short *) PORTH_MUX, |
| 147 | }; | 108 | }; |
| 148 | 109 | ||
| 149 | static const | 110 | static const |
| 150 | u8 pmux_offset[][16] = | 111 | u8 pmux_offset[][16] = { |
| 151 | {{ 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 4, 6, 8, 8, 10, 10 }, /* PORTF */ | 112 | # if defined(BF527_FAMILY) |
| 152 | { 0, 0, 0, 0, 0, 2, 2, 4, 4, 6, 8, 10, 10, 10, 12, 12 }, /* PORTG */ | 113 | { 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 4, 6, 8, 8, 10, 10 }, /* PORTF */ |
| 153 | { 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 4, 4, 4, 4, 4 }, /* PORTH */ | 114 | { 0, 0, 0, 0, 0, 2, 2, 4, 4, 6, 8, 10, 10, 10, 12, 12 }, /* PORTG */ |
| 154 | }; | 115 | { 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 4, 4, 4, 4, 4 }, /* PORTH */ |
| 155 | #endif | 116 | # elif defined(BF518_FAMILY) |
| 156 | 117 | { 0, 2, 2, 2, 2, 2, 2, 4, 6, 6, 6, 8, 8, 8, 8, 10 }, /* PORTF */ | |
| 157 | #ifdef BF561_FAMILY | 118 | { 0, 0, 0, 2, 4, 6, 6, 6, 8, 10, 10, 12, 14, 14, 14, 14 }, /* PORTG */ |
| 158 | static struct gpio_port_t *gpio_bankb[] = { | 119 | { 0, 0, 0, 0, 2, 2, 4, 6, 10, 10, 10, 10, 10, 10, 10, 10 }, /* PORTH */ |
| 159 | (struct gpio_port_t *) FIO0_FLAG_D, | 120 | # endif |
| 160 | (struct gpio_port_t *) FIO1_FLAG_D, | ||
| 161 | (struct gpio_port_t *) FIO2_FLAG_D, | ||
| 162 | }; | 121 | }; |
| 163 | #endif | 122 | # endif |
| 164 | 123 | ||
| 165 | #ifdef BF548_FAMILY | ||
| 166 | static struct gpio_port_t *gpio_array[] = { | ||
| 167 | (struct gpio_port_t *)PORTA_FER, | ||
| 168 | (struct gpio_port_t *)PORTB_FER, | ||
| 169 | (struct gpio_port_t *)PORTC_FER, | ||
| 170 | (struct gpio_port_t *)PORTD_FER, | ||
| 171 | (struct gpio_port_t *)PORTE_FER, | ||
| 172 | (struct gpio_port_t *)PORTF_FER, | ||
| 173 | (struct gpio_port_t *)PORTG_FER, | ||
| 174 | (struct gpio_port_t *)PORTH_FER, | ||
| 175 | (struct gpio_port_t *)PORTI_FER, | ||
| 176 | (struct gpio_port_t *)PORTJ_FER, | ||
| 177 | }; | ||
| 178 | #endif | 124 | #endif |
| 179 | 125 | ||
| 180 | static unsigned short reserved_gpio_map[GPIO_BANK_NUM]; | 126 | static unsigned short reserved_gpio_map[GPIO_BANK_NUM]; |
| @@ -188,35 +134,9 @@ static struct str_ident { | |||
| 188 | } str_ident[MAX_RESOURCES]; | 134 | } str_ident[MAX_RESOURCES]; |
| 189 | 135 | ||
| 190 | #if defined(CONFIG_PM) | 136 | #if defined(CONFIG_PM) |
| 191 | #if defined(CONFIG_BF54x) | ||
| 192 | static struct gpio_port_s gpio_bank_saved[GPIO_BANK_NUM]; | ||
| 193 | #else | ||
| 194 | static unsigned short wakeup_map[GPIO_BANK_NUM]; | ||
| 195 | static unsigned char wakeup_flags_map[MAX_BLACKFIN_GPIOS]; | ||
| 196 | static struct gpio_port_s gpio_bank_saved[GPIO_BANK_NUM]; | 137 | static struct gpio_port_s gpio_bank_saved[GPIO_BANK_NUM]; |
| 197 | |||
| 198 | #ifdef BF533_FAMILY | ||
| 199 | static unsigned int sic_iwr_irqs[] = {IRQ_PROG_INTB}; | ||
| 200 | #endif | ||
| 201 | |||
| 202 | #ifdef BF537_FAMILY | ||
| 203 | static unsigned int sic_iwr_irqs[] = {IRQ_PROG_INTB, IRQ_PORTG_INTB, IRQ_MAC_TX}; | ||
| 204 | #endif | ||
| 205 | |||
| 206 | #ifdef BF538_FAMILY | ||
| 207 | static unsigned int sic_iwr_irqs[] = {IRQ_PORTF_INTB}; | ||
| 208 | #endif | 138 | #endif |
| 209 | 139 | ||
| 210 | #if defined(BF527_FAMILY) || defined(BF518_FAMILY) | ||
| 211 | static unsigned int sic_iwr_irqs[] = {IRQ_PORTF_INTB, IRQ_PORTG_INTB, IRQ_PORTH_INTB}; | ||
| 212 | #endif | ||
| 213 | |||
| 214 | #ifdef BF561_FAMILY | ||
| 215 | static unsigned int sic_iwr_irqs[] = {IRQ_PROG0_INTB, IRQ_PROG1_INTB, IRQ_PROG2_INTB}; | ||
| 216 | #endif | ||
| 217 | #endif | ||
| 218 | #endif /* CONFIG_PM */ | ||
| 219 | |||
| 220 | inline int check_gpio(unsigned gpio) | 140 | inline int check_gpio(unsigned gpio) |
| 221 | { | 141 | { |
| 222 | #if defined(BF548_FAMILY) | 142 | #if defined(BF548_FAMILY) |
| @@ -330,9 +250,10 @@ static struct { | |||
| 330 | {.res = P_SPI0_SSEL3, .offset = 0}, | 250 | {.res = P_SPI0_SSEL3, .offset = 0}, |
| 331 | }; | 251 | }; |
| 332 | 252 | ||
| 333 | static void portmux_setup(unsigned short per, unsigned short function) | 253 | static void portmux_setup(unsigned short per) |
| 334 | { | 254 | { |
| 335 | u16 y, offset, muxreg; | 255 | u16 y, offset, muxreg; |
| 256 | u16 function = P_FUNCT2MUX(per); | ||
| 336 | 257 | ||
| 337 | for (y = 0; y < ARRAY_SIZE(port_mux_lut); y++) { | 258 | for (y = 0; y < ARRAY_SIZE(port_mux_lut); y++) { |
| 338 | if (port_mux_lut[y].res == per) { | 259 | if (port_mux_lut[y].res == per) { |
| @@ -353,30 +274,33 @@ static void portmux_setup(unsigned short per, unsigned short function) | |||
| 353 | } | 274 | } |
| 354 | } | 275 | } |
| 355 | #elif defined(BF548_FAMILY) | 276 | #elif defined(BF548_FAMILY) |
| 356 | inline void portmux_setup(unsigned short portno, unsigned short function) | 277 | inline void portmux_setup(unsigned short per) |
| 357 | { | 278 | { |
| 358 | u32 pmux; | 279 | u32 pmux; |
| 280 | u16 ident = P_IDENT(per); | ||
| 281 | u16 function = P_FUNCT2MUX(per); | ||
| 359 | 282 | ||
| 360 | pmux = gpio_array[gpio_bank(portno)]->port_mux; | 283 | pmux = gpio_array[gpio_bank(ident)]->port_mux; |
| 361 | 284 | ||
| 362 | pmux &= ~(0x3 << (2 * gpio_sub_n(portno))); | 285 | pmux &= ~(0x3 << (2 * gpio_sub_n(ident))); |
| 363 | pmux |= (function & 0x3) << (2 * gpio_sub_n(portno)); | 286 | pmux |= (function & 0x3) << (2 * gpio_sub_n(ident)); |
| 364 | 287 | ||
| 365 | gpio_array[gpio_bank(portno)]->port_mux = pmux; | 288 | gpio_array[gpio_bank(ident)]->port_mux = pmux; |
| 366 | } | 289 | } |
| 367 | 290 | ||
| 368 | inline u16 get_portmux(unsigned short portno) | 291 | inline u16 get_portmux(unsigned short per) |
| 369 | { | 292 | { |
| 370 | u32 pmux; | 293 | u32 pmux; |
| 294 | u16 ident = P_IDENT(per); | ||
| 371 | 295 | ||
| 372 | pmux = gpio_array[gpio_bank(portno)]->port_mux; | 296 | pmux = gpio_array[gpio_bank(ident)]->port_mux; |
| 373 | 297 | ||
| 374 | return (pmux >> (2 * gpio_sub_n(portno)) & 0x3); | 298 | return (pmux >> (2 * gpio_sub_n(ident)) & 0x3); |
| 375 | } | 299 | } |
| 376 | #elif defined(BF527_FAMILY) || defined(BF518_FAMILY) | 300 | #elif defined(BF527_FAMILY) || defined(BF518_FAMILY) |
| 377 | inline void portmux_setup(unsigned short portno, unsigned short function) | 301 | inline void portmux_setup(unsigned short per) |
| 378 | { | 302 | { |
| 379 | u16 pmux, ident = P_IDENT(portno); | 303 | u16 pmux, ident = P_IDENT(per), function = P_FUNCT2MUX(per); |
| 380 | u8 offset = pmux_offset[gpio_bank(ident)][gpio_sub_n(ident)]; | 304 | u8 offset = pmux_offset[gpio_bank(ident)][gpio_sub_n(ident)]; |
| 381 | 305 | ||
| 382 | pmux = *port_mux[gpio_bank(ident)]; | 306 | pmux = *port_mux[gpio_bank(ident)]; |
| @@ -424,90 +348,71 @@ void set_gpio_ ## name(unsigned gpio, unsigned short arg) \ | |||
| 424 | unsigned long flags; \ | 348 | unsigned long flags; \ |
| 425 | local_irq_save_hw(flags); \ | 349 | local_irq_save_hw(flags); \ |
| 426 | if (arg) \ | 350 | if (arg) \ |
| 427 | gpio_bankb[gpio_bank(gpio)]->name |= gpio_bit(gpio); \ | 351 | gpio_array[gpio_bank(gpio)]->name |= gpio_bit(gpio); \ |
| 428 | else \ | 352 | else \ |
| 429 | gpio_bankb[gpio_bank(gpio)]->name &= ~gpio_bit(gpio); \ | 353 | gpio_array[gpio_bank(gpio)]->name &= ~gpio_bit(gpio); \ |
| 430 | AWA_DUMMY_READ(name); \ | 354 | AWA_DUMMY_READ(name); \ |
| 431 | local_irq_restore_hw(flags); \ | 355 | local_irq_restore_hw(flags); \ |
| 432 | } \ | 356 | } \ |
| 433 | EXPORT_SYMBOL(set_gpio_ ## name); | 357 | EXPORT_SYMBOL(set_gpio_ ## name); |
| 434 | 358 | ||
| 435 | SET_GPIO(dir) | 359 | SET_GPIO(dir) /* set_gpio_dir() */ |
| 436 | SET_GPIO(inen) | 360 | SET_GPIO(inen) /* set_gpio_inen() */ |
| 437 | SET_GPIO(polar) | 361 | SET_GPIO(polar) /* set_gpio_polar() */ |
| 438 | SET_GPIO(edge) | 362 | SET_GPIO(edge) /* set_gpio_edge() */ |
| 439 | SET_GPIO(both) | 363 | SET_GPIO(both) /* set_gpio_both() */ |
| 440 | 364 | ||
| 441 | 365 | ||
| 442 | #if ANOMALY_05000311 || ANOMALY_05000323 | ||
| 443 | #define SET_GPIO_SC(name) \ | 366 | #define SET_GPIO_SC(name) \ |
| 444 | void set_gpio_ ## name(unsigned gpio, unsigned short arg) \ | 367 | void set_gpio_ ## name(unsigned gpio, unsigned short arg) \ |
| 445 | { \ | 368 | { \ |
| 446 | unsigned long flags; \ | 369 | unsigned long flags; \ |
| 447 | local_irq_save_hw(flags); \ | 370 | if (ANOMALY_05000311 || ANOMALY_05000323) \ |
| 448 | if (arg) \ | 371 | local_irq_save_hw(flags); \ |
| 449 | gpio_bankb[gpio_bank(gpio)]->name ## _set = gpio_bit(gpio); \ | ||
| 450 | else \ | ||
| 451 | gpio_bankb[gpio_bank(gpio)]->name ## _clear = gpio_bit(gpio); \ | ||
| 452 | AWA_DUMMY_READ(name); \ | ||
| 453 | local_irq_restore_hw(flags); \ | ||
| 454 | } \ | ||
| 455 | EXPORT_SYMBOL(set_gpio_ ## name); | ||
| 456 | #else | ||
| 457 | #define SET_GPIO_SC(name) \ | ||
| 458 | void set_gpio_ ## name(unsigned gpio, unsigned short arg) \ | ||
| 459 | { \ | ||
| 460 | if (arg) \ | 372 | if (arg) \ |
| 461 | gpio_bankb[gpio_bank(gpio)]->name ## _set = gpio_bit(gpio); \ | 373 | gpio_array[gpio_bank(gpio)]->name ## _set = gpio_bit(gpio); \ |
| 462 | else \ | 374 | else \ |
| 463 | gpio_bankb[gpio_bank(gpio)]->name ## _clear = gpio_bit(gpio); \ | 375 | gpio_array[gpio_bank(gpio)]->name ## _clear = gpio_bit(gpio); \ |
| 376 | if (ANOMALY_05000311 || ANOMALY_05000323) { \ | ||
| 377 | AWA_DUMMY_READ(name); \ | ||
| 378 | local_irq_restore_hw(flags); \ | ||
| 379 | } \ | ||
| 464 | } \ | 380 | } \ |
| 465 | EXPORT_SYMBOL(set_gpio_ ## name); | 381 | EXPORT_SYMBOL(set_gpio_ ## name); |
| 466 | #endif | ||
| 467 | 382 | ||
| 468 | SET_GPIO_SC(maska) | 383 | SET_GPIO_SC(maska) |
| 469 | SET_GPIO_SC(maskb) | 384 | SET_GPIO_SC(maskb) |
| 470 | SET_GPIO_SC(data) | 385 | SET_GPIO_SC(data) |
| 471 | 386 | ||
| 472 | #if ANOMALY_05000311 || ANOMALY_05000323 | ||
| 473 | void set_gpio_toggle(unsigned gpio) | 387 | void set_gpio_toggle(unsigned gpio) |
| 474 | { | 388 | { |
| 475 | unsigned long flags; | 389 | unsigned long flags; |
| 476 | local_irq_save_hw(flags); | 390 | if (ANOMALY_05000311 || ANOMALY_05000323) |
| 477 | gpio_bankb[gpio_bank(gpio)]->toggle = gpio_bit(gpio); | 391 | local_irq_save_hw(flags); |
| 478 | AWA_DUMMY_READ(toggle); | 392 | gpio_array[gpio_bank(gpio)]->toggle = gpio_bit(gpio); |
| 479 | local_irq_restore_hw(flags); | 393 | if (ANOMALY_05000311 || ANOMALY_05000323) { |
| 480 | } | 394 | AWA_DUMMY_READ(toggle); |
| 481 | #else | 395 | local_irq_restore_hw(flags); |
| 482 | void set_gpio_toggle(unsigned gpio) | 396 | } |
| 483 | { | ||
| 484 | gpio_bankb[gpio_bank(gpio)]->toggle = gpio_bit(gpio); | ||
| 485 | } | 397 | } |
| 486 | #endif | ||
| 487 | EXPORT_SYMBOL(set_gpio_toggle); | 398 | EXPORT_SYMBOL(set_gpio_toggle); |
| 488 | 399 | ||
| 489 | 400 | ||
| 490 | /*Set current PORT date (16-bit word)*/ | 401 | /*Set current PORT date (16-bit word)*/ |
| 491 | 402 | ||
| 492 | #if ANOMALY_05000311 || ANOMALY_05000323 | ||
| 493 | #define SET_GPIO_P(name) \ | 403 | #define SET_GPIO_P(name) \ |
| 494 | void set_gpiop_ ## name(unsigned gpio, unsigned short arg) \ | 404 | void set_gpiop_ ## name(unsigned gpio, unsigned short arg) \ |
| 495 | { \ | 405 | { \ |
| 496 | unsigned long flags; \ | 406 | unsigned long flags; \ |
| 497 | local_irq_save_hw(flags); \ | 407 | if (ANOMALY_05000311 || ANOMALY_05000323) \ |
| 498 | gpio_bankb[gpio_bank(gpio)]->name = arg; \ | 408 | local_irq_save_hw(flags); \ |
| 499 | AWA_DUMMY_READ(name); \ | 409 | gpio_array[gpio_bank(gpio)]->name = arg; \ |
| 500 | local_irq_restore_hw(flags); \ | 410 | if (ANOMALY_05000311 || ANOMALY_05000323) { \ |
| 411 | AWA_DUMMY_READ(name); \ | ||
| 412 | local_irq_restore_hw(flags); \ | ||
| 413 | } \ | ||
| 501 | } \ | 414 | } \ |
| 502 | EXPORT_SYMBOL(set_gpiop_ ## name); | 415 | EXPORT_SYMBOL(set_gpiop_ ## name); |
| 503 | #else | ||
| 504 | #define SET_GPIO_P(name) \ | ||
| 505 | void set_gpiop_ ## name(unsigned gpio, unsigned short arg) \ | ||
| 506 | { \ | ||
| 507 | gpio_bankb[gpio_bank(gpio)]->name = arg; \ | ||
| 508 | } \ | ||
| 509 | EXPORT_SYMBOL(set_gpiop_ ## name); | ||
| 510 | #endif | ||
| 511 | 416 | ||
| 512 | SET_GPIO_P(data) | 417 | SET_GPIO_P(data) |
| 513 | SET_GPIO_P(dir) | 418 | SET_GPIO_P(dir) |
| @@ -519,27 +424,21 @@ SET_GPIO_P(maska) | |||
| 519 | SET_GPIO_P(maskb) | 424 | SET_GPIO_P(maskb) |
| 520 | 425 | ||
| 521 | /* Get a specific bit */ | 426 | /* Get a specific bit */ |
| 522 | #if ANOMALY_05000311 || ANOMALY_05000323 | ||
| 523 | #define GET_GPIO(name) \ | 427 | #define GET_GPIO(name) \ |
| 524 | unsigned short get_gpio_ ## name(unsigned gpio) \ | 428 | unsigned short get_gpio_ ## name(unsigned gpio) \ |
| 525 | { \ | 429 | { \ |
| 526 | unsigned long flags; \ | 430 | unsigned long flags; \ |
| 527 | unsigned short ret; \ | 431 | unsigned short ret; \ |
| 528 | local_irq_save_hw(flags); \ | 432 | if (ANOMALY_05000311 || ANOMALY_05000323) \ |
| 529 | ret = 0x01 & (gpio_bankb[gpio_bank(gpio)]->name >> gpio_sub_n(gpio)); \ | 433 | local_irq_save_hw(flags); \ |
| 530 | AWA_DUMMY_READ(name); \ | 434 | ret = 0x01 & (gpio_array[gpio_bank(gpio)]->name >> gpio_sub_n(gpio)); \ |
| 531 | local_irq_restore_hw(flags); \ | 435 | if (ANOMALY_05000311 || ANOMALY_05000323) { \ |
| 436 | AWA_DUMMY_READ(name); \ | ||
| 437 | local_irq_restore_hw(flags); \ | ||
| 438 | } \ | ||
| 532 | return ret; \ | 439 | return ret; \ |
| 533 | } \ | 440 | } \ |
| 534 | EXPORT_SYMBOL(get_gpio_ ## name); | 441 | EXPORT_SYMBOL(get_gpio_ ## name); |
| 535 | #else | ||
| 536 | #define GET_GPIO(name) \ | ||
| 537 | unsigned short get_gpio_ ## name(unsigned gpio) \ | ||
| 538 | { \ | ||
| 539 | return (0x01 & (gpio_bankb[gpio_bank(gpio)]->name >> gpio_sub_n(gpio))); \ | ||
| 540 | } \ | ||
| 541 | EXPORT_SYMBOL(get_gpio_ ## name); | ||
| 542 | #endif | ||
| 543 | 442 | ||
| 544 | GET_GPIO(data) | 443 | GET_GPIO(data) |
| 545 | GET_GPIO(dir) | 444 | GET_GPIO(dir) |
| @@ -552,27 +451,21 @@ GET_GPIO(maskb) | |||
| 552 | 451 | ||
| 553 | /*Get current PORT date (16-bit word)*/ | 452 | /*Get current PORT date (16-bit word)*/ |
| 554 | 453 | ||
| 555 | #if ANOMALY_05000311 || ANOMALY_05000323 | ||
| 556 | #define GET_GPIO_P(name) \ | 454 | #define GET_GPIO_P(name) \ |
| 557 | unsigned short get_gpiop_ ## name(unsigned gpio) \ | 455 | unsigned short get_gpiop_ ## name(unsigned gpio) \ |
| 558 | { \ | 456 | { \ |
| 559 | unsigned long flags; \ | 457 | unsigned long flags; \ |
| 560 | unsigned short ret; \ | 458 | unsigned short ret; \ |
| 561 | local_irq_save_hw(flags); \ | 459 | if (ANOMALY_05000311 || ANOMALY_05000323) \ |
| 562 | ret = (gpio_bankb[gpio_bank(gpio)]->name); \ | 460 | local_irq_save_hw(flags); \ |
| 563 | AWA_DUMMY_READ(name); \ | 461 | ret = (gpio_array[gpio_bank(gpio)]->name); \ |
| 564 | local_irq_restore_hw(flags); \ | 462 | if (ANOMALY_05000311 || ANOMALY_05000323) { \ |
| 463 | AWA_DUMMY_READ(name); \ | ||
| 464 | local_irq_restore_hw(flags); \ | ||
| 465 | } \ | ||
| 565 | return ret; \ | 466 | return ret; \ |
| 566 | } \ | 467 | } \ |
| 567 | EXPORT_SYMBOL(get_gpiop_ ## name); | 468 | EXPORT_SYMBOL(get_gpiop_ ## name); |
| 568 | #else | ||
| 569 | #define GET_GPIO_P(name) \ | ||
| 570 | unsigned short get_gpiop_ ## name(unsigned gpio) \ | ||
| 571 | { \ | ||
| 572 | return (gpio_bankb[gpio_bank(gpio)]->name);\ | ||
| 573 | } \ | ||
| 574 | EXPORT_SYMBOL(get_gpiop_ ## name); | ||
| 575 | #endif | ||
| 576 | 469 | ||
| 577 | GET_GPIO_P(data) | 470 | GET_GPIO_P(data) |
| 578 | GET_GPIO_P(dir) | 471 | GET_GPIO_P(dir) |
| @@ -585,6 +478,26 @@ GET_GPIO_P(maskb) | |||
| 585 | 478 | ||
| 586 | 479 | ||
| 587 | #ifdef CONFIG_PM | 480 | #ifdef CONFIG_PM |
| 481 | |||
| 482 | static unsigned short wakeup_map[GPIO_BANK_NUM]; | ||
| 483 | static unsigned char wakeup_flags_map[MAX_BLACKFIN_GPIOS]; | ||
| 484 | |||
| 485 | static const unsigned int sic_iwr_irqs[] = { | ||
| 486 | #if defined(BF533_FAMILY) | ||
| 487 | IRQ_PROG_INTB | ||
| 488 | #elif defined(BF537_FAMILY) | ||
| 489 | IRQ_PROG_INTB, IRQ_PORTG_INTB, IRQ_MAC_TX | ||
| 490 | #elif defined(BF538_FAMILY) | ||
| 491 | IRQ_PORTF_INTB | ||
| 492 | #elif defined(BF527_FAMILY) || defined(BF518_FAMILY) | ||
| 493 | IRQ_PORTF_INTB, IRQ_PORTG_INTB, IRQ_PORTH_INTB | ||
| 494 | #elif defined(BF561_FAMILY) | ||
| 495 | IRQ_PROG0_INTB, IRQ_PROG1_INTB, IRQ_PROG2_INTB | ||
| 496 | #else | ||
| 497 | # error no SIC_IWR defined | ||
| 498 | #endif | ||
| 499 | }; | ||
| 500 | |||
| 588 | /*********************************************************** | 501 | /*********************************************************** |
| 589 | * | 502 | * |
| 590 | * FUNCTIONS: Blackfin PM Setup API | 503 | * FUNCTIONS: Blackfin PM Setup API |
| @@ -669,18 +582,18 @@ u32 bfin_pm_standby_setup(void) | |||
| 669 | mask = wakeup_map[gpio_bank(i)]; | 582 | mask = wakeup_map[gpio_bank(i)]; |
| 670 | bank = gpio_bank(i); | 583 | bank = gpio_bank(i); |
| 671 | 584 | ||
| 672 | gpio_bank_saved[bank].maskb = gpio_bankb[bank]->maskb; | 585 | gpio_bank_saved[bank].maskb = gpio_array[bank]->maskb; |
| 673 | gpio_bankb[bank]->maskb = 0; | 586 | gpio_array[bank]->maskb = 0; |
| 674 | 587 | ||
| 675 | if (mask) { | 588 | if (mask) { |
| 676 | #if defined(BF527_FAMILY) || defined(BF537_FAMILY) || defined(BF518_FAMILY) | 589 | #if defined(BF527_FAMILY) || defined(BF537_FAMILY) || defined(BF518_FAMILY) |
| 677 | gpio_bank_saved[bank].fer = *port_fer[bank]; | 590 | gpio_bank_saved[bank].fer = *port_fer[bank]; |
| 678 | #endif | 591 | #endif |
| 679 | gpio_bank_saved[bank].inen = gpio_bankb[bank]->inen; | 592 | gpio_bank_saved[bank].inen = gpio_array[bank]->inen; |
| 680 | gpio_bank_saved[bank].polar = gpio_bankb[bank]->polar; | 593 | gpio_bank_saved[bank].polar = gpio_array[bank]->polar; |
| 681 | gpio_bank_saved[bank].dir = gpio_bankb[bank]->dir; | 594 | gpio_bank_saved[bank].dir = gpio_array[bank]->dir; |
| 682 | gpio_bank_saved[bank].edge = gpio_bankb[bank]->edge; | 595 | gpio_bank_saved[bank].edge = gpio_array[bank]->edge; |
| 683 | gpio_bank_saved[bank].both = gpio_bankb[bank]->both; | 596 | gpio_bank_saved[bank].both = gpio_array[bank]->both; |
| 684 | gpio_bank_saved[bank].reserved = | 597 | gpio_bank_saved[bank].reserved = |
| 685 | reserved_gpio_map[bank]; | 598 | reserved_gpio_map[bank]; |
| 686 | 599 | ||
| @@ -700,7 +613,7 @@ u32 bfin_pm_standby_setup(void) | |||
| 700 | } | 613 | } |
| 701 | 614 | ||
| 702 | bfin_internal_set_wake(sic_iwr_irqs[bank], 1); | 615 | bfin_internal_set_wake(sic_iwr_irqs[bank], 1); |
| 703 | gpio_bankb[bank]->maskb_set = wakeup_map[gpio_bank(i)]; | 616 | gpio_array[bank]->maskb_set = wakeup_map[gpio_bank(i)]; |
| 704 | } | 617 | } |
| 705 | } | 618 | } |
| 706 | 619 | ||
| @@ -721,18 +634,18 @@ void bfin_pm_standby_restore(void) | |||
| 721 | #if defined(BF527_FAMILY) || defined(BF537_FAMILY) || defined(BF518_FAMILY) | 634 | #if defined(BF527_FAMILY) || defined(BF537_FAMILY) || defined(BF518_FAMILY) |
| 722 | *port_fer[bank] = gpio_bank_saved[bank].fer; | 635 | *port_fer[bank] = gpio_bank_saved[bank].fer; |
| 723 | #endif | 636 | #endif |
| 724 | gpio_bankb[bank]->inen = gpio_bank_saved[bank].inen; | 637 | gpio_array[bank]->inen = gpio_bank_saved[bank].inen; |
| 725 | gpio_bankb[bank]->dir = gpio_bank_saved[bank].dir; | 638 | gpio_array[bank]->dir = gpio_bank_saved[bank].dir; |
| 726 | gpio_bankb[bank]->polar = gpio_bank_saved[bank].polar; | 639 | gpio_array[bank]->polar = gpio_bank_saved[bank].polar; |
| 727 | gpio_bankb[bank]->edge = gpio_bank_saved[bank].edge; | 640 | gpio_array[bank]->edge = gpio_bank_saved[bank].edge; |
| 728 | gpio_bankb[bank]->both = gpio_bank_saved[bank].both; | 641 | gpio_array[bank]->both = gpio_bank_saved[bank].both; |
| 729 | 642 | ||
| 730 | reserved_gpio_map[bank] = | 643 | reserved_gpio_map[bank] = |
| 731 | gpio_bank_saved[bank].reserved; | 644 | gpio_bank_saved[bank].reserved; |
| 732 | bfin_internal_set_wake(sic_iwr_irqs[bank], 0); | 645 | bfin_internal_set_wake(sic_iwr_irqs[bank], 0); |
| 733 | } | 646 | } |
| 734 | 647 | ||
| 735 | gpio_bankb[bank]->maskb = gpio_bank_saved[bank].maskb; | 648 | gpio_array[bank]->maskb = gpio_bank_saved[bank].maskb; |
| 736 | } | 649 | } |
| 737 | AWA_DUMMY_READ(maskb); | 650 | AWA_DUMMY_READ(maskb); |
| 738 | } | 651 | } |
| @@ -745,21 +658,21 @@ void bfin_gpio_pm_hibernate_suspend(void) | |||
| 745 | bank = gpio_bank(i); | 658 | bank = gpio_bank(i); |
| 746 | 659 | ||
| 747 | #if defined(BF527_FAMILY) || defined(BF537_FAMILY) || defined(BF518_FAMILY) | 660 | #if defined(BF527_FAMILY) || defined(BF537_FAMILY) || defined(BF518_FAMILY) |
| 748 | gpio_bank_saved[bank].fer = *port_fer[bank]; | 661 | gpio_bank_saved[bank].fer = *port_fer[bank]; |
| 749 | #if defined(BF527_FAMILY) || defined(BF518_FAMILY) | 662 | #if defined(BF527_FAMILY) || defined(BF518_FAMILY) |
| 750 | gpio_bank_saved[bank].mux = *port_mux[bank]; | 663 | gpio_bank_saved[bank].mux = *port_mux[bank]; |
| 751 | #else | 664 | #else |
| 752 | if (bank == 0) | 665 | if (bank == 0) |
| 753 | gpio_bank_saved[bank].mux = bfin_read_PORT_MUX(); | 666 | gpio_bank_saved[bank].mux = bfin_read_PORT_MUX(); |
| 754 | #endif | 667 | #endif |
| 755 | #endif | 668 | #endif |
| 756 | gpio_bank_saved[bank].data = gpio_bankb[bank]->data; | 669 | gpio_bank_saved[bank].data = gpio_array[bank]->data; |
| 757 | gpio_bank_saved[bank].inen = gpio_bankb[bank]->inen; | 670 | gpio_bank_saved[bank].inen = gpio_array[bank]->inen; |
| 758 | gpio_bank_saved[bank].polar = gpio_bankb[bank]->polar; | 671 | gpio_bank_saved[bank].polar = gpio_array[bank]->polar; |
| 759 | gpio_bank_saved[bank].dir = gpio_bankb[bank]->dir; | 672 | gpio_bank_saved[bank].dir = gpio_array[bank]->dir; |
| 760 | gpio_bank_saved[bank].edge = gpio_bankb[bank]->edge; | 673 | gpio_bank_saved[bank].edge = gpio_array[bank]->edge; |
| 761 | gpio_bank_saved[bank].both = gpio_bankb[bank]->both; | 674 | gpio_bank_saved[bank].both = gpio_array[bank]->both; |
| 762 | gpio_bank_saved[bank].maska = gpio_bankb[bank]->maska; | 675 | gpio_bank_saved[bank].maska = gpio_array[bank]->maska; |
| 763 | } | 676 | } |
| 764 | 677 | ||
| 765 | AWA_DUMMY_READ(maska); | 678 | AWA_DUMMY_READ(maska); |
| @@ -770,27 +683,27 @@ void bfin_gpio_pm_hibernate_restore(void) | |||
| 770 | int i, bank; | 683 | int i, bank; |
| 771 | 684 | ||
| 772 | for (i = 0; i < MAX_BLACKFIN_GPIOS; i += GPIO_BANKSIZE) { | 685 | for (i = 0; i < MAX_BLACKFIN_GPIOS; i += GPIO_BANKSIZE) { |
| 773 | bank = gpio_bank(i); | 686 | bank = gpio_bank(i); |
| 774 | 687 | ||
| 775 | #if defined(BF527_FAMILY) || defined(BF537_FAMILY) || defined(BF518_FAMILY) | 688 | #if defined(BF527_FAMILY) || defined(BF537_FAMILY) || defined(BF518_FAMILY) |
| 776 | #if defined(BF527_FAMILY) || defined(BF518_FAMILY) | 689 | #if defined(BF527_FAMILY) || defined(BF518_FAMILY) |
| 777 | *port_mux[bank] = gpio_bank_saved[bank].mux; | 690 | *port_mux[bank] = gpio_bank_saved[bank].mux; |
| 778 | #else | 691 | #else |
| 779 | if (bank == 0) | 692 | if (bank == 0) |
| 780 | bfin_write_PORT_MUX(gpio_bank_saved[bank].mux); | 693 | bfin_write_PORT_MUX(gpio_bank_saved[bank].mux); |
| 781 | #endif | 694 | #endif |
| 782 | *port_fer[bank] = gpio_bank_saved[bank].fer; | 695 | *port_fer[bank] = gpio_bank_saved[bank].fer; |
| 783 | #endif | 696 | #endif |
| 784 | gpio_bankb[bank]->inen = gpio_bank_saved[bank].inen; | 697 | gpio_array[bank]->inen = gpio_bank_saved[bank].inen; |
| 785 | gpio_bankb[bank]->dir = gpio_bank_saved[bank].dir; | 698 | gpio_array[bank]->dir = gpio_bank_saved[bank].dir; |
| 786 | gpio_bankb[bank]->polar = gpio_bank_saved[bank].polar; | 699 | gpio_array[bank]->polar = gpio_bank_saved[bank].polar; |
| 787 | gpio_bankb[bank]->edge = gpio_bank_saved[bank].edge; | 700 | gpio_array[bank]->edge = gpio_bank_saved[bank].edge; |
| 788 | gpio_bankb[bank]->both = gpio_bank_saved[bank].both; | 701 | gpio_array[bank]->both = gpio_bank_saved[bank].both; |
| 789 | 702 | ||
| 790 | gpio_bankb[bank]->data_set = gpio_bank_saved[bank].data | 703 | gpio_array[bank]->data_set = gpio_bank_saved[bank].data |
| 791 | | gpio_bank_saved[bank].dir; | 704 | | gpio_bank_saved[bank].dir; |
| 792 | 705 | ||
| 793 | gpio_bankb[bank]->maska = gpio_bank_saved[bank].maska; | 706 | gpio_array[bank]->maska = gpio_bank_saved[bank].maska; |
| 794 | } | 707 | } |
| 795 | AWA_DUMMY_READ(maska); | 708 | AWA_DUMMY_READ(maska); |
| 796 | } | 709 | } |
| @@ -817,12 +730,12 @@ void bfin_gpio_pm_hibernate_suspend(void) | |||
| 817 | for (i = 0; i < MAX_BLACKFIN_GPIOS; i += GPIO_BANKSIZE) { | 730 | for (i = 0; i < MAX_BLACKFIN_GPIOS; i += GPIO_BANKSIZE) { |
| 818 | bank = gpio_bank(i); | 731 | bank = gpio_bank(i); |
| 819 | 732 | ||
| 820 | gpio_bank_saved[bank].fer = gpio_array[bank]->port_fer; | 733 | gpio_bank_saved[bank].fer = gpio_array[bank]->port_fer; |
| 821 | gpio_bank_saved[bank].mux = gpio_array[bank]->port_mux; | 734 | gpio_bank_saved[bank].mux = gpio_array[bank]->port_mux; |
| 822 | gpio_bank_saved[bank].data = gpio_array[bank]->port_data; | 735 | gpio_bank_saved[bank].data = gpio_array[bank]->data; |
| 823 | gpio_bank_saved[bank].data = gpio_array[bank]->port_data; | 736 | gpio_bank_saved[bank].data = gpio_array[bank]->data; |
| 824 | gpio_bank_saved[bank].inen = gpio_array[bank]->port_inen; | 737 | gpio_bank_saved[bank].inen = gpio_array[bank]->inen; |
| 825 | gpio_bank_saved[bank].dir = gpio_array[bank]->port_dir_set; | 738 | gpio_bank_saved[bank].dir = gpio_array[bank]->dir_set; |
| 826 | } | 739 | } |
| 827 | } | 740 | } |
| 828 | 741 | ||
| @@ -831,21 +744,21 @@ void bfin_gpio_pm_hibernate_restore(void) | |||
| 831 | int i, bank; | 744 | int i, bank; |
| 832 | 745 | ||
| 833 | for (i = 0; i < MAX_BLACKFIN_GPIOS; i += GPIO_BANKSIZE) { | 746 | for (i = 0; i < MAX_BLACKFIN_GPIOS; i += GPIO_BANKSIZE) { |
| 834 | bank = gpio_bank(i); | 747 | bank = gpio_bank(i); |
| 835 | 748 | ||
| 836 | gpio_array[bank]->port_mux = gpio_bank_saved[bank].mux; | 749 | gpio_array[bank]->port_mux = gpio_bank_saved[bank].mux; |
| 837 | gpio_array[bank]->port_fer = gpio_bank_saved[bank].fer; | 750 | gpio_array[bank]->port_fer = gpio_bank_saved[bank].fer; |
| 838 | gpio_array[bank]->port_inen = gpio_bank_saved[bank].inen; | 751 | gpio_array[bank]->inen = gpio_bank_saved[bank].inen; |
| 839 | gpio_array[bank]->port_dir_set = gpio_bank_saved[bank].dir; | 752 | gpio_array[bank]->dir_set = gpio_bank_saved[bank].dir; |
| 840 | gpio_array[bank]->port_set = gpio_bank_saved[bank].data | 753 | gpio_array[bank]->data_set = gpio_bank_saved[bank].data |
| 841 | | gpio_bank_saved[bank].dir; | 754 | | gpio_bank_saved[bank].dir; |
| 842 | } | 755 | } |
| 843 | } | 756 | } |
| 844 | #endif | 757 | #endif |
| 845 | 758 | ||
| 846 | unsigned short get_gpio_dir(unsigned gpio) | 759 | unsigned short get_gpio_dir(unsigned gpio) |
| 847 | { | 760 | { |
| 848 | return (0x01 & (gpio_array[gpio_bank(gpio)]->port_dir_clear >> gpio_sub_n(gpio))); | 761 | return (0x01 & (gpio_array[gpio_bank(gpio)]->dir_clear >> gpio_sub_n(gpio))); |
| 849 | } | 762 | } |
| 850 | EXPORT_SYMBOL(get_gpio_dir); | 763 | EXPORT_SYMBOL(get_gpio_dir); |
| 851 | 764 | ||
| @@ -905,9 +818,7 @@ int peripheral_request(unsigned short per, const char *label) | |||
| 905 | */ | 818 | */ |
| 906 | 819 | ||
| 907 | #ifdef BF548_FAMILY | 820 | #ifdef BF548_FAMILY |
| 908 | u16 funct = get_portmux(ident); | 821 | if (!((per & P_MAYSHARE) && get_portmux(per) == P_FUNCT2MUX(per))) { |
| 909 | |||
| 910 | if (!((per & P_MAYSHARE) && (funct == P_FUNCT2MUX(per)))) { | ||
| 911 | #else | 822 | #else |
| 912 | if (!(per & P_MAYSHARE)) { | 823 | if (!(per & P_MAYSHARE)) { |
| 913 | #endif | 824 | #endif |
| @@ -931,11 +842,7 @@ int peripheral_request(unsigned short per, const char *label) | |||
| 931 | anyway: | 842 | anyway: |
| 932 | reserved_peri_map[gpio_bank(ident)] |= gpio_bit(ident); | 843 | reserved_peri_map[gpio_bank(ident)] |= gpio_bit(ident); |
| 933 | 844 | ||
| 934 | #ifdef BF548_FAMILY | 845 | portmux_setup(per); |
| 935 | portmux_setup(ident, P_FUNCT2MUX(per)); | ||
| 936 | #else | ||
| 937 | portmux_setup(per, P_FUNCT2MUX(per)); | ||
| 938 | #endif | ||
| 939 | port_setup(ident, PERIPHERAL_USAGE); | 846 | port_setup(ident, PERIPHERAL_USAGE); |
| 940 | 847 | ||
| 941 | local_irq_restore_hw(flags); | 848 | local_irq_restore_hw(flags); |
| @@ -977,9 +884,6 @@ void peripheral_free(unsigned short per) | |||
| 977 | if (!(per & P_DEFINED)) | 884 | if (!(per & P_DEFINED)) |
| 978 | return; | 885 | return; |
| 979 | 886 | ||
| 980 | if (check_gpio(ident) < 0) | ||
| 981 | return; | ||
| 982 | |||
| 983 | local_irq_save_hw(flags); | 887 | local_irq_save_hw(flags); |
| 984 | 888 | ||
| 985 | if (unlikely(!(reserved_peri_map[gpio_bank(ident)] & gpio_bit(ident)))) { | 889 | if (unlikely(!(reserved_peri_map[gpio_bank(ident)] & gpio_bit(ident)))) { |
| @@ -1056,9 +960,15 @@ int bfin_gpio_request(unsigned gpio, const char *label) | |||
| 1056 | local_irq_restore_hw(flags); | 960 | local_irq_restore_hw(flags); |
| 1057 | return -EBUSY; | 961 | return -EBUSY; |
| 1058 | } | 962 | } |
| 1059 | if (unlikely(reserved_gpio_irq_map[gpio_bank(gpio)] & gpio_bit(gpio))) | 963 | if (unlikely(reserved_gpio_irq_map[gpio_bank(gpio)] & gpio_bit(gpio))) { |
| 1060 | printk(KERN_NOTICE "bfin-gpio: GPIO %d is already reserved as gpio-irq!" | 964 | printk(KERN_NOTICE "bfin-gpio: GPIO %d is already reserved as gpio-irq!" |
| 1061 | " (Documentation/blackfin/bfin-gpio-notes.txt)\n", gpio); | 965 | " (Documentation/blackfin/bfin-gpio-notes.txt)\n", gpio); |
| 966 | } | ||
| 967 | #ifndef BF548_FAMILY | ||
| 968 | else { /* Reset POLAR setting when acquiring a gpio for the first time */ | ||
| 969 | set_gpio_polar(gpio, 0); | ||
| 970 | } | ||
| 971 | #endif | ||
| 1062 | 972 | ||
| 1063 | reserved_gpio_map[gpio_bank(gpio)] |= gpio_bit(gpio); | 973 | reserved_gpio_map[gpio_bank(gpio)] |= gpio_bit(gpio); |
| 1064 | set_label(gpio, label); | 974 | set_label(gpio, label); |
| @@ -1078,6 +988,8 @@ void bfin_gpio_free(unsigned gpio) | |||
| 1078 | if (check_gpio(gpio) < 0) | 988 | if (check_gpio(gpio) < 0) |
| 1079 | return; | 989 | return; |
| 1080 | 990 | ||
| 991 | might_sleep(); | ||
| 992 | |||
| 1081 | local_irq_save_hw(flags); | 993 | local_irq_save_hw(flags); |
| 1082 | 994 | ||
| 1083 | if (unlikely(!(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio)))) { | 995 | if (unlikely(!(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio)))) { |
| @@ -1158,8 +1070,16 @@ void bfin_gpio_irq_free(unsigned gpio) | |||
| 1158 | local_irq_restore_hw(flags); | 1070 | local_irq_restore_hw(flags); |
| 1159 | } | 1071 | } |
| 1160 | 1072 | ||
| 1161 | 1073 | static inline void __bfin_gpio_direction_input(unsigned gpio) | |
| 1074 | { | ||
| 1162 | #ifdef BF548_FAMILY | 1075 | #ifdef BF548_FAMILY |
| 1076 | gpio_array[gpio_bank(gpio)]->dir_clear = gpio_bit(gpio); | ||
| 1077 | #else | ||
| 1078 | gpio_array[gpio_bank(gpio)]->dir &= ~gpio_bit(gpio); | ||
| 1079 | #endif | ||
| 1080 | gpio_array[gpio_bank(gpio)]->inen |= gpio_bit(gpio); | ||
| 1081 | } | ||
| 1082 | |||
| 1163 | int bfin_gpio_direction_input(unsigned gpio) | 1083 | int bfin_gpio_direction_input(unsigned gpio) |
| 1164 | { | 1084 | { |
| 1165 | unsigned long flags; | 1085 | unsigned long flags; |
| @@ -1170,125 +1090,85 @@ int bfin_gpio_direction_input(unsigned gpio) | |||
| 1170 | } | 1090 | } |
| 1171 | 1091 | ||
| 1172 | local_irq_save_hw(flags); | 1092 | local_irq_save_hw(flags); |
| 1173 | gpio_array[gpio_bank(gpio)]->port_dir_clear = gpio_bit(gpio); | 1093 | __bfin_gpio_direction_input(gpio); |
| 1174 | gpio_array[gpio_bank(gpio)]->port_inen |= gpio_bit(gpio); | 1094 | AWA_DUMMY_READ(inen); |
| 1175 | local_irq_restore_hw(flags); | 1095 | local_irq_restore_hw(flags); |
| 1176 | 1096 | ||
| 1177 | return 0; | 1097 | return 0; |
| 1178 | } | 1098 | } |
| 1179 | EXPORT_SYMBOL(bfin_gpio_direction_input); | 1099 | EXPORT_SYMBOL(bfin_gpio_direction_input); |
| 1180 | 1100 | ||
| 1181 | int bfin_gpio_direction_output(unsigned gpio, int value) | 1101 | void bfin_gpio_irq_prepare(unsigned gpio) |
| 1182 | { | 1102 | { |
| 1103 | #ifdef BF548_FAMILY | ||
| 1183 | unsigned long flags; | 1104 | unsigned long flags; |
| 1105 | #endif | ||
| 1184 | 1106 | ||
| 1185 | if (!(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio))) { | 1107 | port_setup(gpio, GPIO_USAGE); |
| 1186 | gpio_error(gpio); | ||
| 1187 | return -EINVAL; | ||
| 1188 | } | ||
| 1189 | 1108 | ||
| 1109 | #ifdef BF548_FAMILY | ||
| 1190 | local_irq_save_hw(flags); | 1110 | local_irq_save_hw(flags); |
| 1191 | gpio_array[gpio_bank(gpio)]->port_inen &= ~gpio_bit(gpio); | 1111 | __bfin_gpio_direction_input(gpio); |
| 1192 | gpio_set_value(gpio, value); | ||
| 1193 | gpio_array[gpio_bank(gpio)]->port_dir_set = gpio_bit(gpio); | ||
| 1194 | local_irq_restore_hw(flags); | 1112 | local_irq_restore_hw(flags); |
| 1195 | 1113 | #endif | |
| 1196 | return 0; | ||
| 1197 | } | 1114 | } |
| 1198 | EXPORT_SYMBOL(bfin_gpio_direction_output); | ||
| 1199 | 1115 | ||
| 1200 | void bfin_gpio_set_value(unsigned gpio, int arg) | 1116 | void bfin_gpio_set_value(unsigned gpio, int arg) |
| 1201 | { | 1117 | { |
| 1202 | if (arg) | 1118 | if (arg) |
| 1203 | gpio_array[gpio_bank(gpio)]->port_set = gpio_bit(gpio); | 1119 | gpio_array[gpio_bank(gpio)]->data_set = gpio_bit(gpio); |
| 1204 | else | 1120 | else |
| 1205 | gpio_array[gpio_bank(gpio)]->port_clear = gpio_bit(gpio); | 1121 | gpio_array[gpio_bank(gpio)]->data_clear = gpio_bit(gpio); |
| 1206 | } | 1122 | } |
| 1207 | EXPORT_SYMBOL(bfin_gpio_set_value); | 1123 | EXPORT_SYMBOL(bfin_gpio_set_value); |
| 1208 | 1124 | ||
| 1209 | int bfin_gpio_get_value(unsigned gpio) | 1125 | int bfin_gpio_direction_output(unsigned gpio, int value) |
| 1210 | { | ||
| 1211 | return (1 & (gpio_array[gpio_bank(gpio)]->port_data >> gpio_sub_n(gpio))); | ||
| 1212 | } | ||
| 1213 | EXPORT_SYMBOL(bfin_gpio_get_value); | ||
| 1214 | |||
| 1215 | void bfin_gpio_irq_prepare(unsigned gpio) | ||
| 1216 | { | 1126 | { |
| 1217 | unsigned long flags; | 1127 | unsigned long flags; |
| 1218 | 1128 | ||
| 1219 | port_setup(gpio, GPIO_USAGE); | 1129 | if (!(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio))) { |
| 1130 | gpio_error(gpio); | ||
| 1131 | return -EINVAL; | ||
| 1132 | } | ||
| 1220 | 1133 | ||
| 1221 | local_irq_save_hw(flags); | 1134 | local_irq_save_hw(flags); |
| 1222 | gpio_array[gpio_bank(gpio)]->port_dir_clear = gpio_bit(gpio); | ||
| 1223 | gpio_array[gpio_bank(gpio)]->port_inen |= gpio_bit(gpio); | ||
| 1224 | local_irq_restore_hw(flags); | ||
| 1225 | } | ||
| 1226 | 1135 | ||
| 1136 | gpio_array[gpio_bank(gpio)]->inen &= ~gpio_bit(gpio); | ||
| 1137 | gpio_set_value(gpio, value); | ||
| 1138 | #ifdef BF548_FAMILY | ||
| 1139 | gpio_array[gpio_bank(gpio)]->dir_set = gpio_bit(gpio); | ||
| 1227 | #else | 1140 | #else |
| 1141 | gpio_array[gpio_bank(gpio)]->dir |= gpio_bit(gpio); | ||
| 1142 | #endif | ||
| 1143 | |||
| 1144 | AWA_DUMMY_READ(dir); | ||
| 1145 | local_irq_restore_hw(flags); | ||
| 1146 | |||
| 1147 | return 0; | ||
| 1148 | } | ||
| 1149 | EXPORT_SYMBOL(bfin_gpio_direction_output); | ||
| 1228 | 1150 | ||
| 1229 | int bfin_gpio_get_value(unsigned gpio) | 1151 | int bfin_gpio_get_value(unsigned gpio) |
| 1230 | { | 1152 | { |
| 1153 | #ifdef BF548_FAMILY | ||
| 1154 | return (1 & (gpio_array[gpio_bank(gpio)]->data >> gpio_sub_n(gpio))); | ||
| 1155 | #else | ||
| 1231 | unsigned long flags; | 1156 | unsigned long flags; |
| 1232 | int ret; | ||
| 1233 | 1157 | ||
| 1234 | if (unlikely(get_gpio_edge(gpio))) { | 1158 | if (unlikely(get_gpio_edge(gpio))) { |
| 1159 | int ret; | ||
| 1235 | local_irq_save_hw(flags); | 1160 | local_irq_save_hw(flags); |
| 1236 | set_gpio_edge(gpio, 0); | 1161 | set_gpio_edge(gpio, 0); |
| 1237 | ret = get_gpio_data(gpio); | 1162 | ret = get_gpio_data(gpio); |
| 1238 | set_gpio_edge(gpio, 1); | 1163 | set_gpio_edge(gpio, 1); |
| 1239 | local_irq_restore_hw(flags); | 1164 | local_irq_restore_hw(flags); |
| 1240 | |||
| 1241 | return ret; | 1165 | return ret; |
| 1242 | } else | 1166 | } else |
| 1243 | return get_gpio_data(gpio); | 1167 | return get_gpio_data(gpio); |
| 1168 | #endif | ||
| 1244 | } | 1169 | } |
| 1245 | EXPORT_SYMBOL(bfin_gpio_get_value); | 1170 | EXPORT_SYMBOL(bfin_gpio_get_value); |
| 1246 | 1171 | ||
| 1247 | |||
| 1248 | int bfin_gpio_direction_input(unsigned gpio) | ||
| 1249 | { | ||
| 1250 | unsigned long flags; | ||
| 1251 | |||
| 1252 | if (!(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio))) { | ||
| 1253 | gpio_error(gpio); | ||
| 1254 | return -EINVAL; | ||
| 1255 | } | ||
| 1256 | |||
| 1257 | local_irq_save_hw(flags); | ||
| 1258 | gpio_bankb[gpio_bank(gpio)]->dir &= ~gpio_bit(gpio); | ||
| 1259 | gpio_bankb[gpio_bank(gpio)]->inen |= gpio_bit(gpio); | ||
| 1260 | AWA_DUMMY_READ(inen); | ||
| 1261 | local_irq_restore_hw(flags); | ||
| 1262 | |||
| 1263 | return 0; | ||
| 1264 | } | ||
| 1265 | EXPORT_SYMBOL(bfin_gpio_direction_input); | ||
| 1266 | |||
| 1267 | int bfin_gpio_direction_output(unsigned gpio, int value) | ||
| 1268 | { | ||
| 1269 | unsigned long flags; | ||
| 1270 | |||
| 1271 | if (!(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio))) { | ||
| 1272 | gpio_error(gpio); | ||
| 1273 | return -EINVAL; | ||
| 1274 | } | ||
| 1275 | |||
| 1276 | local_irq_save_hw(flags); | ||
| 1277 | gpio_bankb[gpio_bank(gpio)]->inen &= ~gpio_bit(gpio); | ||
| 1278 | |||
| 1279 | if (value) | ||
| 1280 | gpio_bankb[gpio_bank(gpio)]->data_set = gpio_bit(gpio); | ||
| 1281 | else | ||
| 1282 | gpio_bankb[gpio_bank(gpio)]->data_clear = gpio_bit(gpio); | ||
| 1283 | |||
| 1284 | gpio_bankb[gpio_bank(gpio)]->dir |= gpio_bit(gpio); | ||
| 1285 | AWA_DUMMY_READ(dir); | ||
| 1286 | local_irq_restore_hw(flags); | ||
| 1287 | |||
| 1288 | return 0; | ||
| 1289 | } | ||
| 1290 | EXPORT_SYMBOL(bfin_gpio_direction_output); | ||
| 1291 | |||
| 1292 | /* If we are booting from SPI and our board lacks a strong enough pull up, | 1172 | /* If we are booting from SPI and our board lacks a strong enough pull up, |
| 1293 | * the core can reset and execute the bootrom faster than the resistor can | 1173 | * the core can reset and execute the bootrom faster than the resistor can |
| 1294 | * pull the signal logically high. To work around this (common) error in | 1174 | * pull the signal logically high. To work around this (common) error in |
| @@ -1299,23 +1179,15 @@ EXPORT_SYMBOL(bfin_gpio_direction_output); | |||
| 1299 | * lives here as we need to force all the GPIO states w/out going through | 1179 | * lives here as we need to force all the GPIO states w/out going through |
| 1300 | * BUG() checks and such. | 1180 | * BUG() checks and such. |
| 1301 | */ | 1181 | */ |
| 1302 | void bfin_gpio_reset_spi0_ssel1(void) | 1182 | void bfin_reset_boot_spi_cs(unsigned short pin) |
| 1303 | { | 1183 | { |
| 1304 | u16 gpio = P_IDENT(P_SPI0_SSEL1); | 1184 | unsigned short gpio = P_IDENT(pin); |
| 1305 | |||
| 1306 | port_setup(gpio, GPIO_USAGE); | 1185 | port_setup(gpio, GPIO_USAGE); |
| 1307 | gpio_bankb[gpio_bank(gpio)]->data_set = gpio_bit(gpio); | 1186 | gpio_array[gpio_bank(gpio)]->data_set = gpio_bit(gpio); |
| 1308 | AWA_DUMMY_READ(data_set); | 1187 | AWA_DUMMY_READ(data_set); |
| 1309 | udelay(1); | 1188 | udelay(1); |
| 1310 | } | 1189 | } |
| 1311 | 1190 | ||
| 1312 | void bfin_gpio_irq_prepare(unsigned gpio) | ||
| 1313 | { | ||
| 1314 | port_setup(gpio, GPIO_USAGE); | ||
| 1315 | } | ||
| 1316 | |||
| 1317 | #endif /*BF548_FAMILY */ | ||
| 1318 | |||
| 1319 | #if defined(CONFIG_PROC_FS) | 1191 | #if defined(CONFIG_PROC_FS) |
| 1320 | static int gpio_proc_read(char *buf, char **start, off_t offset, | 1192 | static int gpio_proc_read(char *buf, char **start, off_t offset, |
| 1321 | int len, int *unused_i, void *unused_v) | 1193 | int len, int *unused_i, void *unused_v) |
| @@ -1369,11 +1241,7 @@ int bfin_gpiolib_get_value(struct gpio_chip *chip, unsigned gpio) | |||
| 1369 | 1241 | ||
| 1370 | void bfin_gpiolib_set_value(struct gpio_chip *chip, unsigned gpio, int value) | 1242 | void bfin_gpiolib_set_value(struct gpio_chip *chip, unsigned gpio, int value) |
| 1371 | { | 1243 | { |
| 1372 | #ifdef BF548_FAMILY | ||
| 1373 | return bfin_gpio_set_value(gpio, value); | 1244 | return bfin_gpio_set_value(gpio, value); |
| 1374 | #else | ||
| 1375 | return set_gpio_data(gpio, value); | ||
| 1376 | #endif | ||
| 1377 | } | 1245 | } |
| 1378 | 1246 | ||
| 1379 | int bfin_gpiolib_gpio_request(struct gpio_chip *chip, unsigned gpio) | 1247 | int bfin_gpiolib_gpio_request(struct gpio_chip *chip, unsigned gpio) |
diff --git a/arch/blackfin/kernel/cplb-mpu/cplbinit.c b/arch/blackfin/kernel/cplb-mpu/cplbinit.c index bdb958486e76..3e329a6ce041 100644 --- a/arch/blackfin/kernel/cplb-mpu/cplbinit.c +++ b/arch/blackfin/kernel/cplb-mpu/cplbinit.c | |||
| @@ -63,10 +63,8 @@ void __init generate_cplb_tables_cpu(unsigned int cpu) | |||
| 63 | dcplb_tbl[cpu][i_d].addr = 0; | 63 | dcplb_tbl[cpu][i_d].addr = 0; |
| 64 | dcplb_tbl[cpu][i_d++].data = SDRAM_OOPS | PAGE_SIZE_1KB; | 64 | dcplb_tbl[cpu][i_d++].data = SDRAM_OOPS | PAGE_SIZE_1KB; |
| 65 | 65 | ||
| 66 | #if 0 | ||
| 67 | icplb_tbl[cpu][i_i].addr = 0; | 66 | icplb_tbl[cpu][i_i].addr = 0; |
| 68 | icplb_tbl[cpu][i_i++].data = i_cache | CPLB_USER_RD | PAGE_SIZE_4KB; | 67 | icplb_tbl[cpu][i_i++].data = i_cache | CPLB_USER_RD | PAGE_SIZE_1KB; |
| 69 | #endif | ||
| 70 | 68 | ||
| 71 | /* Cover kernel memory with 4M pages. */ | 69 | /* Cover kernel memory with 4M pages. */ |
| 72 | addr = 0; | 70 | addr = 0; |
diff --git a/arch/blackfin/kernel/cplb-nompu/cplbmgr.c b/arch/blackfin/kernel/cplb-nompu/cplbmgr.c index 376249ab2694..8cbb47c7b663 100644 --- a/arch/blackfin/kernel/cplb-nompu/cplbmgr.c +++ b/arch/blackfin/kernel/cplb-nompu/cplbmgr.c | |||
| @@ -163,12 +163,14 @@ MGR_ATTR static int icplb_miss(int cpu) | |||
| 163 | nr_icplb_supv_miss[cpu]++; | 163 | nr_icplb_supv_miss[cpu]++; |
| 164 | 164 | ||
| 165 | base = 0; | 165 | base = 0; |
| 166 | for (idx = 0; idx < icplb_nr_bounds; idx++) { | 166 | idx = 0; |
| 167 | do { | ||
| 167 | eaddr = icplb_bounds[idx].eaddr; | 168 | eaddr = icplb_bounds[idx].eaddr; |
| 168 | if (addr < eaddr) | 169 | if (addr < eaddr) |
| 169 | break; | 170 | break; |
| 170 | base = eaddr; | 171 | base = eaddr; |
| 171 | } | 172 | } while (++idx < icplb_nr_bounds); |
| 173 | |||
| 172 | if (unlikely(idx == icplb_nr_bounds)) | 174 | if (unlikely(idx == icplb_nr_bounds)) |
| 173 | return CPLB_NO_ADDR_MATCH; | 175 | return CPLB_NO_ADDR_MATCH; |
| 174 | 176 | ||
| @@ -208,12 +210,14 @@ MGR_ATTR static int dcplb_miss(int cpu) | |||
| 208 | nr_dcplb_supv_miss[cpu]++; | 210 | nr_dcplb_supv_miss[cpu]++; |
| 209 | 211 | ||
| 210 | base = 0; | 212 | base = 0; |
| 211 | for (idx = 0; idx < dcplb_nr_bounds; idx++) { | 213 | idx = 0; |
| 214 | do { | ||
| 212 | eaddr = dcplb_bounds[idx].eaddr; | 215 | eaddr = dcplb_bounds[idx].eaddr; |
| 213 | if (addr < eaddr) | 216 | if (addr < eaddr) |
| 214 | break; | 217 | break; |
| 215 | base = eaddr; | 218 | base = eaddr; |
| 216 | } | 219 | } while (++idx < dcplb_nr_bounds); |
| 220 | |||
| 217 | if (unlikely(idx == dcplb_nr_bounds)) | 221 | if (unlikely(idx == dcplb_nr_bounds)) |
| 218 | return CPLB_NO_ADDR_MATCH; | 222 | return CPLB_NO_ADDR_MATCH; |
| 219 | 223 | ||
diff --git a/arch/blackfin/kernel/irqchip.c b/arch/blackfin/kernel/irqchip.c index ab8209cbbad0..75724eee6494 100644 --- a/arch/blackfin/kernel/irqchip.c +++ b/arch/blackfin/kernel/irqchip.c | |||
| @@ -35,6 +35,7 @@ | |||
| 35 | #include <linux/interrupt.h> | 35 | #include <linux/interrupt.h> |
| 36 | #include <linux/irq.h> | 36 | #include <linux/irq.h> |
| 37 | #include <asm/trace.h> | 37 | #include <asm/trace.h> |
| 38 | #include <asm/pda.h> | ||
| 38 | 39 | ||
| 39 | static atomic_t irq_err_count; | 40 | static atomic_t irq_err_count; |
| 40 | static spinlock_t irq_controller_lock; | 41 | static spinlock_t irq_controller_lock; |
| @@ -91,8 +92,13 @@ int show_interrupts(struct seq_file *p, void *v) | |||
| 91 | seq_putc(p, '\n'); | 92 | seq_putc(p, '\n'); |
| 92 | skip: | 93 | skip: |
| 93 | spin_unlock_irqrestore(&irq_desc[i].lock, flags); | 94 | spin_unlock_irqrestore(&irq_desc[i].lock, flags); |
| 94 | } else if (i == NR_IRQS) | 95 | } else if (i == NR_IRQS) { |
| 96 | seq_printf(p, "NMI: "); | ||
| 97 | for_each_online_cpu(j) | ||
| 98 | seq_printf(p, "%10u ", cpu_pda[j].__nmi_count); | ||
| 99 | seq_printf(p, " CORE Non Maskable Interrupt\n"); | ||
| 95 | seq_printf(p, "Err: %10u\n", atomic_read(&irq_err_count)); | 100 | seq_printf(p, "Err: %10u\n", atomic_read(&irq_err_count)); |
| 101 | } | ||
| 96 | return 0; | 102 | return 0; |
| 97 | } | 103 | } |
| 98 | 104 | ||
diff --git a/arch/blackfin/kernel/reboot.c b/arch/blackfin/kernel/reboot.c index eeee8cb43360..53d08dee8531 100644 --- a/arch/blackfin/kernel/reboot.c +++ b/arch/blackfin/kernel/reboot.c | |||
| @@ -20,8 +20,8 @@ | |||
| 20 | * reset while the Core B bit (on dual core parts) is cleared by | 20 | * reset while the Core B bit (on dual core parts) is cleared by |
| 21 | * the core reset. | 21 | * the core reset. |
| 22 | */ | 22 | */ |
| 23 | __attribute__((l1_text)) | 23 | __attribute__ ((__l1_text__, __noreturn__)) |
| 24 | static void _bfin_reset(void) | 24 | static void bfin_reset(void) |
| 25 | { | 25 | { |
| 26 | /* Wait for completion of "system" events such as cache line | 26 | /* Wait for completion of "system" events such as cache line |
| 27 | * line fills so that we avoid infinite stalls later on as | 27 | * line fills so that we avoid infinite stalls later on as |
| @@ -30,7 +30,11 @@ static void _bfin_reset(void) | |||
| 30 | */ | 30 | */ |
| 31 | __builtin_bfin_ssync(); | 31 | __builtin_bfin_ssync(); |
| 32 | 32 | ||
| 33 | while (1) { | 33 | /* The bootrom checks to see how it was reset and will |
| 34 | * automatically perform a software reset for us when | ||
| 35 | * it starts executing after the core reset. | ||
| 36 | */ | ||
| 37 | if (ANOMALY_05000353 || ANOMALY_05000386) { | ||
| 34 | /* Initiate System software reset. */ | 38 | /* Initiate System software reset. */ |
| 35 | bfin_write_SWRST(0x7); | 39 | bfin_write_SWRST(0x7); |
| 36 | 40 | ||
| @@ -50,6 +54,11 @@ static void _bfin_reset(void) | |||
| 50 | /* Clear System software reset */ | 54 | /* Clear System software reset */ |
| 51 | bfin_write_SWRST(0); | 55 | bfin_write_SWRST(0); |
| 52 | 56 | ||
| 57 | /* The BF526 ROM will crash during reset */ | ||
| 58 | #if defined(__ADSPBF522__) || defined(__ADSPBF524__) || defined(__ADSPBF526__) | ||
| 59 | bfin_read_SWRST(); | ||
| 60 | #endif | ||
| 61 | |||
| 53 | /* Wait for the SWRST write to complete. Cannot rely on SSYNC | 62 | /* Wait for the SWRST write to complete. Cannot rely on SSYNC |
| 54 | * though as the System state is all reset now. | 63 | * though as the System state is all reset now. |
| 55 | */ | 64 | */ |
| @@ -60,22 +69,11 @@ static void _bfin_reset(void) | |||
| 60 | : "a" (15 * 1) | 69 | : "a" (15 * 1) |
| 61 | : "LC1", "LB1", "LT1" | 70 | : "LC1", "LB1", "LT1" |
| 62 | ); | 71 | ); |
| 72 | } | ||
| 63 | 73 | ||
| 74 | while (1) | ||
| 64 | /* Issue core reset */ | 75 | /* Issue core reset */ |
| 65 | asm("raise 1"); | 76 | asm("raise 1"); |
| 66 | } | ||
| 67 | } | ||
| 68 | |||
| 69 | static void bfin_reset(void) | ||
| 70 | { | ||
| 71 | if (ANOMALY_05000353 || ANOMALY_05000386) | ||
| 72 | _bfin_reset(); | ||
| 73 | else | ||
| 74 | /* the bootrom checks to see how it was reset and will | ||
| 75 | * automatically perform a software reset for us when | ||
| 76 | * it starts executing boot | ||
| 77 | */ | ||
| 78 | asm("raise 1;"); | ||
| 79 | } | 77 | } |
| 80 | 78 | ||
| 81 | __attribute__((weak)) | 79 | __attribute__((weak)) |
diff --git a/arch/blackfin/kernel/setup.c b/arch/blackfin/kernel/setup.c index b2a811347b65..e5c116230800 100644 --- a/arch/blackfin/kernel/setup.c +++ b/arch/blackfin/kernel/setup.c | |||
| @@ -60,7 +60,7 @@ void __initdata *init_retx, *init_saved_retx, *init_saved_seqstat, | |||
| 60 | #define BFIN_MEMMAP_MAX 128 /* number of entries in bfin_memmap */ | 60 | #define BFIN_MEMMAP_MAX 128 /* number of entries in bfin_memmap */ |
| 61 | #define BFIN_MEMMAP_RAM 1 | 61 | #define BFIN_MEMMAP_RAM 1 |
| 62 | #define BFIN_MEMMAP_RESERVED 2 | 62 | #define BFIN_MEMMAP_RESERVED 2 |
| 63 | struct bfin_memmap { | 63 | static struct bfin_memmap { |
| 64 | int nr_map; | 64 | int nr_map; |
| 65 | struct bfin_memmap_entry { | 65 | struct bfin_memmap_entry { |
| 66 | unsigned long long addr; /* start of memory segment */ | 66 | unsigned long long addr; /* start of memory segment */ |
| @@ -824,7 +824,15 @@ void __init setup_arch(char **cmdline_p) | |||
| 824 | flash_probe(); | 824 | flash_probe(); |
| 825 | #endif | 825 | #endif |
| 826 | 826 | ||
| 827 | printk(KERN_INFO "Boot Mode: %i\n", bfin_read_SYSCR() & 0xF); | ||
| 828 | |||
| 829 | /* Newer parts mirror SWRST bits in SYSCR */ | ||
| 830 | #if defined(CONFIG_BF53x) || defined(CONFIG_BF561) || \ | ||
| 831 | defined(CONFIG_BF538) || defined(CONFIG_BF539) | ||
| 827 | _bfin_swrst = bfin_read_SWRST(); | 832 | _bfin_swrst = bfin_read_SWRST(); |
| 833 | #else | ||
| 834 | _bfin_swrst = bfin_read_SYSCR(); | ||
| 835 | #endif | ||
| 828 | 836 | ||
| 829 | #ifdef CONFIG_DEBUG_DOUBLEFAULT_PRINT | 837 | #ifdef CONFIG_DEBUG_DOUBLEFAULT_PRINT |
| 830 | bfin_write_SWRST(_bfin_swrst & ~DOUBLE_FAULT); | 838 | bfin_write_SWRST(_bfin_swrst & ~DOUBLE_FAULT); |
| @@ -853,7 +861,7 @@ void __init setup_arch(char **cmdline_p) | |||
| 853 | else if (_bfin_swrst & RESET_SOFTWARE) | 861 | else if (_bfin_swrst & RESET_SOFTWARE) |
| 854 | printk(KERN_NOTICE "Reset caused by Software reset\n"); | 862 | printk(KERN_NOTICE "Reset caused by Software reset\n"); |
| 855 | 863 | ||
| 856 | printk(KERN_INFO "Blackfin support (C) 2004-2008 Analog Devices, Inc.\n"); | 864 | printk(KERN_INFO "Blackfin support (C) 2004-2009 Analog Devices, Inc.\n"); |
| 857 | if (bfin_compiled_revid() == 0xffff) | 865 | if (bfin_compiled_revid() == 0xffff) |
| 858 | printk(KERN_INFO "Compiled for ADSP-%s Rev any\n", CPU); | 866 | printk(KERN_INFO "Compiled for ADSP-%s Rev any\n", CPU); |
| 859 | else if (bfin_compiled_revid() == -1) | 867 | else if (bfin_compiled_revid() == -1) |
diff --git a/arch/blackfin/kernel/traps.c b/arch/blackfin/kernel/traps.c index 5b0667da8d05..ffe7fb53eccb 100644 --- a/arch/blackfin/kernel/traps.c +++ b/arch/blackfin/kernel/traps.c | |||
| @@ -673,6 +673,14 @@ static void decode_instruction(unsigned short *address) | |||
| 673 | verbose_printk("RTI"); | 673 | verbose_printk("RTI"); |
| 674 | else if (opcode == 0x0012) | 674 | else if (opcode == 0x0012) |
| 675 | verbose_printk("RTX"); | 675 | verbose_printk("RTX"); |
| 676 | else if (opcode == 0x0013) | ||
| 677 | verbose_printk("RTN"); | ||
| 678 | else if (opcode == 0x0014) | ||
| 679 | verbose_printk("RTE"); | ||
| 680 | else if (opcode == 0x0025) | ||
| 681 | verbose_printk("EMUEXCPT"); | ||
| 682 | else if (opcode == 0x0040 && opcode <= 0x0047) | ||
| 683 | verbose_printk("STI R%i", opcode & 7); | ||
| 676 | else if (opcode >= 0x0050 && opcode <= 0x0057) | 684 | else if (opcode >= 0x0050 && opcode <= 0x0057) |
| 677 | verbose_printk("JUMP (P%i)", opcode & 7); | 685 | verbose_printk("JUMP (P%i)", opcode & 7); |
| 678 | else if (opcode >= 0x0060 && opcode <= 0x0067) | 686 | else if (opcode >= 0x0060 && opcode <= 0x0067) |
| @@ -681,6 +689,10 @@ static void decode_instruction(unsigned short *address) | |||
| 681 | verbose_printk("CALL (PC+P%i)", opcode & 7); | 689 | verbose_printk("CALL (PC+P%i)", opcode & 7); |
| 682 | else if (opcode >= 0x0080 && opcode <= 0x0087) | 690 | else if (opcode >= 0x0080 && opcode <= 0x0087) |
| 683 | verbose_printk("JUMP (PC+P%i)", opcode & 7); | 691 | verbose_printk("JUMP (PC+P%i)", opcode & 7); |
| 692 | else if (opcode >= 0x0090 && opcode <= 0x009F) | ||
| 693 | verbose_printk("RAISE 0x%x", opcode & 0xF); | ||
| 694 | else if (opcode >= 0x00A0 && opcode <= 0x00AF) | ||
| 695 | verbose_printk("EXCPT 0x%x", opcode & 0xF); | ||
| 684 | else if ((opcode >= 0x1000 && opcode <= 0x13FF) || (opcode >= 0x1800 && opcode <= 0x1BFF)) | 696 | else if ((opcode >= 0x1000 && opcode <= 0x13FF) || (opcode >= 0x1800 && opcode <= 0x1BFF)) |
| 685 | verbose_printk("IF !CC JUMP"); | 697 | verbose_printk("IF !CC JUMP"); |
| 686 | else if ((opcode >= 0x1400 && opcode <= 0x17ff) || (opcode >= 0x1c00 && opcode <= 0x1fff)) | 698 | else if ((opcode >= 0x1400 && opcode <= 0x17ff) || (opcode >= 0x1c00 && opcode <= 0x1fff)) |
| @@ -820,11 +832,8 @@ void show_stack(struct task_struct *task, unsigned long *stack) | |||
| 820 | decode_address(buf, (unsigned int)stack); | 832 | decode_address(buf, (unsigned int)stack); |
| 821 | printk(KERN_NOTICE " SP: [0x%p] %s\n", stack, buf); | 833 | printk(KERN_NOTICE " SP: [0x%p] %s\n", stack, buf); |
| 822 | 834 | ||
| 823 | addr = (unsigned int *)((unsigned int)stack & ~0x3F); | ||
| 824 | |||
| 825 | /* First thing is to look for a frame pointer */ | 835 | /* First thing is to look for a frame pointer */ |
| 826 | for (addr = (unsigned int *)((unsigned int)stack & ~0xF), i = 0; | 836 | for (addr = (unsigned int *)((unsigned int)stack & ~0xF); addr < endstack; addr++) { |
| 827 | addr < endstack; addr++, i++) { | ||
| 828 | if (*addr & 0x1) | 837 | if (*addr & 0x1) |
| 829 | continue; | 838 | continue; |
| 830 | ins_addr = (unsigned short *)*addr; | 839 | ins_addr = (unsigned short *)*addr; |
| @@ -834,7 +843,8 @@ void show_stack(struct task_struct *task, unsigned long *stack) | |||
| 834 | 843 | ||
| 835 | if (fp) { | 844 | if (fp) { |
| 836 | /* Let's check to see if it is a frame pointer */ | 845 | /* Let's check to see if it is a frame pointer */ |
| 837 | while (fp >= (addr - 1) && fp < endstack && fp) | 846 | while (fp >= (addr - 1) && fp < endstack |
| 847 | && fp && ((unsigned int) fp & 0x3) == 0) | ||
| 838 | fp = (unsigned int *)*fp; | 848 | fp = (unsigned int *)*fp; |
| 839 | if (fp == 0 || fp == endstack) { | 849 | if (fp == 0 || fp == endstack) { |
| 840 | fp = addr - 1; | 850 | fp = addr - 1; |
| @@ -1052,8 +1062,9 @@ void show_regs(struct pt_regs *fp) | |||
| 1052 | char buf [150]; | 1062 | char buf [150]; |
| 1053 | struct irqaction *action; | 1063 | struct irqaction *action; |
| 1054 | unsigned int i; | 1064 | unsigned int i; |
| 1055 | unsigned long flags; | 1065 | unsigned long flags = 0; |
| 1056 | unsigned int cpu = smp_processor_id(); | 1066 | unsigned int cpu = smp_processor_id(); |
| 1067 | unsigned char in_atomic = (bfin_read_IPEND() & 0x10) || in_atomic(); | ||
| 1057 | 1068 | ||
| 1058 | verbose_printk(KERN_NOTICE "\n" KERN_NOTICE "SEQUENCER STATUS:\t\t%s\n", print_tainted()); | 1069 | verbose_printk(KERN_NOTICE "\n" KERN_NOTICE "SEQUENCER STATUS:\t\t%s\n", print_tainted()); |
| 1059 | verbose_printk(KERN_NOTICE " SEQSTAT: %08lx IPEND: %04lx SYSCFG: %04lx\n", | 1070 | verbose_printk(KERN_NOTICE " SEQSTAT: %08lx IPEND: %04lx SYSCFG: %04lx\n", |
| @@ -1073,17 +1084,22 @@ void show_regs(struct pt_regs *fp) | |||
| 1073 | } | 1084 | } |
| 1074 | verbose_printk(KERN_NOTICE " EXCAUSE : 0x%lx\n", | 1085 | verbose_printk(KERN_NOTICE " EXCAUSE : 0x%lx\n", |
| 1075 | fp->seqstat & SEQSTAT_EXCAUSE); | 1086 | fp->seqstat & SEQSTAT_EXCAUSE); |
| 1076 | for (i = 6; i <= 15 ; i++) { | 1087 | for (i = 2; i <= 15 ; i++) { |
| 1077 | if (fp->ipend & (1 << i)) { | 1088 | if (fp->ipend & (1 << i)) { |
| 1078 | decode_address(buf, bfin_read32(EVT0 + 4*i)); | 1089 | if (i != 4) { |
| 1079 | verbose_printk(KERN_NOTICE " physical IVG%i asserted : %s\n", i, buf); | 1090 | decode_address(buf, bfin_read32(EVT0 + 4*i)); |
| 1091 | verbose_printk(KERN_NOTICE " physical IVG%i asserted : %s\n", i, buf); | ||
| 1092 | } else | ||
| 1093 | verbose_printk(KERN_NOTICE " interrupts disabled\n"); | ||
| 1080 | } | 1094 | } |
| 1081 | } | 1095 | } |
| 1082 | 1096 | ||
| 1083 | /* if no interrupts are going off, don't print this out */ | 1097 | /* if no interrupts are going off, don't print this out */ |
| 1084 | if (fp->ipend & ~0x3F) { | 1098 | if (fp->ipend & ~0x3F) { |
| 1085 | for (i = 0; i < (NR_IRQS - 1); i++) { | 1099 | for (i = 0; i < (NR_IRQS - 1); i++) { |
| 1086 | spin_lock_irqsave(&irq_desc[i].lock, flags); | 1100 | if (!in_atomic) |
| 1101 | spin_lock_irqsave(&irq_desc[i].lock, flags); | ||
| 1102 | |||
| 1087 | action = irq_desc[i].action; | 1103 | action = irq_desc[i].action; |
| 1088 | if (!action) | 1104 | if (!action) |
| 1089 | goto unlock; | 1105 | goto unlock; |
| @@ -1096,7 +1112,8 @@ void show_regs(struct pt_regs *fp) | |||
| 1096 | } | 1112 | } |
| 1097 | verbose_printk("\n"); | 1113 | verbose_printk("\n"); |
| 1098 | unlock: | 1114 | unlock: |
| 1099 | spin_unlock_irqrestore(&irq_desc[i].lock, flags); | 1115 | if (!in_atomic) |
| 1116 | spin_unlock_irqrestore(&irq_desc[i].lock, flags); | ||
| 1100 | } | 1117 | } |
| 1101 | } | 1118 | } |
| 1102 | 1119 | ||
diff --git a/arch/blackfin/mach-bf518/boards/ezbrd.c b/arch/blackfin/mach-bf518/boards/ezbrd.c index 15f1351c8645..0e175342112e 100644 --- a/arch/blackfin/mach-bf518/boards/ezbrd.c +++ b/arch/blackfin/mach-bf518/boards/ezbrd.c | |||
| @@ -46,6 +46,7 @@ | |||
| 46 | #include <asm/dpmc.h> | 46 | #include <asm/dpmc.h> |
| 47 | #include <asm/bfin_sdh.h> | 47 | #include <asm/bfin_sdh.h> |
| 48 | #include <linux/spi/ad7877.h> | 48 | #include <linux/spi/ad7877.h> |
| 49 | #include <net/dsa.h> | ||
| 49 | 50 | ||
| 50 | /* | 51 | /* |
| 51 | * Name the Board for the /proc/cpuinfo | 52 | * Name the Board for the /proc/cpuinfo |
| @@ -104,8 +105,31 @@ static struct platform_device rtc_device = { | |||
| 104 | #endif | 105 | #endif |
| 105 | 106 | ||
| 106 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 107 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 108 | static struct platform_device bfin_mii_bus = { | ||
| 109 | .name = "bfin_mii_bus", | ||
| 110 | }; | ||
| 111 | |||
| 107 | static struct platform_device bfin_mac_device = { | 112 | static struct platform_device bfin_mac_device = { |
| 108 | .name = "bfin_mac", | 113 | .name = "bfin_mac", |
| 114 | .dev.platform_data = &bfin_mii_bus, | ||
| 115 | }; | ||
| 116 | #endif | ||
| 117 | |||
| 118 | #if defined(CONFIG_NET_DSA_KSZ8893M) || defined(CONFIG_NET_DSA_KSZ8893M_MODULE) | ||
| 119 | static struct dsa_platform_data ksz8893m_switch_data = { | ||
| 120 | .mii_bus = &bfin_mii_bus.dev, | ||
| 121 | .netdev = &bfin_mac_device.dev, | ||
| 122 | .port_names[0] = NULL, | ||
| 123 | .port_names[1] = "eth%d", | ||
| 124 | .port_names[2] = "eth%d", | ||
| 125 | .port_names[3] = "cpu", | ||
| 126 | }; | ||
| 127 | |||
| 128 | static struct platform_device ksz8893m_switch_device = { | ||
| 129 | .name = "dsa", | ||
| 130 | .id = 0, | ||
| 131 | .num_resources = 0, | ||
| 132 | .dev.platform_data = &ksz8893m_switch_data, | ||
| 109 | }; | 133 | }; |
| 110 | #endif | 134 | #endif |
| 111 | 135 | ||
| @@ -147,6 +171,15 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = { | |||
| 147 | }; | 171 | }; |
| 148 | #endif | 172 | #endif |
| 149 | 173 | ||
| 174 | #if defined(CONFIG_NET_DSA_KSZ8893M) \ | ||
| 175 | || defined(CONFIG_NET_DSA_KSZ8893M_MODULE) | ||
| 176 | /* SPI SWITCH CHIP */ | ||
| 177 | static struct bfin5xx_spi_chip spi_switch_info = { | ||
| 178 | .enable_dma = 0, | ||
| 179 | .bits_per_word = 8, | ||
| 180 | }; | ||
| 181 | #endif | ||
| 182 | |||
| 150 | #if defined(CONFIG_SPI_MMC) || defined(CONFIG_SPI_MMC_MODULE) | 183 | #if defined(CONFIG_SPI_MMC) || defined(CONFIG_SPI_MMC_MODULE) |
| 151 | static struct bfin5xx_spi_chip spi_mmc_chip_info = { | 184 | static struct bfin5xx_spi_chip spi_mmc_chip_info = { |
| 152 | .enable_dma = 1, | 185 | .enable_dma = 1, |
| @@ -226,6 +259,19 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = { | |||
| 226 | }, | 259 | }, |
| 227 | #endif | 260 | #endif |
| 228 | 261 | ||
| 262 | #if defined(CONFIG_NET_DSA_KSZ8893M) \ | ||
| 263 | || defined(CONFIG_NET_DSA_KSZ8893M_MODULE) | ||
| 264 | { | ||
| 265 | .modalias = "ksz8893m", | ||
| 266 | .max_speed_hz = 5000000, | ||
| 267 | .bus_num = 0, | ||
| 268 | .chip_select = 1, | ||
| 269 | .platform_data = NULL, | ||
| 270 | .controller_data = &spi_switch_info, | ||
| 271 | .mode = SPI_MODE_3, | ||
| 272 | }, | ||
| 273 | #endif | ||
| 274 | |||
| 229 | #if defined(CONFIG_SPI_MMC) || defined(CONFIG_SPI_MMC_MODULE) | 275 | #if defined(CONFIG_SPI_MMC) || defined(CONFIG_SPI_MMC_MODULE) |
| 230 | { | 276 | { |
| 231 | .modalias = "spi_mmc_dummy", | 277 | .modalias = "spi_mmc_dummy", |
| @@ -473,7 +519,6 @@ static struct platform_device i2c_bfin_twi_device = { | |||
| 473 | }; | 519 | }; |
| 474 | #endif | 520 | #endif |
| 475 | 521 | ||
| 476 | #ifdef CONFIG_I2C_BOARDINFO | ||
| 477 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { | 522 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { |
| 478 | #if defined(CONFIG_TWI_LCD) || defined(CONFIG_TWI_LCD_MODULE) | 523 | #if defined(CONFIG_TWI_LCD) || defined(CONFIG_TWI_LCD_MODULE) |
| 479 | { | 524 | { |
| @@ -487,7 +532,6 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = { | |||
| 487 | }, | 532 | }, |
| 488 | #endif | 533 | #endif |
| 489 | }; | 534 | }; |
| 490 | #endif | ||
| 491 | 535 | ||
| 492 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) | 536 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) |
| 493 | static struct platform_device bfin_sport0_uart_device = { | 537 | static struct platform_device bfin_sport0_uart_device = { |
| @@ -584,9 +628,14 @@ static struct platform_device *stamp_devices[] __initdata = { | |||
| 584 | #endif | 628 | #endif |
| 585 | 629 | ||
| 586 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 630 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 631 | &bfin_mii_bus, | ||
| 587 | &bfin_mac_device, | 632 | &bfin_mac_device, |
| 588 | #endif | 633 | #endif |
| 589 | 634 | ||
| 635 | #if defined(CONFIG_NET_DSA_KSZ8893M) || defined(CONFIG_NET_DSA_KSZ8893M_MODULE) | ||
| 636 | &ksz8893m_switch_device, | ||
| 637 | #endif | ||
| 638 | |||
| 590 | #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE) | 639 | #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE) |
| 591 | &bfin_spi0_device, | 640 | &bfin_spi0_device, |
| 592 | &bfin_spi1_device, | 641 | &bfin_spi1_device, |
| @@ -632,12 +681,8 @@ static struct platform_device *stamp_devices[] __initdata = { | |||
| 632 | static int __init ezbrd_init(void) | 681 | static int __init ezbrd_init(void) |
| 633 | { | 682 | { |
| 634 | printk(KERN_INFO "%s(): registering device resources\n", __func__); | 683 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
| 635 | |||
| 636 | #ifdef CONFIG_I2C_BOARDINFO | ||
| 637 | i2c_register_board_info(0, bfin_i2c_board_info, | 684 | i2c_register_board_info(0, bfin_i2c_board_info, |
| 638 | ARRAY_SIZE(bfin_i2c_board_info)); | 685 | ARRAY_SIZE(bfin_i2c_board_info)); |
| 639 | #endif | ||
| 640 | |||
| 641 | platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); | 686 | platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); |
| 642 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); | 687 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); |
| 643 | return 0; | 688 | return 0; |
| @@ -649,7 +694,7 @@ void native_machine_restart(char *cmd) | |||
| 649 | { | 694 | { |
| 650 | /* workaround reboot hang when booting from SPI */ | 695 | /* workaround reboot hang when booting from SPI */ |
| 651 | if ((bfin_read_SYSCR() & 0x7) == 0x3) | 696 | if ((bfin_read_SYSCR() & 0x7) == 0x3) |
| 652 | bfin_gpio_reset_spi0_ssel1(); | 697 | bfin_reset_boot_spi_cs(P_DEFAULT_BOOT_SPI_CS); |
| 653 | } | 698 | } |
| 654 | 699 | ||
| 655 | void bfin_get_ether_addr(char *addr) | 700 | void bfin_get_ether_addr(char *addr) |
diff --git a/arch/blackfin/mach-bf518/include/mach/portmux.h b/arch/blackfin/mach-bf518/include/mach/portmux.h index ac16d54734d4..f618b487b2b0 100644 --- a/arch/blackfin/mach-bf518/include/mach/portmux.h +++ b/arch/blackfin/mach-bf518/include/mach/portmux.h | |||
| @@ -103,6 +103,8 @@ | |||
| 103 | #define P_SPI1_SSEL4 (P_DEFINED | P_IDENT(GPIO_PF8) | P_FUNCT(2)) | 103 | #define P_SPI1_SSEL4 (P_DEFINED | P_IDENT(GPIO_PF8) | P_FUNCT(2)) |
| 104 | #define P_SPI1_SSEL5 (P_DEFINED | P_IDENT(GPIO_PG11) | P_FUNCT(2)) | 104 | #define P_SPI1_SSEL5 (P_DEFINED | P_IDENT(GPIO_PG11) | P_FUNCT(2)) |
| 105 | 105 | ||
| 106 | #define P_DEFAULT_BOOT_SPI_CS P_SPI0_SSEL2 | ||
| 107 | |||
| 106 | /* SPORT Port Mux */ | 108 | /* SPORT Port Mux */ |
| 107 | #define P_SPORT0_DRPRI (P_DEFINED | P_IDENT(GPIO_PG3) | P_FUNCT(0)) | 109 | #define P_SPORT0_DRPRI (P_DEFINED | P_IDENT(GPIO_PG3) | P_FUNCT(0)) |
| 108 | #define P_SPORT0_RSCLK (P_DEFINED | P_IDENT(GPIO_PG4) | P_FUNCT(0)) | 110 | #define P_SPORT0_RSCLK (P_DEFINED | P_IDENT(GPIO_PG4) | P_FUNCT(0)) |
diff --git a/arch/blackfin/mach-bf527/boards/cm_bf527.c b/arch/blackfin/mach-bf527/boards/cm_bf527.c index a2c3578f4b6c..856c097b5317 100644 --- a/arch/blackfin/mach-bf527/boards/cm_bf527.c +++ b/arch/blackfin/mach-bf527/boards/cm_bf527.c | |||
| @@ -403,8 +403,13 @@ static struct platform_device isp1362_hcd_device = { | |||
| 403 | #endif | 403 | #endif |
| 404 | 404 | ||
| 405 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 405 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 406 | static struct platform_device bfin_mii_bus = { | ||
| 407 | .name = "bfin_mii_bus", | ||
| 408 | }; | ||
| 409 | |||
| 406 | static struct platform_device bfin_mac_device = { | 410 | static struct platform_device bfin_mac_device = { |
| 407 | .name = "bfin_mac", | 411 | .name = "bfin_mac", |
| 412 | .dev.platform_data = &bfin_mii_bus, | ||
| 408 | }; | 413 | }; |
| 409 | #endif | 414 | #endif |
| 410 | 415 | ||
| @@ -793,7 +798,6 @@ static struct platform_device i2c_bfin_twi_device = { | |||
| 793 | }; | 798 | }; |
| 794 | #endif | 799 | #endif |
| 795 | 800 | ||
| 796 | #ifdef CONFIG_I2C_BOARDINFO | ||
| 797 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { | 801 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { |
| 798 | #if defined(CONFIG_TWI_LCD) || defined(CONFIG_TWI_LCD_MODULE) | 802 | #if defined(CONFIG_TWI_LCD) || defined(CONFIG_TWI_LCD_MODULE) |
| 799 | { | 803 | { |
| @@ -809,7 +813,6 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = { | |||
| 809 | }, | 813 | }, |
| 810 | #endif | 814 | #endif |
| 811 | }; | 815 | }; |
| 812 | #endif | ||
| 813 | 816 | ||
| 814 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) | 817 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) |
| 815 | static struct platform_device bfin_sport0_uart_device = { | 818 | static struct platform_device bfin_sport0_uart_device = { |
| @@ -920,6 +923,7 @@ static struct platform_device *stamp_devices[] __initdata = { | |||
| 920 | #endif | 923 | #endif |
| 921 | 924 | ||
| 922 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 925 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 926 | &bfin_mii_bus, | ||
| 923 | &bfin_mac_device, | 927 | &bfin_mac_device, |
| 924 | #endif | 928 | #endif |
| 925 | 929 | ||
| @@ -968,27 +972,23 @@ static struct platform_device *stamp_devices[] __initdata = { | |||
| 968 | &bfin_gpios_device, | 972 | &bfin_gpios_device, |
| 969 | }; | 973 | }; |
| 970 | 974 | ||
| 971 | static int __init stamp_init(void) | 975 | static int __init cm_init(void) |
| 972 | { | 976 | { |
| 973 | printk(KERN_INFO "%s(): registering device resources\n", __func__); | 977 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
| 974 | |||
| 975 | #ifdef CONFIG_I2C_BOARDINFO | ||
| 976 | i2c_register_board_info(0, bfin_i2c_board_info, | 978 | i2c_register_board_info(0, bfin_i2c_board_info, |
| 977 | ARRAY_SIZE(bfin_i2c_board_info)); | 979 | ARRAY_SIZE(bfin_i2c_board_info)); |
| 978 | #endif | ||
| 979 | |||
| 980 | platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); | 980 | platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); |
| 981 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); | 981 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); |
| 982 | return 0; | 982 | return 0; |
| 983 | } | 983 | } |
| 984 | 984 | ||
| 985 | arch_initcall(stamp_init); | 985 | arch_initcall(cm_init); |
| 986 | 986 | ||
| 987 | void native_machine_restart(char *cmd) | 987 | void native_machine_restart(char *cmd) |
| 988 | { | 988 | { |
| 989 | /* workaround reboot hang when booting from SPI */ | 989 | /* workaround reboot hang when booting from SPI */ |
| 990 | if ((bfin_read_SYSCR() & 0x7) == 0x3) | 990 | if ((bfin_read_SYSCR() & 0x7) == 0x3) |
| 991 | bfin_gpio_reset_spi0_ssel1(); | 991 | bfin_reset_boot_spi_cs(P_DEFAULT_BOOT_SPI_CS); |
| 992 | } | 992 | } |
| 993 | 993 | ||
| 994 | void bfin_get_ether_addr(char *addr) | 994 | void bfin_get_ether_addr(char *addr) |
diff --git a/arch/blackfin/mach-bf527/boards/ezbrd.c b/arch/blackfin/mach-bf527/boards/ezbrd.c index 0314bd3355eb..83606fcdde27 100644 --- a/arch/blackfin/mach-bf527/boards/ezbrd.c +++ b/arch/blackfin/mach-bf527/boards/ezbrd.c | |||
| @@ -208,8 +208,13 @@ static struct platform_device rtc_device = { | |||
| 208 | 208 | ||
| 209 | 209 | ||
| 210 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 210 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 211 | static struct platform_device bfin_mii_bus = { | ||
| 212 | .name = "bfin_mii_bus", | ||
| 213 | }; | ||
| 214 | |||
| 211 | static struct platform_device bfin_mac_device = { | 215 | static struct platform_device bfin_mac_device = { |
| 212 | .name = "bfin_mac", | 216 | .name = "bfin_mac", |
| 217 | .dev.platform_data = &bfin_mii_bus, | ||
| 213 | }; | 218 | }; |
| 214 | #endif | 219 | #endif |
| 215 | 220 | ||
| @@ -590,7 +595,6 @@ static struct platform_device i2c_bfin_twi_device = { | |||
| 590 | }; | 595 | }; |
| 591 | #endif | 596 | #endif |
| 592 | 597 | ||
| 593 | #ifdef CONFIG_I2C_BOARDINFO | ||
| 594 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { | 598 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { |
| 595 | #if defined(CONFIG_TWI_LCD) || defined(CONFIG_TWI_LCD_MODULE) | 599 | #if defined(CONFIG_TWI_LCD) || defined(CONFIG_TWI_LCD_MODULE) |
| 596 | { | 600 | { |
| @@ -604,7 +608,6 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = { | |||
| 604 | }, | 608 | }, |
| 605 | #endif | 609 | #endif |
| 606 | }; | 610 | }; |
| 607 | #endif | ||
| 608 | 611 | ||
| 609 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) | 612 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) |
| 610 | static struct platform_device bfin_sport0_uart_device = { | 613 | static struct platform_device bfin_sport0_uart_device = { |
| @@ -720,6 +723,7 @@ static struct platform_device *stamp_devices[] __initdata = { | |||
| 720 | #endif | 723 | #endif |
| 721 | 724 | ||
| 722 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 725 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 726 | &bfin_mii_bus, | ||
| 723 | &bfin_mac_device, | 727 | &bfin_mac_device, |
| 724 | #endif | 728 | #endif |
| 725 | 729 | ||
| @@ -764,27 +768,23 @@ static struct platform_device *stamp_devices[] __initdata = { | |||
| 764 | &bfin_gpios_device, | 768 | &bfin_gpios_device, |
| 765 | }; | 769 | }; |
| 766 | 770 | ||
| 767 | static int __init stamp_init(void) | 771 | static int __init ezbrd_init(void) |
| 768 | { | 772 | { |
| 769 | printk(KERN_INFO "%s(): registering device resources\n", __func__); | 773 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
| 770 | |||
| 771 | #ifdef CONFIG_I2C_BOARDINFO | ||
| 772 | i2c_register_board_info(0, bfin_i2c_board_info, | 774 | i2c_register_board_info(0, bfin_i2c_board_info, |
| 773 | ARRAY_SIZE(bfin_i2c_board_info)); | 775 | ARRAY_SIZE(bfin_i2c_board_info)); |
| 774 | #endif | ||
| 775 | |||
| 776 | platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); | 776 | platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); |
| 777 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); | 777 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); |
| 778 | return 0; | 778 | return 0; |
| 779 | } | 779 | } |
| 780 | 780 | ||
| 781 | arch_initcall(stamp_init); | 781 | arch_initcall(ezbrd_init); |
| 782 | 782 | ||
| 783 | void native_machine_restart(char *cmd) | 783 | void native_machine_restart(char *cmd) |
| 784 | { | 784 | { |
| 785 | /* workaround reboot hang when booting from SPI */ | 785 | /* workaround reboot hang when booting from SPI */ |
| 786 | if ((bfin_read_SYSCR() & 0x7) == 0x3) | 786 | if ((bfin_read_SYSCR() & 0x7) == 0x3) |
| 787 | bfin_gpio_reset_spi0_ssel1(); | 787 | bfin_reset_boot_spi_cs(P_DEFAULT_BOOT_SPI_CS); |
| 788 | } | 788 | } |
| 789 | 789 | ||
| 790 | void bfin_get_ether_addr(char *addr) | 790 | void bfin_get_ether_addr(char *addr) |
diff --git a/arch/blackfin/mach-bf527/boards/ezkit.c b/arch/blackfin/mach-bf527/boards/ezkit.c index 9454fb7b18c3..d0864111ef59 100644 --- a/arch/blackfin/mach-bf527/boards/ezkit.c +++ b/arch/blackfin/mach-bf527/boards/ezkit.c | |||
| @@ -425,8 +425,13 @@ static struct platform_device isp1362_hcd_device = { | |||
| 425 | #endif | 425 | #endif |
| 426 | 426 | ||
| 427 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 427 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 428 | static struct platform_device bfin_mii_bus = { | ||
| 429 | .name = "bfin_mii_bus", | ||
| 430 | }; | ||
| 431 | |||
| 428 | static struct platform_device bfin_mac_device = { | 432 | static struct platform_device bfin_mac_device = { |
| 429 | .name = "bfin_mac", | 433 | .name = "bfin_mac", |
| 434 | .dev.platform_data = &bfin_mii_bus, | ||
| 430 | }; | 435 | }; |
| 431 | #endif | 436 | #endif |
| 432 | 437 | ||
| @@ -830,7 +835,6 @@ static struct platform_device i2c_bfin_twi_device = { | |||
| 830 | }; | 835 | }; |
| 831 | #endif | 836 | #endif |
| 832 | 837 | ||
| 833 | #ifdef CONFIG_I2C_BOARDINFO | ||
| 834 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { | 838 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { |
| 835 | #if defined(CONFIG_TWI_LCD) || defined(CONFIG_TWI_LCD_MODULE) | 839 | #if defined(CONFIG_TWI_LCD) || defined(CONFIG_TWI_LCD_MODULE) |
| 836 | { | 840 | { |
| @@ -844,7 +848,6 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = { | |||
| 844 | }, | 848 | }, |
| 845 | #endif | 849 | #endif |
| 846 | }; | 850 | }; |
| 847 | #endif | ||
| 848 | 851 | ||
| 849 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) | 852 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) |
| 850 | static struct platform_device bfin_sport0_uart_device = { | 853 | static struct platform_device bfin_sport0_uart_device = { |
| @@ -988,6 +991,7 @@ static struct platform_device *stamp_devices[] __initdata = { | |||
| 988 | #endif | 991 | #endif |
| 989 | 992 | ||
| 990 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 993 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 994 | &bfin_mii_bus, | ||
| 991 | &bfin_mac_device, | 995 | &bfin_mac_device, |
| 992 | #endif | 996 | #endif |
| 993 | 997 | ||
| @@ -1048,27 +1052,23 @@ static struct platform_device *stamp_devices[] __initdata = { | |||
| 1048 | &bfin_gpios_device, | 1052 | &bfin_gpios_device, |
| 1049 | }; | 1053 | }; |
| 1050 | 1054 | ||
| 1051 | static int __init stamp_init(void) | 1055 | static int __init ezkit_init(void) |
| 1052 | { | 1056 | { |
| 1053 | printk(KERN_INFO "%s(): registering device resources\n", __func__); | 1057 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
| 1054 | |||
| 1055 | #ifdef CONFIG_I2C_BOARDINFO | ||
| 1056 | i2c_register_board_info(0, bfin_i2c_board_info, | 1058 | i2c_register_board_info(0, bfin_i2c_board_info, |
| 1057 | ARRAY_SIZE(bfin_i2c_board_info)); | 1059 | ARRAY_SIZE(bfin_i2c_board_info)); |
| 1058 | #endif | ||
| 1059 | |||
| 1060 | platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); | 1060 | platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); |
| 1061 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); | 1061 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); |
| 1062 | return 0; | 1062 | return 0; |
| 1063 | } | 1063 | } |
| 1064 | 1064 | ||
| 1065 | arch_initcall(stamp_init); | 1065 | arch_initcall(ezkit_init); |
| 1066 | 1066 | ||
| 1067 | void native_machine_restart(char *cmd) | 1067 | void native_machine_restart(char *cmd) |
| 1068 | { | 1068 | { |
| 1069 | /* workaround reboot hang when booting from SPI */ | 1069 | /* workaround reboot hang when booting from SPI */ |
| 1070 | if ((bfin_read_SYSCR() & 0x7) == 0x3) | 1070 | if ((bfin_read_SYSCR() & 0x7) == 0x3) |
| 1071 | bfin_gpio_reset_spi0_ssel1(); | 1071 | bfin_reset_boot_spi_cs(P_DEFAULT_BOOT_SPI_CS); |
| 1072 | } | 1072 | } |
| 1073 | 1073 | ||
| 1074 | void bfin_get_ether_addr(char *addr) | 1074 | void bfin_get_ether_addr(char *addr) |
diff --git a/arch/blackfin/mach-bf527/include/mach/portmux.h b/arch/blackfin/mach-bf527/include/mach/portmux.h index 7f6da2c386bb..72b1652be4da 100644 --- a/arch/blackfin/mach-bf527/include/mach/portmux.h +++ b/arch/blackfin/mach-bf527/include/mach/portmux.h | |||
| @@ -73,6 +73,8 @@ | |||
| 73 | 73 | ||
| 74 | #define P_HWAIT (P_DONTCARE) | 74 | #define P_HWAIT (P_DONTCARE) |
| 75 | 75 | ||
| 76 | #define P_DEFAULT_BOOT_SPI_CS P_SPI0_SSEL1 | ||
| 77 | |||
| 76 | #define P_SPI0_SS (P_DEFINED | P_IDENT(GPIO_PG1) | P_FUNCT(0)) | 78 | #define P_SPI0_SS (P_DEFINED | P_IDENT(GPIO_PG1) | P_FUNCT(0)) |
| 77 | #define P_SPI0_SSEL1 (P_DEFINED | P_IDENT(GPIO_PG1) | P_FUNCT(2)) | 79 | #define P_SPI0_SSEL1 (P_DEFINED | P_IDENT(GPIO_PG1) | P_FUNCT(2)) |
| 78 | #define P_SPI0_SCK (P_DEFINED | P_IDENT(GPIO_PG2) | P_FUNCT(2)) | 80 | #define P_SPI0_SCK (P_DEFINED | P_IDENT(GPIO_PG2) | P_FUNCT(2)) |
diff --git a/arch/blackfin/mach-bf533/boards/blackstamp.c b/arch/blackfin/mach-bf533/boards/blackstamp.c index 6ee607c259ac..015c18f85e7f 100644 --- a/arch/blackfin/mach-bf533/boards/blackstamp.c +++ b/arch/blackfin/mach-bf533/boards/blackstamp.c | |||
| @@ -309,10 +309,8 @@ static struct platform_device i2c_gpio_device = { | |||
| 309 | }; | 309 | }; |
| 310 | #endif | 310 | #endif |
| 311 | 311 | ||
| 312 | #ifdef CONFIG_I2C_BOARDINFO | ||
| 313 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { | 312 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { |
| 314 | }; | 313 | }; |
| 315 | #endif | ||
| 316 | 314 | ||
| 317 | static const unsigned int cclk_vlev_datasheet[] = | 315 | static const unsigned int cclk_vlev_datasheet[] = |
| 318 | { | 316 | { |
| @@ -390,10 +388,8 @@ static int __init blackstamp_init(void) | |||
| 390 | 388 | ||
| 391 | printk(KERN_INFO "%s(): registering device resources\n", __func__); | 389 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
| 392 | 390 | ||
| 393 | #ifdef CONFIG_I2C_BOARDINFO | ||
| 394 | i2c_register_board_info(0, bfin_i2c_board_info, | 391 | i2c_register_board_info(0, bfin_i2c_board_info, |
| 395 | ARRAY_SIZE(bfin_i2c_board_info)); | 392 | ARRAY_SIZE(bfin_i2c_board_info)); |
| 396 | #endif | ||
| 397 | 393 | ||
| 398 | ret = platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); | 394 | ret = platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); |
| 399 | if (ret < 0) | 395 | if (ret < 0) |
diff --git a/arch/blackfin/mach-bf533/boards/stamp.c b/arch/blackfin/mach-bf533/boards/stamp.c index 07f9ad1e189c..db96f33f72e2 100644 --- a/arch/blackfin/mach-bf533/boards/stamp.c +++ b/arch/blackfin/mach-bf533/boards/stamp.c | |||
| @@ -441,7 +441,6 @@ static struct platform_device i2c_gpio_device = { | |||
| 441 | }; | 441 | }; |
| 442 | #endif | 442 | #endif |
| 443 | 443 | ||
| 444 | #ifdef CONFIG_I2C_BOARDINFO | ||
| 445 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { | 444 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { |
| 446 | #if defined(CONFIG_JOYSTICK_AD7142) || defined(CONFIG_JOYSTICK_AD7142_MODULE) | 445 | #if defined(CONFIG_JOYSTICK_AD7142) || defined(CONFIG_JOYSTICK_AD7142_MODULE) |
| 447 | { | 446 | { |
| @@ -461,7 +460,6 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = { | |||
| 461 | }, | 460 | }, |
| 462 | #endif | 461 | #endif |
| 463 | }; | 462 | }; |
| 464 | #endif | ||
| 465 | 463 | ||
| 466 | static const unsigned int cclk_vlev_datasheet[] = | 464 | static const unsigned int cclk_vlev_datasheet[] = |
| 467 | { | 465 | { |
| @@ -550,10 +548,8 @@ static int __init stamp_init(void) | |||
| 550 | 548 | ||
| 551 | printk(KERN_INFO "%s(): registering device resources\n", __func__); | 549 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
| 552 | 550 | ||
| 553 | #ifdef CONFIG_I2C_BOARDINFO | ||
| 554 | i2c_register_board_info(0, bfin_i2c_board_info, | 551 | i2c_register_board_info(0, bfin_i2c_board_info, |
| 555 | ARRAY_SIZE(bfin_i2c_board_info)); | 552 | ARRAY_SIZE(bfin_i2c_board_info)); |
| 556 | #endif | ||
| 557 | 553 | ||
| 558 | ret = platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); | 554 | ret = platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); |
| 559 | if (ret < 0) | 555 | if (ret < 0) |
diff --git a/arch/blackfin/mach-bf533/include/mach/portmux.h b/arch/blackfin/mach-bf533/include/mach/portmux.h index 685a2651dcda..2f59ce0b0cb5 100644 --- a/arch/blackfin/mach-bf533/include/mach/portmux.h +++ b/arch/blackfin/mach-bf533/include/mach/portmux.h | |||
| @@ -54,14 +54,11 @@ | |||
| 54 | #define P_SPI0_SSEL2 (P_DEFINED | P_IDENT(GPIO_PF2)) | 54 | #define P_SPI0_SSEL2 (P_DEFINED | P_IDENT(GPIO_PF2)) |
| 55 | #define P_SPI0_SSEL1 (P_DEFINED | P_IDENT(GPIO_PF1)) | 55 | #define P_SPI0_SSEL1 (P_DEFINED | P_IDENT(GPIO_PF1)) |
| 56 | #define P_SPI0_SS (P_DEFINED | P_IDENT(GPIO_PF0)) | 56 | #define P_SPI0_SS (P_DEFINED | P_IDENT(GPIO_PF0)) |
| 57 | #define P_DEFAULT_BOOT_SPI_CS P_SPI0_SSEL2 | ||
| 57 | 58 | ||
| 58 | #define P_TMR2 (P_DONTCARE) | 59 | #define P_TMR2 (P_DONTCARE) |
| 59 | #define P_TMR1 (P_DONTCARE) | 60 | #define P_TMR1 (P_DONTCARE) |
| 60 | #define P_TMR0 (P_DONTCARE) | 61 | #define P_TMR0 (P_DONTCARE) |
| 61 | #define P_TMRCLK (P_DEFINED | P_IDENT(GPIO_PF1)) | 62 | #define P_TMRCLK (P_DEFINED | P_IDENT(GPIO_PF1)) |
| 62 | 63 | ||
| 63 | |||
| 64 | |||
| 65 | |||
| 66 | |||
| 67 | #endif /* _MACH_PORTMUX_H_ */ | 64 | #endif /* _MACH_PORTMUX_H_ */ |
diff --git a/arch/blackfin/mach-bf537/boards/cm_bf537.c b/arch/blackfin/mach-bf537/boards/cm_bf537.c index 6ac8e4d5bd38..9cd8fb2a30d3 100644 --- a/arch/blackfin/mach-bf537/boards/cm_bf537.c +++ b/arch/blackfin/mach-bf537/boards/cm_bf537.c | |||
| @@ -479,8 +479,13 @@ static struct platform_device bfin_sport1_uart_device = { | |||
| 479 | #endif | 479 | #endif |
| 480 | 480 | ||
| 481 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 481 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 482 | static struct platform_device bfin_mii_bus = { | ||
| 483 | .name = "bfin_mii_bus", | ||
| 484 | }; | ||
| 485 | |||
| 482 | static struct platform_device bfin_mac_device = { | 486 | static struct platform_device bfin_mac_device = { |
| 483 | .name = "bfin_mac", | 487 | .name = "bfin_mac", |
| 488 | .dev.platform_data = &bfin_mii_bus, | ||
| 484 | }; | 489 | }; |
| 485 | #endif | 490 | #endif |
| 486 | 491 | ||
| @@ -591,6 +596,7 @@ static struct platform_device *cm_bf537_devices[] __initdata = { | |||
| 591 | #endif | 596 | #endif |
| 592 | 597 | ||
| 593 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 598 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 599 | &bfin_mii_bus, | ||
| 594 | &bfin_mac_device, | 600 | &bfin_mac_device, |
| 595 | #endif | 601 | #endif |
| 596 | 602 | ||
diff --git a/arch/blackfin/mach-bf537/boards/generic_board.c b/arch/blackfin/mach-bf537/boards/generic_board.c index dd6e6bfb98ea..da710fdc4569 100644 --- a/arch/blackfin/mach-bf537/boards/generic_board.c +++ b/arch/blackfin/mach-bf537/boards/generic_board.c | |||
| @@ -262,8 +262,13 @@ static struct platform_device isp1362_hcd_device = { | |||
| 262 | #endif | 262 | #endif |
| 263 | 263 | ||
| 264 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 264 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 265 | static struct platform_device bfin_mii_bus = { | ||
| 266 | .name = "bfin_mii_bus", | ||
| 267 | }; | ||
| 268 | |||
| 265 | static struct platform_device bfin_mac_device = { | 269 | static struct platform_device bfin_mac_device = { |
| 266 | .name = "bfin_mac", | 270 | .name = "bfin_mac", |
| 271 | .dev.platform_data = &bfin_mii_bus, | ||
| 267 | }; | 272 | }; |
| 268 | #endif | 273 | #endif |
| 269 | 274 | ||
| @@ -662,6 +667,7 @@ static struct platform_device *stamp_devices[] __initdata = { | |||
| 662 | #endif | 667 | #endif |
| 663 | 668 | ||
| 664 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 669 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 670 | &bfin_mii_bus, | ||
| 665 | &bfin_mac_device, | 671 | &bfin_mac_device, |
| 666 | #endif | 672 | #endif |
| 667 | 673 | ||
| @@ -708,7 +714,7 @@ static struct platform_device *stamp_devices[] __initdata = { | |||
| 708 | #endif | 714 | #endif |
| 709 | }; | 715 | }; |
| 710 | 716 | ||
| 711 | static int __init stamp_init(void) | 717 | static int __init generic_init(void) |
| 712 | { | 718 | { |
| 713 | printk(KERN_INFO "%s(): registering device resources\n", __func__); | 719 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
| 714 | platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); | 720 | platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); |
| @@ -720,13 +726,13 @@ static int __init stamp_init(void) | |||
| 720 | return 0; | 726 | return 0; |
| 721 | } | 727 | } |
| 722 | 728 | ||
| 723 | arch_initcall(stamp_init); | 729 | arch_initcall(generic_init); |
| 724 | 730 | ||
| 725 | void native_machine_restart(char *cmd) | 731 | void native_machine_restart(char *cmd) |
| 726 | { | 732 | { |
| 727 | /* workaround reboot hang when booting from SPI */ | 733 | /* workaround reboot hang when booting from SPI */ |
| 728 | if ((bfin_read_SYSCR() & 0x7) == 0x3) | 734 | if ((bfin_read_SYSCR() & 0x7) == 0x3) |
| 729 | bfin_gpio_reset_spi0_ssel1(); | 735 | bfin_reset_boot_spi_cs(P_DEFAULT_BOOT_SPI_CS); |
| 730 | } | 736 | } |
| 731 | 737 | ||
| 732 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 738 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
diff --git a/arch/blackfin/mach-bf537/boards/minotaur.c b/arch/blackfin/mach-bf537/boards/minotaur.c index bb795341cb17..db7d3a385e4b 100644 --- a/arch/blackfin/mach-bf537/boards/minotaur.c +++ b/arch/blackfin/mach-bf537/boards/minotaur.c | |||
| @@ -61,8 +61,13 @@ static struct platform_device rtc_device = { | |||
| 61 | #endif | 61 | #endif |
| 62 | 62 | ||
| 63 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 63 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 64 | static struct platform_device bfin_mii_bus = { | ||
| 65 | .name = "bfin_mii_bus", | ||
| 66 | }; | ||
| 67 | |||
| 64 | static struct platform_device bfin_mac_device = { | 68 | static struct platform_device bfin_mac_device = { |
| 65 | .name = "bfin_mac", | 69 | .name = "bfin_mac", |
| 70 | .dev.platform_data = &bfin_mii_bus, | ||
| 66 | }; | 71 | }; |
| 67 | #endif | 72 | #endif |
| 68 | 73 | ||
| @@ -324,6 +329,7 @@ static struct platform_device *minotaur_devices[] __initdata = { | |||
| 324 | #endif | 329 | #endif |
| 325 | 330 | ||
| 326 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 331 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 332 | &bfin_mii_bus, | ||
| 327 | &bfin_mac_device, | 333 | &bfin_mac_device, |
| 328 | #endif | 334 | #endif |
| 329 | 335 | ||
| @@ -377,5 +383,5 @@ void native_machine_restart(char *cmd) | |||
| 377 | { | 383 | { |
| 378 | /* workaround reboot hang when booting from SPI */ | 384 | /* workaround reboot hang when booting from SPI */ |
| 379 | if ((bfin_read_SYSCR() & 0x7) == 0x3) | 385 | if ((bfin_read_SYSCR() & 0x7) == 0x3) |
| 380 | bfin_gpio_reset_spi0_ssel1(); | 386 | bfin_reset_boot_spi_cs(P_DEFAULT_BOOT_SPI_CS); |
| 381 | } | 387 | } |
diff --git a/arch/blackfin/mach-bf537/boards/pnav10.c b/arch/blackfin/mach-bf537/boards/pnav10.c index 89de94f4545d..590eb3a139b7 100644 --- a/arch/blackfin/mach-bf537/boards/pnav10.c +++ b/arch/blackfin/mach-bf537/boards/pnav10.c | |||
| @@ -198,8 +198,13 @@ static struct platform_device isp1362_hcd_device = { | |||
| 198 | #endif | 198 | #endif |
| 199 | 199 | ||
| 200 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 200 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 201 | static struct platform_device bfin_mii_bus = { | ||
| 202 | .name = "bfin_mii_bus", | ||
| 203 | }; | ||
| 204 | |||
| 201 | static struct platform_device bfin_mac_device = { | 205 | static struct platform_device bfin_mac_device = { |
| 202 | .name = "bfin_mac", | 206 | .name = "bfin_mac", |
| 207 | .dev.platform_data = &bfin_mii_bus, | ||
| 203 | }; | 208 | }; |
| 204 | #endif | 209 | #endif |
| 205 | 210 | ||
| @@ -529,6 +534,7 @@ static struct platform_device *stamp_devices[] __initdata = { | |||
| 529 | #endif | 534 | #endif |
| 530 | 535 | ||
| 531 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 536 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 537 | &bfin_mii_bus, | ||
| 532 | &bfin_mac_device, | 538 | &bfin_mac_device, |
| 533 | #endif | 539 | #endif |
| 534 | 540 | ||
| @@ -558,7 +564,7 @@ static struct platform_device *stamp_devices[] __initdata = { | |||
| 558 | #endif | 564 | #endif |
| 559 | }; | 565 | }; |
| 560 | 566 | ||
| 561 | static int __init stamp_init(void) | 567 | static int __init pnav_init(void) |
| 562 | { | 568 | { |
| 563 | printk(KERN_INFO "%s(): registering device resources\n", __func__); | 569 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
| 564 | platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); | 570 | platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); |
| @@ -569,7 +575,7 @@ static int __init stamp_init(void) | |||
| 569 | return 0; | 575 | return 0; |
| 570 | } | 576 | } |
| 571 | 577 | ||
| 572 | arch_initcall(stamp_init); | 578 | arch_initcall(pnav_init); |
| 573 | 579 | ||
| 574 | void bfin_get_ether_addr(char *addr) | 580 | void bfin_get_ether_addr(char *addr) |
| 575 | { | 581 | { |
diff --git a/arch/blackfin/mach-bf537/boards/stamp.c b/arch/blackfin/mach-bf537/boards/stamp.c index d812e2514a2f..cd04c5e44878 100644 --- a/arch/blackfin/mach-bf537/boards/stamp.c +++ b/arch/blackfin/mach-bf537/boards/stamp.c | |||
| @@ -321,8 +321,13 @@ static struct platform_device isp1362_hcd_device = { | |||
| 321 | #endif | 321 | #endif |
| 322 | 322 | ||
| 323 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 323 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 324 | static struct platform_device bfin_mii_bus = { | ||
| 325 | .name = "bfin_mii_bus", | ||
| 326 | }; | ||
| 327 | |||
| 324 | static struct platform_device bfin_mac_device = { | 328 | static struct platform_device bfin_mac_device = { |
| 325 | .name = "bfin_mac", | 329 | .name = "bfin_mac", |
| 330 | .dev.platform_data = &bfin_mii_bus, | ||
| 326 | }; | 331 | }; |
| 327 | #endif | 332 | #endif |
| 328 | 333 | ||
| @@ -1068,7 +1073,6 @@ static struct adp5588_kpad_platform_data adp5588_kpad_data = { | |||
| 1068 | }; | 1073 | }; |
| 1069 | #endif | 1074 | #endif |
| 1070 | 1075 | ||
| 1071 | #ifdef CONFIG_I2C_BOARDINFO | ||
| 1072 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { | 1076 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { |
| 1073 | #if defined(CONFIG_JOYSTICK_AD7142) || defined(CONFIG_JOYSTICK_AD7142_MODULE) | 1077 | #if defined(CONFIG_JOYSTICK_AD7142) || defined(CONFIG_JOYSTICK_AD7142_MODULE) |
| 1074 | { | 1078 | { |
| @@ -1102,7 +1106,6 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = { | |||
| 1102 | }, | 1106 | }, |
| 1103 | #endif | 1107 | #endif |
| 1104 | }; | 1108 | }; |
| 1105 | #endif | ||
| 1106 | 1109 | ||
| 1107 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) | 1110 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) |
| 1108 | static struct platform_device bfin_sport0_uart_device = { | 1111 | static struct platform_device bfin_sport0_uart_device = { |
| @@ -1217,6 +1220,7 @@ static struct platform_device *stamp_devices[] __initdata = { | |||
| 1217 | #endif | 1220 | #endif |
| 1218 | 1221 | ||
| 1219 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 1222 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 1223 | &bfin_mii_bus, | ||
| 1220 | &bfin_mac_device, | 1224 | &bfin_mac_device, |
| 1221 | #endif | 1225 | #endif |
| 1222 | 1226 | ||
| @@ -1284,12 +1288,8 @@ static struct platform_device *stamp_devices[] __initdata = { | |||
| 1284 | static int __init stamp_init(void) | 1288 | static int __init stamp_init(void) |
| 1285 | { | 1289 | { |
| 1286 | printk(KERN_INFO "%s(): registering device resources\n", __func__); | 1290 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
| 1287 | |||
| 1288 | #ifdef CONFIG_I2C_BOARDINFO | ||
| 1289 | i2c_register_board_info(0, bfin_i2c_board_info, | 1291 | i2c_register_board_info(0, bfin_i2c_board_info, |
| 1290 | ARRAY_SIZE(bfin_i2c_board_info)); | 1292 | ARRAY_SIZE(bfin_i2c_board_info)); |
| 1291 | #endif | ||
| 1292 | |||
| 1293 | bfin_plat_nand_init(); | 1293 | bfin_plat_nand_init(); |
| 1294 | platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); | 1294 | platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); |
| 1295 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); | 1295 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); |
| @@ -1307,7 +1307,7 @@ void native_machine_restart(char *cmd) | |||
| 1307 | { | 1307 | { |
| 1308 | /* workaround reboot hang when booting from SPI */ | 1308 | /* workaround reboot hang when booting from SPI */ |
| 1309 | if ((bfin_read_SYSCR() & 0x7) == 0x3) | 1309 | if ((bfin_read_SYSCR() & 0x7) == 0x3) |
| 1310 | bfin_gpio_reset_spi0_ssel1(); | 1310 | bfin_reset_boot_spi_cs(P_DEFAULT_BOOT_SPI_CS); |
| 1311 | } | 1311 | } |
| 1312 | 1312 | ||
| 1313 | /* | 1313 | /* |
diff --git a/arch/blackfin/mach-bf537/boards/tcm_bf537.c b/arch/blackfin/mach-bf537/boards/tcm_bf537.c index 2f4b066153c5..3f4f203a06ec 100644 --- a/arch/blackfin/mach-bf537/boards/tcm_bf537.c +++ b/arch/blackfin/mach-bf537/boards/tcm_bf537.c | |||
| @@ -481,8 +481,13 @@ static struct platform_device bfin_sport1_uart_device = { | |||
| 481 | #endif | 481 | #endif |
| 482 | 482 | ||
| 483 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 483 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 484 | static struct platform_device bfin_mii_bus = { | ||
| 485 | .name = "bfin_mii_bus", | ||
| 486 | }; | ||
| 487 | |||
| 484 | static struct platform_device bfin_mac_device = { | 488 | static struct platform_device bfin_mac_device = { |
| 485 | .name = "bfin_mac", | 489 | .name = "bfin_mac", |
| 490 | .dev.platform_data = &bfin_mii_bus, | ||
| 486 | }; | 491 | }; |
| 487 | #endif | 492 | #endif |
| 488 | 493 | ||
| @@ -593,6 +598,7 @@ static struct platform_device *cm_bf537_devices[] __initdata = { | |||
| 593 | #endif | 598 | #endif |
| 594 | 599 | ||
| 595 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) | 600 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
| 601 | &bfin_mii_bus, | ||
| 596 | &bfin_mac_device, | 602 | &bfin_mac_device, |
| 597 | #endif | 603 | #endif |
| 598 | 604 | ||
| @@ -615,7 +621,7 @@ static struct platform_device *cm_bf537_devices[] __initdata = { | |||
| 615 | &bfin_gpios_device, | 621 | &bfin_gpios_device, |
| 616 | }; | 622 | }; |
| 617 | 623 | ||
| 618 | static int __init cm_bf537_init(void) | 624 | static int __init tcm_bf537_init(void) |
| 619 | { | 625 | { |
| 620 | printk(KERN_INFO "%s(): registering device resources\n", __func__); | 626 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
| 621 | platform_add_devices(cm_bf537_devices, ARRAY_SIZE(cm_bf537_devices)); | 627 | platform_add_devices(cm_bf537_devices, ARRAY_SIZE(cm_bf537_devices)); |
| @@ -629,7 +635,7 @@ static int __init cm_bf537_init(void) | |||
| 629 | return 0; | 635 | return 0; |
| 630 | } | 636 | } |
| 631 | 637 | ||
| 632 | arch_initcall(cm_bf537_init); | 638 | arch_initcall(tcm_bf537_init); |
| 633 | 639 | ||
| 634 | void bfin_get_ether_addr(char *addr) | 640 | void bfin_get_ether_addr(char *addr) |
| 635 | { | 641 | { |
diff --git a/arch/blackfin/mach-bf537/include/mach/portmux.h b/arch/blackfin/mach-bf537/include/mach/portmux.h index 78fee6e0f237..87285e75e903 100644 --- a/arch/blackfin/mach-bf537/include/mach/portmux.h +++ b/arch/blackfin/mach-bf537/include/mach/portmux.h | |||
| @@ -31,6 +31,7 @@ | |||
| 31 | #define P_PPI0_FS1 (P_DEFINED | P_IDENT(GPIO_PF9) | P_FUNCT(1)) | 31 | #define P_PPI0_FS1 (P_DEFINED | P_IDENT(GPIO_PF9) | P_FUNCT(1)) |
| 32 | #define P_TACLK0 (P_DEFINED | P_IDENT(GPIO_PF14) | P_FUNCT(1)) | 32 | #define P_TACLK0 (P_DEFINED | P_IDENT(GPIO_PF14) | P_FUNCT(1)) |
| 33 | #define P_TMRCLK (P_DEFINED | P_IDENT(GPIO_PF15) | P_FUNCT(1)) | 33 | #define P_TMRCLK (P_DEFINED | P_IDENT(GPIO_PF15) | P_FUNCT(1)) |
| 34 | #define P_DEFAULT_BOOT_SPI_CS P_SPI0_SSEL1 | ||
| 34 | 35 | ||
| 35 | #define P_PPI0_D0 (P_DEFINED | P_IDENT(GPIO_PG0) | P_FUNCT(0)) | 36 | #define P_PPI0_D0 (P_DEFINED | P_IDENT(GPIO_PG0) | P_FUNCT(0)) |
| 36 | #define P_PPI0_D1 (P_DEFINED | P_IDENT(GPIO_PG1) | P_FUNCT(0)) | 37 | #define P_PPI0_D1 (P_DEFINED | P_IDENT(GPIO_PG1) | P_FUNCT(0)) |
diff --git a/arch/blackfin/mach-bf538/include/mach/portmux.h b/arch/blackfin/mach-bf538/include/mach/portmux.h index 1e031b588b47..c8db264e3e4d 100644 --- a/arch/blackfin/mach-bf538/include/mach/portmux.h +++ b/arch/blackfin/mach-bf538/include/mach/portmux.h | |||
| @@ -102,5 +102,6 @@ | |||
| 102 | #define P_SPI0_SSEL2 (P_DEFINED | P_IDENT(GPIO_PF2)) | 102 | #define P_SPI0_SSEL2 (P_DEFINED | P_IDENT(GPIO_PF2)) |
| 103 | #define P_SPI0_SSEL1 (P_DEFINED | P_IDENT(GPIO_PF1)) | 103 | #define P_SPI0_SSEL1 (P_DEFINED | P_IDENT(GPIO_PF1)) |
| 104 | #define P_SPI0_SS (P_DEFINED | P_IDENT(GPIO_PF0)) | 104 | #define P_SPI0_SS (P_DEFINED | P_IDENT(GPIO_PF0)) |
| 105 | #define P_DEFAULT_BOOT_SPI_CS P_SPI0_SSEL2 | ||
| 105 | 106 | ||
| 106 | #endif /* _MACH_PORTMUX_H_ */ | 107 | #endif /* _MACH_PORTMUX_H_ */ |
diff --git a/arch/blackfin/mach-bf548/boards/ezkit.c b/arch/blackfin/mach-bf548/boards/ezkit.c index 309c16014cae..096e661700a7 100644 --- a/arch/blackfin/mach-bf548/boards/ezkit.c +++ b/arch/blackfin/mach-bf548/boards/ezkit.c | |||
| @@ -781,7 +781,6 @@ static struct platform_device i2c_bfin_twi1_device = { | |||
| 781 | #endif | 781 | #endif |
| 782 | #endif | 782 | #endif |
| 783 | 783 | ||
| 784 | #ifdef CONFIG_I2C_BOARDINFO | ||
| 785 | static struct i2c_board_info __initdata bfin_i2c_board_info0[] = { | 784 | static struct i2c_board_info __initdata bfin_i2c_board_info0[] = { |
| 786 | }; | 785 | }; |
| 787 | 786 | ||
| @@ -800,7 +799,6 @@ static struct i2c_board_info __initdata bfin_i2c_board_info1[] = { | |||
| 800 | #endif | 799 | #endif |
| 801 | }; | 800 | }; |
| 802 | #endif | 801 | #endif |
| 803 | #endif | ||
| 804 | 802 | ||
| 805 | #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE) | 803 | #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE) |
| 806 | #include <linux/gpio_keys.h> | 804 | #include <linux/gpio_keys.h> |
| @@ -956,14 +954,12 @@ static int __init ezkit_init(void) | |||
| 956 | { | 954 | { |
| 957 | printk(KERN_INFO "%s(): registering device resources\n", __func__); | 955 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
| 958 | 956 | ||
| 959 | #ifdef CONFIG_I2C_BOARDINFO | ||
| 960 | i2c_register_board_info(0, bfin_i2c_board_info0, | 957 | i2c_register_board_info(0, bfin_i2c_board_info0, |
| 961 | ARRAY_SIZE(bfin_i2c_board_info0)); | 958 | ARRAY_SIZE(bfin_i2c_board_info0)); |
| 962 | #if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */ | 959 | #if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */ |
| 963 | i2c_register_board_info(1, bfin_i2c_board_info1, | 960 | i2c_register_board_info(1, bfin_i2c_board_info1, |
| 964 | ARRAY_SIZE(bfin_i2c_board_info1)); | 961 | ARRAY_SIZE(bfin_i2c_board_info1)); |
| 965 | #endif | 962 | #endif |
| 966 | #endif | ||
| 967 | 963 | ||
| 968 | platform_add_devices(ezkit_devices, ARRAY_SIZE(ezkit_devices)); | 964 | platform_add_devices(ezkit_devices, ARRAY_SIZE(ezkit_devices)); |
| 969 | 965 | ||
diff --git a/arch/blackfin/mach-bf548/include/mach/anomaly.h b/arch/blackfin/mach-bf548/include/mach/anomaly.h index 3b5430999f4f..23d03c52f4b4 100644 --- a/arch/blackfin/mach-bf548/include/mach/anomaly.h +++ b/arch/blackfin/mach-bf548/include/mach/anomaly.h | |||
| @@ -175,6 +175,7 @@ | |||
| 175 | #define ANOMALY_05000311 (0) | 175 | #define ANOMALY_05000311 (0) |
| 176 | #define ANOMALY_05000323 (0) | 176 | #define ANOMALY_05000323 (0) |
| 177 | #define ANOMALY_05000363 (0) | 177 | #define ANOMALY_05000363 (0) |
| 178 | #define ANOMALY_05000380 (0) | ||
| 178 | #define ANOMALY_05000412 (0) | 179 | #define ANOMALY_05000412 (0) |
| 179 | #define ANOMALY_05000432 (0) | 180 | #define ANOMALY_05000432 (0) |
| 180 | #define ANOMALY_05000435 (0) | 181 | #define ANOMALY_05000435 (0) |
diff --git a/arch/blackfin/mach-bf548/include/mach/bf548.h b/arch/blackfin/mach-bf548/include/mach/bf548.h index f0e569984810..cd31f72bdd82 100644 --- a/arch/blackfin/mach-bf548/include/mach/bf548.h +++ b/arch/blackfin/mach-bf548/include/mach/bf548.h | |||
| @@ -104,6 +104,18 @@ | |||
| 104 | 104 | ||
| 105 | #define AMGCTLVAL (V_AMBEN | V_AMCKEN) | 105 | #define AMGCTLVAL (V_AMBEN | V_AMCKEN) |
| 106 | 106 | ||
| 107 | #if defined(CONFIG_BF542M) | ||
| 108 | # define CONFIG_BF542 | ||
| 109 | #elif defined(CONFIG_BF544M) | ||
| 110 | # define CONFIG_BF544 | ||
| 111 | #elif defined(CONFIG_BF547M) | ||
| 112 | # define CONFIG_BF547 | ||
| 113 | #elif defined(CONFIG_BF548M) | ||
| 114 | # define CONFIG_BF548 | ||
| 115 | #elif defined(CONFIG_BF549M) | ||
| 116 | # define CONFIG_BF549 | ||
| 117 | #endif | ||
| 118 | |||
| 107 | #if defined(CONFIG_BF542) | 119 | #if defined(CONFIG_BF542) |
| 108 | # define CPU "BF542" | 120 | # define CPU "BF542" |
| 109 | # define CPUID 0x27de | 121 | # define CPUID 0x27de |
diff --git a/arch/blackfin/mach-bf548/include/mach/gpio.h b/arch/blackfin/mach-bf548/include/mach/gpio.h index bba82dc75f16..3a2051709787 100644 --- a/arch/blackfin/mach-bf548/include/mach/gpio.h +++ b/arch/blackfin/mach-bf548/include/mach/gpio.h | |||
| @@ -195,17 +195,17 @@ | |||
| 195 | struct gpio_port_t { | 195 | struct gpio_port_t { |
| 196 | unsigned short port_fer; | 196 | unsigned short port_fer; |
| 197 | unsigned short dummy1; | 197 | unsigned short dummy1; |
| 198 | unsigned short port_data; | 198 | unsigned short data; |
| 199 | unsigned short dummy2; | 199 | unsigned short dummy2; |
| 200 | unsigned short port_set; | 200 | unsigned short data_set; |
| 201 | unsigned short dummy3; | 201 | unsigned short dummy3; |
| 202 | unsigned short port_clear; | 202 | unsigned short data_clear; |
| 203 | unsigned short dummy4; | 203 | unsigned short dummy4; |
| 204 | unsigned short port_dir_set; | 204 | unsigned short dir_set; |
| 205 | unsigned short dummy5; | 205 | unsigned short dummy5; |
| 206 | unsigned short port_dir_clear; | 206 | unsigned short dir_clear; |
| 207 | unsigned short dummy6; | 207 | unsigned short dummy6; |
| 208 | unsigned short port_inen; | 208 | unsigned short inen; |
| 209 | unsigned short dummy7; | 209 | unsigned short dummy7; |
| 210 | unsigned int port_mux; | 210 | unsigned int port_mux; |
| 211 | }; | 211 | }; |
diff --git a/arch/blackfin/mach-bf548/include/mach/portmux.h b/arch/blackfin/mach-bf548/include/mach/portmux.h index 8177a567dcdb..ffb1d0a44b4d 100644 --- a/arch/blackfin/mach-bf548/include/mach/portmux.h +++ b/arch/blackfin/mach-bf548/include/mach/portmux.h | |||
| @@ -125,6 +125,7 @@ | |||
| 125 | #define P_KEY_COL2 (P_DEFINED | P_IDENT(GPIO_PD14) | P_FUNCT(3)) | 125 | #define P_KEY_COL2 (P_DEFINED | P_IDENT(GPIO_PD14) | P_FUNCT(3)) |
| 126 | #define P_KEY_COL3 (P_DEFINED | P_IDENT(GPIO_PD15) | P_FUNCT(3)) | 126 | #define P_KEY_COL3 (P_DEFINED | P_IDENT(GPIO_PD15) | P_FUNCT(3)) |
| 127 | 127 | ||
| 128 | #define P_DEFAULT_BOOT_SPI_CS P_SPI0_SSEL1 | ||
| 128 | #define P_SPI0_SCK (P_DEFINED | P_IDENT(GPIO_PE0) | P_FUNCT(0)) | 129 | #define P_SPI0_SCK (P_DEFINED | P_IDENT(GPIO_PE0) | P_FUNCT(0)) |
| 129 | #define P_SPI0_MISO (P_DEFINED | P_IDENT(GPIO_PE1) | P_FUNCT(0)) | 130 | #define P_SPI0_MISO (P_DEFINED | P_IDENT(GPIO_PE1) | P_FUNCT(0)) |
| 130 | #define P_SPI0_MOSI (P_DEFINED | P_IDENT(GPIO_PE2) | P_FUNCT(0)) | 131 | #define P_SPI0_MOSI (P_DEFINED | P_IDENT(GPIO_PE2) | P_FUNCT(0)) |
diff --git a/arch/blackfin/mach-bf561/include/mach/defBF561.h b/arch/blackfin/mach-bf561/include/mach/defBF561.h index d7c509759659..cf922295f4ce 100644 --- a/arch/blackfin/mach-bf561/include/mach/defBF561.h +++ b/arch/blackfin/mach-bf561/include/mach/defBF561.h | |||
| @@ -1106,6 +1106,8 @@ | |||
| 1106 | #define DLEN_8 0x0 /* PPI Data Length mask for DLEN=8 */ | 1106 | #define DLEN_8 0x0 /* PPI Data Length mask for DLEN=8 */ |
| 1107 | #define DLEN(x) (((x-9) & 0x07) << 11) /* PPI Data Length (only works for x=10-->x=16) */ | 1107 | #define DLEN(x) (((x-9) & 0x07) << 11) /* PPI Data Length (only works for x=10-->x=16) */ |
| 1108 | #define POL 0x0000C000 /* PPI Signal Polarities */ | 1108 | #define POL 0x0000C000 /* PPI Signal Polarities */ |
| 1109 | #define POLC 0x4000 /* PPI Clock Polarity */ | ||
| 1110 | #define POLS 0x8000 /* PPI Frame Sync Polarity */ | ||
| 1109 | 1111 | ||
| 1110 | /* PPI_STATUS Masks */ | 1112 | /* PPI_STATUS Masks */ |
| 1111 | #define FLD 0x00000400 /* Field Indicator */ | 1113 | #define FLD 0x00000400 /* Field Indicator */ |
diff --git a/arch/blackfin/mach-bf561/include/mach/portmux.h b/arch/blackfin/mach-bf561/include/mach/portmux.h index a6ee8206efb6..2e5ad6347dea 100644 --- a/arch/blackfin/mach-bf561/include/mach/portmux.h +++ b/arch/blackfin/mach-bf561/include/mach/portmux.h | |||
| @@ -85,5 +85,6 @@ | |||
| 85 | #define P_SPI0_MOSI (P_DONTCARE) | 85 | #define P_SPI0_MOSI (P_DONTCARE) |
| 86 | #define P_SPI0_MISO (P_DONTCARE) | 86 | #define P_SPI0_MISO (P_DONTCARE) |
| 87 | #define P_SPI0_SCK (P_DONTCARE) | 87 | #define P_SPI0_SCK (P_DONTCARE) |
| 88 | #define P_DEFAULT_BOOT_SPI_CS P_SPI0_SSEL2 | ||
| 88 | 89 | ||
| 89 | #endif /* _MACH_PORTMUX_H_ */ | 90 | #endif /* _MACH_PORTMUX_H_ */ |
diff --git a/arch/blackfin/mach-common/clocks-init.c b/arch/blackfin/mach-common/clocks-init.c index 5d182abefc7b..9dddb6f8cc85 100644 --- a/arch/blackfin/mach-common/clocks-init.c +++ b/arch/blackfin/mach-common/clocks-init.c | |||
| @@ -14,6 +14,7 @@ | |||
| 14 | #include <asm/clocks.h> | 14 | #include <asm/clocks.h> |
| 15 | #include <asm/mem_init.h> | 15 | #include <asm/mem_init.h> |
| 16 | 16 | ||
| 17 | #define SDGCTL_WIDTH (1 << 31) /* SDRAM external data path width */ | ||
| 17 | #define PLL_CTL_VAL \ | 18 | #define PLL_CTL_VAL \ |
| 18 | (((CONFIG_VCO_MULT & 63) << 9) | CLKIN_HALF | \ | 19 | (((CONFIG_VCO_MULT & 63) << 9) | CLKIN_HALF | \ |
| 19 | (PLL_BYPASS << 8) | (ANOMALY_05000265 ? 0x8000 : 0)) | 20 | (PLL_BYPASS << 8) | (ANOMALY_05000265 ? 0x8000 : 0)) |
| @@ -76,7 +77,7 @@ void init_clocks(void) | |||
| 76 | bfin_write_PLL_DIV(CONFIG_CCLK_ACT_DIV | CONFIG_SCLK_DIV); | 77 | bfin_write_PLL_DIV(CONFIG_CCLK_ACT_DIV | CONFIG_SCLK_DIV); |
| 77 | #ifdef EBIU_SDGCTL | 78 | #ifdef EBIU_SDGCTL |
| 78 | bfin_write_EBIU_SDRRC(mem_SDRRC); | 79 | bfin_write_EBIU_SDRRC(mem_SDRRC); |
| 79 | bfin_write_EBIU_SDGCTL(mem_SDGCTL); | 80 | bfin_write_EBIU_SDGCTL((bfin_read_EBIU_SDGCTL() & SDGCTL_WIDTH) | mem_SDGCTL); |
| 80 | #else | 81 | #else |
| 81 | bfin_write_EBIU_RSTCTL(bfin_read_EBIU_RSTCTL() & ~(SRREQ)); | 82 | bfin_write_EBIU_RSTCTL(bfin_read_EBIU_RSTCTL() & ~(SRREQ)); |
| 82 | do_sync(); | 83 | do_sync(); |
diff --git a/arch/blackfin/mach-common/entry.S b/arch/blackfin/mach-common/entry.S index fae774651374..88de053bbe8e 100644 --- a/arch/blackfin/mach-common/entry.S +++ b/arch/blackfin/mach-common/entry.S | |||
| @@ -151,13 +151,6 @@ ENTRY(_ex_syscall) | |||
| 151 | jump.s _bfin_return_from_exception; | 151 | jump.s _bfin_return_from_exception; |
| 152 | ENDPROC(_ex_syscall) | 152 | ENDPROC(_ex_syscall) |
| 153 | 153 | ||
| 154 | ENTRY(_ex_soft_bp) | ||
| 155 | r7 = retx; | ||
| 156 | r7 += -2; | ||
| 157 | retx = r7; | ||
| 158 | jump.s _ex_trap_c; | ||
| 159 | ENDPROC(_ex_soft_bp) | ||
| 160 | |||
| 161 | ENTRY(_ex_single_step) | 154 | ENTRY(_ex_single_step) |
| 162 | /* If we just returned from an interrupt, the single step event is | 155 | /* If we just returned from an interrupt, the single step event is |
| 163 | for the RTI instruction. */ | 156 | for the RTI instruction. */ |
| @@ -1087,7 +1080,7 @@ ENTRY(_ex_table) | |||
| 1087 | * EXCPT instruction can provide 4 bits of EXCAUSE, allowing 16 to be user defined | 1080 | * EXCPT instruction can provide 4 bits of EXCAUSE, allowing 16 to be user defined |
| 1088 | */ | 1081 | */ |
| 1089 | .long _ex_syscall /* 0x00 - User Defined - Linux Syscall */ | 1082 | .long _ex_syscall /* 0x00 - User Defined - Linux Syscall */ |
| 1090 | .long _ex_soft_bp /* 0x01 - User Defined - Software breakpoint */ | 1083 | .long _ex_trap_c /* 0x01 - User Defined - Software breakpoint */ |
| 1091 | #ifdef CONFIG_KGDB | 1084 | #ifdef CONFIG_KGDB |
| 1092 | .long _ex_trap_c /* 0x02 - User Defined - KGDB initial connection | 1085 | .long _ex_trap_c /* 0x02 - User Defined - KGDB initial connection |
| 1093 | and break signal trap */ | 1086 | and break signal trap */ |
diff --git a/arch/blackfin/mach-common/head.S b/arch/blackfin/mach-common/head.S index e1e42c029e15..698d4c05947e 100644 --- a/arch/blackfin/mach-common/head.S +++ b/arch/blackfin/mach-common/head.S | |||
| @@ -17,6 +17,19 @@ | |||
| 17 | 17 | ||
| 18 | __INIT | 18 | __INIT |
| 19 | 19 | ||
| 20 | ENTRY(__init_clear_bss) | ||
| 21 | r2 = r2 - r1; | ||
| 22 | cc = r2 == 0; | ||
| 23 | if cc jump .L_bss_done; | ||
| 24 | r2 >>= 2; | ||
| 25 | p1 = r1; | ||
| 26 | p2 = r2; | ||
| 27 | lsetup (1f, 1f) lc0 = p2; | ||
| 28 | 1: [p1++] = r0; | ||
| 29 | .L_bss_done: | ||
| 30 | rts; | ||
| 31 | ENDPROC(__init_clear_bss) | ||
| 32 | |||
| 20 | #define INITIAL_STACK (L1_SCRATCH_START + L1_SCRATCH_LENGTH - 12) | 33 | #define INITIAL_STACK (L1_SCRATCH_START + L1_SCRATCH_LENGTH - 12) |
| 21 | 34 | ||
| 22 | ENTRY(__start) | 35 | ENTRY(__start) |
| @@ -144,6 +157,35 @@ ENTRY(__start) | |||
| 144 | call _init_early_exception_vectors; | 157 | call _init_early_exception_vectors; |
| 145 | #endif | 158 | #endif |
| 146 | 159 | ||
| 160 | r0 = 0 (x); | ||
| 161 | /* Zero out all of the fun bss regions */ | ||
| 162 | #if L1_DATA_A_LENGTH > 0 | ||
| 163 | r1.l = __sbss_l1; | ||
| 164 | r1.h = __sbss_l1; | ||
| 165 | r2.l = __ebss_l1; | ||
| 166 | r2.h = __ebss_l1; | ||
| 167 | call __init_clear_bss | ||
| 168 | #endif | ||
| 169 | #if L1_DATA_B_LENGTH > 0 | ||
| 170 | r1.l = __sbss_b_l1; | ||
| 171 | r1.h = __sbss_b_l1; | ||
| 172 | r2.l = __ebss_b_l1; | ||
| 173 | r2.h = __ebss_b_l1; | ||
| 174 | call __init_clear_bss | ||
| 175 | #endif | ||
| 176 | #if L2_LENGTH > 0 | ||
| 177 | r1.l = __sbss_l2; | ||
| 178 | r1.h = __sbss_l2; | ||
| 179 | r2.l = __ebss_l2; | ||
| 180 | r2.h = __ebss_l2; | ||
| 181 | call __init_clear_bss | ||
| 182 | #endif | ||
| 183 | r1.l = ___bss_start; | ||
| 184 | r1.h = ___bss_start; | ||
| 185 | r2.l = ___bss_stop; | ||
| 186 | r2.h = ___bss_stop; | ||
| 187 | call __init_clear_bss | ||
| 188 | |||
| 147 | /* Put The Code for PLL Programming and SDRAM Programming in L1 ISRAM */ | 189 | /* Put The Code for PLL Programming and SDRAM Programming in L1 ISRAM */ |
| 148 | call _bfin_relocate_l1_mem; | 190 | call _bfin_relocate_l1_mem; |
| 149 | #ifdef CONFIG_BFIN_KERNEL_CLOCK | 191 | #ifdef CONFIG_BFIN_KERNEL_CLOCK |
| @@ -185,19 +227,6 @@ ENDPROC(__start) | |||
| 185 | # define WDOG_CTL WDOGA_CTL | 227 | # define WDOG_CTL WDOGA_CTL |
| 186 | #endif | 228 | #endif |
| 187 | 229 | ||
| 188 | ENTRY(__init_clear_bss) | ||
| 189 | r2 = r2 - r1; | ||
| 190 | cc = r2 == 0; | ||
| 191 | if cc jump .L_bss_done; | ||
| 192 | r2 >>= 2; | ||
| 193 | p1 = r1; | ||
| 194 | p2 = r2; | ||
| 195 | lsetup (1f, 1f) lc0 = p2; | ||
| 196 | 1: [p1++] = r0; | ||
| 197 | .L_bss_done: | ||
| 198 | rts; | ||
| 199 | ENDPROC(__init_clear_bss) | ||
| 200 | |||
| 201 | ENTRY(_real_start) | 230 | ENTRY(_real_start) |
| 202 | /* Enable nested interrupts */ | 231 | /* Enable nested interrupts */ |
| 203 | [--sp] = reti; | 232 | [--sp] = reti; |
| @@ -209,35 +238,6 @@ ENTRY(_real_start) | |||
| 209 | w[p0] = r0; | 238 | w[p0] = r0; |
| 210 | ssync; | 239 | ssync; |
| 211 | 240 | ||
| 212 | r0 = 0 (x); | ||
| 213 | /* Zero out all of the fun bss regions */ | ||
| 214 | #if L1_DATA_A_LENGTH > 0 | ||
| 215 | r1.l = __sbss_l1; | ||
| 216 | r1.h = __sbss_l1; | ||
| 217 | r2.l = __ebss_l1; | ||
| 218 | r2.h = __ebss_l1; | ||
| 219 | call __init_clear_bss | ||
| 220 | #endif | ||
| 221 | #if L1_DATA_B_LENGTH > 0 | ||
| 222 | r1.l = __sbss_b_l1; | ||
| 223 | r1.h = __sbss_b_l1; | ||
| 224 | r2.l = __ebss_b_l1; | ||
| 225 | r2.h = __ebss_b_l1; | ||
| 226 | call __init_clear_bss | ||
| 227 | #endif | ||
| 228 | #if L2_LENGTH > 0 | ||
| 229 | r1.l = __sbss_l2; | ||
| 230 | r1.h = __sbss_l2; | ||
| 231 | r2.l = __ebss_l2; | ||
| 232 | r2.h = __ebss_l2; | ||
| 233 | call __init_clear_bss | ||
| 234 | #endif | ||
| 235 | r1.l = ___bss_start; | ||
| 236 | r1.h = ___bss_start; | ||
| 237 | r2.l = ___bss_stop; | ||
| 238 | r2.h = ___bss_stop; | ||
| 239 | call __init_clear_bss | ||
| 240 | |||
| 241 | /* Pass the u-boot arguments to the global value command line */ | 241 | /* Pass the u-boot arguments to the global value command line */ |
| 242 | R0 = R7; | 242 | R0 = R7; |
| 243 | call _cmdline_init; | 243 | call _cmdline_init; |
diff --git a/arch/blackfin/mach-common/interrupt.S b/arch/blackfin/mach-common/interrupt.S index 473df0f7fa78..43c4eb9acb65 100644 --- a/arch/blackfin/mach-common/interrupt.S +++ b/arch/blackfin/mach-common/interrupt.S | |||
| @@ -195,7 +195,7 @@ ENDPROC(_evt_ivhw) | |||
| 195 | /* Interrupt routine for evt2 (NMI). | 195 | /* Interrupt routine for evt2 (NMI). |
| 196 | * We don't actually use this, so just return. | 196 | * We don't actually use this, so just return. |
| 197 | * For inner circle type details, please see: | 197 | * For inner circle type details, please see: |
| 198 | * http://docs.blackfin.uclinux.org/doku.php?id=linux:nmi | 198 | * http://docs.blackfin.uclinux.org/doku.php?id=linux-kernel:nmi |
| 199 | */ | 199 | */ |
| 200 | ENTRY(_evt_nmi) | 200 | ENTRY(_evt_nmi) |
| 201 | .weak _evt_nmi | 201 | .weak _evt_nmi |
diff --git a/arch/blackfin/mach-common/ints-priority.c b/arch/blackfin/mach-common/ints-priority.c index 1bba6030dce9..202494568c6c 100644 --- a/arch/blackfin/mach-common/ints-priority.c +++ b/arch/blackfin/mach-common/ints-priority.c | |||
| @@ -1101,10 +1101,9 @@ int __init init_arch_irq(void) | |||
| 1101 | IMASK_IVG14 | IMASK_IVG13 | IMASK_IVG12 | IMASK_IVG11 | | 1101 | IMASK_IVG14 | IMASK_IVG13 | IMASK_IVG12 | IMASK_IVG11 | |
| 1102 | IMASK_IVG10 | IMASK_IVG9 | IMASK_IVG8 | IMASK_IVG7 | IMASK_IVGHW; | 1102 | IMASK_IVG10 | IMASK_IVG9 | IMASK_IVG8 | IMASK_IVG7 | IMASK_IVGHW; |
| 1103 | 1103 | ||
| 1104 | #if defined(CONFIG_BF54x) || defined(CONFIG_BF52x) || defined(CONFIG_BF561) \ | 1104 | #ifdef SIC_IWR0 |
| 1105 | || defined(BF538_FAMILY) || defined(CONFIG_BF51x) | ||
| 1106 | bfin_write_SIC_IWR0(IWR_DISABLE_ALL); | 1105 | bfin_write_SIC_IWR0(IWR_DISABLE_ALL); |
| 1107 | #if defined(CONFIG_BF52x) || defined(CONFIG_BF51x) | 1106 | # ifdef SIC_IWR1 |
| 1108 | /* BF52x/BF51x system reset does not properly reset SIC_IWR1 which | 1107 | /* BF52x/BF51x system reset does not properly reset SIC_IWR1 which |
| 1109 | * will screw up the bootrom as it relies on MDMA0/1 waking it | 1108 | * will screw up the bootrom as it relies on MDMA0/1 waking it |
| 1110 | * up from IDLE instructions. See this report for more info: | 1109 | * up from IDLE instructions. See this report for more info: |
| @@ -1114,10 +1113,8 @@ int __init init_arch_irq(void) | |||
| 1114 | bfin_write_SIC_IWR1(IWR_ENABLE(10) | IWR_ENABLE(11)); | 1113 | bfin_write_SIC_IWR1(IWR_ENABLE(10) | IWR_ENABLE(11)); |
| 1115 | else | 1114 | else |
| 1116 | bfin_write_SIC_IWR1(IWR_DISABLE_ALL); | 1115 | bfin_write_SIC_IWR1(IWR_DISABLE_ALL); |
| 1117 | #else | 1116 | # endif |
| 1118 | bfin_write_SIC_IWR1(IWR_DISABLE_ALL); | 1117 | # ifdef SIC_IWR2 |
| 1119 | #endif | ||
| 1120 | # ifdef CONFIG_BF54x | ||
| 1121 | bfin_write_SIC_IWR2(IWR_DISABLE_ALL); | 1118 | bfin_write_SIC_IWR2(IWR_DISABLE_ALL); |
| 1122 | # endif | 1119 | # endif |
| 1123 | #else | 1120 | #else |
diff --git a/arch/blackfin/mach-common/pm.c b/arch/blackfin/mach-common/pm.c index d3d70fd67c16..f48a6aebb49b 100644 --- a/arch/blackfin/mach-common/pm.c +++ b/arch/blackfin/mach-common/pm.c | |||
| @@ -82,10 +82,9 @@ void bfin_pm_suspend_standby_enter(void) | |||
| 82 | 82 | ||
| 83 | bfin_pm_standby_restore(); | 83 | bfin_pm_standby_restore(); |
| 84 | 84 | ||
| 85 | #if defined(CONFIG_BF54x) || defined(CONFIG_BF52x) || defined(CONFIG_BF561) || \ | 85 | #ifdef SIC_IWR0 |
| 86 | defined(CONFIG_BF538) || defined(CONFIG_BF539) || defined(CONFIG_BF51x) | ||
| 87 | bfin_write_SIC_IWR0(IWR_DISABLE_ALL); | 86 | bfin_write_SIC_IWR0(IWR_DISABLE_ALL); |
| 88 | #if defined(CONFIG_BF52x) || defined(CONFIG_BF51x) | 87 | # ifdef SIC_IWR1 |
| 89 | /* BF52x system reset does not properly reset SIC_IWR1 which | 88 | /* BF52x system reset does not properly reset SIC_IWR1 which |
| 90 | * will screw up the bootrom as it relies on MDMA0/1 waking it | 89 | * will screw up the bootrom as it relies on MDMA0/1 waking it |
| 91 | * up from IDLE instructions. See this report for more info: | 90 | * up from IDLE instructions. See this report for more info: |
| @@ -95,10 +94,8 @@ void bfin_pm_suspend_standby_enter(void) | |||
| 95 | bfin_write_SIC_IWR1(IWR_ENABLE(10) | IWR_ENABLE(11)); | 94 | bfin_write_SIC_IWR1(IWR_ENABLE(10) | IWR_ENABLE(11)); |
| 96 | else | 95 | else |
| 97 | bfin_write_SIC_IWR1(IWR_DISABLE_ALL); | 96 | bfin_write_SIC_IWR1(IWR_DISABLE_ALL); |
| 98 | #else | 97 | # endif |
| 99 | bfin_write_SIC_IWR1(IWR_DISABLE_ALL); | 98 | # ifdef SIC_IWR2 |
| 100 | #endif | ||
| 101 | # ifdef CONFIG_BF54x | ||
| 102 | bfin_write_SIC_IWR2(IWR_DISABLE_ALL); | 99 | bfin_write_SIC_IWR2(IWR_DISABLE_ALL); |
| 103 | # endif | 100 | # endif |
| 104 | #else | 101 | #else |
diff --git a/arch/frv/mm/dma-alloc.c b/arch/frv/mm/dma-alloc.c index dc6522c464d4..44840e73e907 100644 --- a/arch/frv/mm/dma-alloc.c +++ b/arch/frv/mm/dma-alloc.c | |||
| @@ -36,10 +36,10 @@ | |||
| 36 | #include <linux/vmalloc.h> | 36 | #include <linux/vmalloc.h> |
| 37 | #include <linux/init.h> | 37 | #include <linux/init.h> |
| 38 | #include <linux/pci.h> | 38 | #include <linux/pci.h> |
| 39 | #include <linux/hardirq.h> | ||
| 39 | 40 | ||
| 40 | #include <asm/pgalloc.h> | 41 | #include <asm/pgalloc.h> |
| 41 | #include <asm/io.h> | 42 | #include <asm/io.h> |
| 42 | #include <asm/hardirq.h> | ||
| 43 | #include <asm/mmu_context.h> | 43 | #include <asm/mmu_context.h> |
| 44 | #include <asm/pgtable.h> | 44 | #include <asm/pgtable.h> |
| 45 | #include <asm/mmu.h> | 45 | #include <asm/mmu.h> |
diff --git a/arch/ia64/sn/kernel/io_acpi_init.c b/arch/ia64/sn/kernel/io_acpi_init.c index c5a214026a77..d0223abbbbd4 100644 --- a/arch/ia64/sn/kernel/io_acpi_init.c +++ b/arch/ia64/sn/kernel/io_acpi_init.c | |||
| @@ -443,7 +443,7 @@ sn_acpi_slot_fixup(struct pci_dev *dev) | |||
| 443 | size = pci_resource_len(dev, PCI_ROM_RESOURCE); | 443 | size = pci_resource_len(dev, PCI_ROM_RESOURCE); |
| 444 | addr = ioremap(pcidev_info->pdi_pio_mapped_addr[PCI_ROM_RESOURCE], | 444 | addr = ioremap(pcidev_info->pdi_pio_mapped_addr[PCI_ROM_RESOURCE], |
| 445 | size); | 445 | size); |
| 446 | image_size = pci_get_rom_size(addr, size); | 446 | image_size = pci_get_rom_size(dev, addr, size); |
| 447 | dev->resource[PCI_ROM_RESOURCE].start = (unsigned long) addr; | 447 | dev->resource[PCI_ROM_RESOURCE].start = (unsigned long) addr; |
| 448 | dev->resource[PCI_ROM_RESOURCE].end = | 448 | dev->resource[PCI_ROM_RESOURCE].end = |
| 449 | (unsigned long) addr + image_size - 1; | 449 | (unsigned long) addr + image_size - 1; |
diff --git a/arch/ia64/sn/kernel/io_init.c b/arch/ia64/sn/kernel/io_init.c index 4e1801bad83a..e2eb2da60f96 100644 --- a/arch/ia64/sn/kernel/io_init.c +++ b/arch/ia64/sn/kernel/io_init.c | |||
| @@ -269,7 +269,7 @@ sn_io_slot_fixup(struct pci_dev *dev) | |||
| 269 | 269 | ||
| 270 | rom = ioremap(pci_resource_start(dev, PCI_ROM_RESOURCE), | 270 | rom = ioremap(pci_resource_start(dev, PCI_ROM_RESOURCE), |
| 271 | size + 1); | 271 | size + 1); |
| 272 | image_size = pci_get_rom_size(rom, size + 1); | 272 | image_size = pci_get_rom_size(dev, rom, size + 1); |
| 273 | dev->resource[PCI_ROM_RESOURCE].end = | 273 | dev->resource[PCI_ROM_RESOURCE].end = |
| 274 | dev->resource[PCI_ROM_RESOURCE].start + | 274 | dev->resource[PCI_ROM_RESOURCE].start + |
| 275 | image_size - 1; | 275 | image_size - 1; |
diff --git a/arch/mips/include/asm/spinlock.h b/arch/mips/include/asm/spinlock.h index 1a1f320c30d8..0884947ebe27 100644 --- a/arch/mips/include/asm/spinlock.h +++ b/arch/mips/include/asm/spinlock.h | |||
| @@ -51,6 +51,7 @@ static inline int __raw_spin_is_contended(raw_spinlock_t *lock) | |||
| 51 | 51 | ||
| 52 | return (((counters >> 14) - counters) & 0x1fff) > 1; | 52 | return (((counters >> 14) - counters) & 0x1fff) > 1; |
| 53 | } | 53 | } |
| 54 | #define __raw_spin_is_contended __raw_spin_is_contended | ||
| 54 | 55 | ||
| 55 | static inline void __raw_spin_lock(raw_spinlock_t *lock) | 56 | static inline void __raw_spin_lock(raw_spinlock_t *lock) |
| 56 | { | 57 | { |
diff --git a/arch/powerpc/boot/dts/mpc8313erdb.dts b/arch/powerpc/boot/dts/mpc8313erdb.dts index 909a89cab9ac..3ebf7ec0484c 100644 --- a/arch/powerpc/boot/dts/mpc8313erdb.dts +++ b/arch/powerpc/boot/dts/mpc8313erdb.dts | |||
| @@ -191,7 +191,8 @@ | |||
| 191 | interrupts = <37 0x8 36 0x8 35 0x8>; | 191 | interrupts = <37 0x8 36 0x8 35 0x8>; |
| 192 | interrupt-parent = <&ipic>; | 192 | interrupt-parent = <&ipic>; |
| 193 | tbi-handle = < &tbi0 >; | 193 | tbi-handle = < &tbi0 >; |
| 194 | phy-handle = < &phy1 >; | 194 | /* Vitesse 7385 isn't on the MDIO bus */ |
| 195 | fixed-link = <1 1 1000 0 0>; | ||
| 195 | fsl,magic-packet; | 196 | fsl,magic-packet; |
| 196 | 197 | ||
| 197 | mdio@24520 { | 198 | mdio@24520 { |
| @@ -199,12 +200,6 @@ | |||
| 199 | #size-cells = <0>; | 200 | #size-cells = <0>; |
| 200 | compatible = "fsl,gianfar-mdio"; | 201 | compatible = "fsl,gianfar-mdio"; |
| 201 | reg = <0x24520 0x20>; | 202 | reg = <0x24520 0x20>; |
| 202 | phy1: ethernet-phy@1 { | ||
| 203 | interrupt-parent = <&ipic>; | ||
| 204 | interrupts = <19 0x8>; | ||
| 205 | reg = <0x1>; | ||
| 206 | device_type = "ethernet-phy"; | ||
| 207 | }; | ||
| 208 | phy4: ethernet-phy@4 { | 203 | phy4: ethernet-phy@4 { |
| 209 | interrupt-parent = <&ipic>; | 204 | interrupt-parent = <&ipic>; |
| 210 | interrupts = <20 0x8>; | 205 | interrupts = <20 0x8>; |
| @@ -219,6 +214,8 @@ | |||
| 219 | }; | 214 | }; |
| 220 | 215 | ||
| 221 | enet1: ethernet@25000 { | 216 | enet1: ethernet@25000 { |
| 217 | #address-cells = <1>; | ||
| 218 | #size-cells = <1>; | ||
| 222 | cell-index = <1>; | 219 | cell-index = <1>; |
| 223 | device_type = "network"; | 220 | device_type = "network"; |
| 224 | model = "eTSEC"; | 221 | model = "eTSEC"; |
diff --git a/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig b/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig index 9e47ae957e2e..409d017621a8 100644 --- a/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig +++ b/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig | |||
| @@ -651,7 +651,7 @@ CONFIG_CICADA_PHY=y | |||
| 651 | # CONFIG_NATIONAL_PHY is not set | 651 | # CONFIG_NATIONAL_PHY is not set |
| 652 | # CONFIG_STE10XP is not set | 652 | # CONFIG_STE10XP is not set |
| 653 | # CONFIG_LSI_ET1011C_PHY is not set | 653 | # CONFIG_LSI_ET1011C_PHY is not set |
| 654 | # CONFIG_FIXED_PHY is not set | 654 | CONFIG_FIXED_PHY=y |
| 655 | # CONFIG_MDIO_BITBANG is not set | 655 | # CONFIG_MDIO_BITBANG is not set |
| 656 | CONFIG_NET_ETHERNET=y | 656 | CONFIG_NET_ETHERNET=y |
| 657 | CONFIG_MII=y | 657 | CONFIG_MII=y |
diff --git a/arch/powerpc/kernel/ftrace.c b/arch/powerpc/kernel/ftrace.c index 5355244c99ff..60c60ccf5e3c 100644 --- a/arch/powerpc/kernel/ftrace.c +++ b/arch/powerpc/kernel/ftrace.c | |||
| @@ -195,8 +195,9 @@ __ftrace_make_nop(struct module *mod, | |||
| 195 | return -EINVAL; | 195 | return -EINVAL; |
| 196 | } | 196 | } |
| 197 | 197 | ||
| 198 | offset = (unsigned)((unsigned short)jmp[0]) << 16 | | 198 | /* The bottom half is signed extended */ |
| 199 | (unsigned)((unsigned short)jmp[1]); | 199 | offset = ((unsigned)((unsigned short)jmp[0]) << 16) + |
| 200 | (int)((short)jmp[1]); | ||
| 200 | 201 | ||
| 201 | DEBUGP(" %x ", offset); | 202 | DEBUGP(" %x ", offset); |
| 202 | 203 | ||
diff --git a/arch/powerpc/kernel/pci-common.c b/arch/powerpc/kernel/pci-common.c index 19b12d2cbb4b..0f4181272311 100644 --- a/arch/powerpc/kernel/pci-common.c +++ b/arch/powerpc/kernel/pci-common.c | |||
| @@ -561,8 +561,21 @@ int pci_mmap_legacy_page_range(struct pci_bus *bus, | |||
| 561 | (unsigned long long)(offset + size - 1)); | 561 | (unsigned long long)(offset + size - 1)); |
| 562 | 562 | ||
| 563 | if (mmap_state == pci_mmap_mem) { | 563 | if (mmap_state == pci_mmap_mem) { |
| 564 | if ((offset + size) > hose->isa_mem_size) | 564 | /* Hack alert ! |
| 565 | return -ENXIO; | 565 | * |
| 566 | * Because X is lame and can fail starting if it gets an error trying | ||
| 567 | * to mmap legacy_mem (instead of just moving on without legacy memory | ||
| 568 | * access) we fake it here by giving it anonymous memory, effectively | ||
| 569 | * behaving just like /dev/zero | ||
| 570 | */ | ||
| 571 | if ((offset + size) > hose->isa_mem_size) { | ||
| 572 | printk(KERN_DEBUG | ||
| 573 | "Process %s (pid:%d) mapped non-existing PCI legacy memory for 0%04x:%02x\n", | ||
| 574 | current->comm, current->pid, pci_domain_nr(bus), bus->number); | ||
| 575 | if (vma->vm_flags & VM_SHARED) | ||
| 576 | return shmem_zero_setup(vma); | ||
| 577 | return 0; | ||
| 578 | } | ||
| 566 | offset += hose->isa_mem_phys; | 579 | offset += hose->isa_mem_phys; |
| 567 | } else { | 580 | } else { |
| 568 | unsigned long io_offset = (unsigned long)hose->io_base_virt - _IO_BASE; | 581 | unsigned long io_offset = (unsigned long)hose->io_base_virt - _IO_BASE; |
diff --git a/arch/powerpc/lib/sstep.c b/arch/powerpc/lib/sstep.c index 4aae0c387645..13b7d54f185b 100644 --- a/arch/powerpc/lib/sstep.c +++ b/arch/powerpc/lib/sstep.c | |||
| @@ -172,6 +172,8 @@ int __kprobes emulate_step(struct pt_regs *regs, unsigned int instr) | |||
| 172 | } | 172 | } |
| 173 | break; | 173 | break; |
| 174 | case 0x378: /* orx */ | 174 | case 0x378: /* orx */ |
| 175 | if (instr & 1) | ||
| 176 | break; | ||
| 175 | rs = (instr >> 21) & 0x1f; | 177 | rs = (instr >> 21) & 0x1f; |
| 176 | rb = (instr >> 11) & 0x1f; | 178 | rb = (instr >> 11) & 0x1f; |
| 177 | if (rs == rb) { /* mr */ | 179 | if (rs == rb) { /* mr */ |
diff --git a/arch/powerpc/mm/fsl_booke_mmu.c b/arch/powerpc/mm/fsl_booke_mmu.c index 1971e4ee3d6e..ea6e41e39d9f 100644 --- a/arch/powerpc/mm/fsl_booke_mmu.c +++ b/arch/powerpc/mm/fsl_booke_mmu.c | |||
| @@ -73,7 +73,7 @@ extern unsigned int tlbcam_index; | |||
| 73 | /* | 73 | /* |
| 74 | * Return PA for this VA if it is mapped by a CAM, or 0 | 74 | * Return PA for this VA if it is mapped by a CAM, or 0 |
| 75 | */ | 75 | */ |
| 76 | unsigned long v_mapped_by_tlbcam(unsigned long va) | 76 | phys_addr_t v_mapped_by_tlbcam(unsigned long va) |
| 77 | { | 77 | { |
| 78 | int b; | 78 | int b; |
| 79 | for (b = 0; b < tlbcam_index; ++b) | 79 | for (b = 0; b < tlbcam_index; ++b) |
| @@ -85,7 +85,7 @@ unsigned long v_mapped_by_tlbcam(unsigned long va) | |||
| 85 | /* | 85 | /* |
| 86 | * Return VA for a given PA or 0 if not mapped | 86 | * Return VA for a given PA or 0 if not mapped |
| 87 | */ | 87 | */ |
| 88 | unsigned long p_mapped_by_tlbcam(unsigned long pa) | 88 | unsigned long p_mapped_by_tlbcam(phys_addr_t pa) |
| 89 | { | 89 | { |
| 90 | int b; | 90 | int b; |
| 91 | for (b = 0; b < tlbcam_index; ++b) | 91 | for (b = 0; b < tlbcam_index; ++b) |
diff --git a/arch/powerpc/mm/hash_low_32.S b/arch/powerpc/mm/hash_low_32.S index 67850ec9feb3..14af8cedab70 100644 --- a/arch/powerpc/mm/hash_low_32.S +++ b/arch/powerpc/mm/hash_low_32.S | |||
| @@ -320,7 +320,7 @@ _GLOBAL(create_hpte) | |||
| 320 | and r8,r8,r0 /* writable if _RW & _DIRTY */ | 320 | and r8,r8,r0 /* writable if _RW & _DIRTY */ |
| 321 | rlwimi r5,r5,32-1,30,30 /* _PAGE_USER -> PP msb */ | 321 | rlwimi r5,r5,32-1,30,30 /* _PAGE_USER -> PP msb */ |
| 322 | rlwimi r5,r5,32-2,31,31 /* _PAGE_USER -> PP lsb */ | 322 | rlwimi r5,r5,32-2,31,31 /* _PAGE_USER -> PP lsb */ |
| 323 | ori r8,r8,0xe14 /* clear out reserved bits and M */ | 323 | ori r8,r8,0xe04 /* clear out reserved bits */ |
| 324 | andc r8,r5,r8 /* PP = user? (rw&dirty? 2: 3): 0 */ | 324 | andc r8,r5,r8 /* PP = user? (rw&dirty? 2: 3): 0 */ |
| 325 | BEGIN_FTR_SECTION | 325 | BEGIN_FTR_SECTION |
| 326 | rlwinm r8,r8,0,~_PAGE_COHERENT /* clear M (coherence not required) */ | 326 | rlwinm r8,r8,0,~_PAGE_COHERENT /* clear M (coherence not required) */ |
diff --git a/arch/powerpc/mm/pgtable_32.c b/arch/powerpc/mm/pgtable_32.c index 22972cd83cc9..58bcaeba728d 100644 --- a/arch/powerpc/mm/pgtable_32.c +++ b/arch/powerpc/mm/pgtable_32.c | |||
| @@ -61,8 +61,8 @@ void setbat(int index, unsigned long virt, phys_addr_t phys, | |||
| 61 | 61 | ||
| 62 | #ifdef HAVE_TLBCAM | 62 | #ifdef HAVE_TLBCAM |
| 63 | extern unsigned int tlbcam_index; | 63 | extern unsigned int tlbcam_index; |
| 64 | extern unsigned long v_mapped_by_tlbcam(unsigned long va); | 64 | extern phys_addr_t v_mapped_by_tlbcam(unsigned long va); |
| 65 | extern unsigned long p_mapped_by_tlbcam(unsigned long pa); | 65 | extern unsigned long p_mapped_by_tlbcam(phys_addr_t pa); |
| 66 | #else /* !HAVE_TLBCAM */ | 66 | #else /* !HAVE_TLBCAM */ |
| 67 | #define v_mapped_by_tlbcam(x) (0UL) | 67 | #define v_mapped_by_tlbcam(x) (0UL) |
| 68 | #define p_mapped_by_tlbcam(x) (0UL) | 68 | #define p_mapped_by_tlbcam(x) (0UL) |
diff --git a/arch/powerpc/oprofile/cell/spu_profiler.c b/arch/powerpc/oprofile/cell/spu_profiler.c index 9305ddaac512..b129d007e7fe 100644 --- a/arch/powerpc/oprofile/cell/spu_profiler.c +++ b/arch/powerpc/oprofile/cell/spu_profiler.c | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | #include <linux/smp.h> | 16 | #include <linux/smp.h> |
| 17 | #include <linux/slab.h> | 17 | #include <linux/slab.h> |
| 18 | #include <asm/cell-pmu.h> | 18 | #include <asm/cell-pmu.h> |
| 19 | #include <asm/time.h> | ||
| 19 | #include "pr_util.h" | 20 | #include "pr_util.h" |
| 20 | 21 | ||
| 21 | #define SCALE_SHIFT 14 | 22 | #define SCALE_SHIFT 14 |
diff --git a/arch/powerpc/platforms/82xx/pq2ads-pci-pic.c b/arch/powerpc/platforms/82xx/pq2ads-pci-pic.c index 9876d7e072f4..ddf0bdc0fc8b 100644 --- a/arch/powerpc/platforms/82xx/pq2ads-pci-pic.c +++ b/arch/powerpc/platforms/82xx/pq2ads-pci-pic.c | |||
| @@ -186,7 +186,7 @@ out_unmap_regs: | |||
| 186 | iounmap(priv->regs); | 186 | iounmap(priv->regs); |
| 187 | out_free_bootmem: | 187 | out_free_bootmem: |
| 188 | free_bootmem((unsigned long)priv, | 188 | free_bootmem((unsigned long)priv, |
| 189 | sizeof(sizeof(struct pq2ads_pci_pic))); | 189 | sizeof(struct pq2ads_pci_pic)); |
| 190 | of_node_put(np); | 190 | of_node_put(np); |
| 191 | out_unmap_irq: | 191 | out_unmap_irq: |
| 192 | irq_dispose_mapping(irq); | 192 | irq_dispose_mapping(irq); |
diff --git a/arch/powerpc/platforms/pseries/hotplug-memory.c b/arch/powerpc/platforms/pseries/hotplug-memory.c index a623ad256e9e..9b21ee68ea50 100644 --- a/arch/powerpc/platforms/pseries/hotplug-memory.c +++ b/arch/powerpc/platforms/pseries/hotplug-memory.c | |||
| @@ -14,6 +14,7 @@ | |||
| 14 | #include <asm/firmware.h> | 14 | #include <asm/firmware.h> |
| 15 | #include <asm/machdep.h> | 15 | #include <asm/machdep.h> |
| 16 | #include <asm/pSeries_reconfig.h> | 16 | #include <asm/pSeries_reconfig.h> |
| 17 | #include <asm/sparsemem.h> | ||
| 17 | 18 | ||
| 18 | static int pseries_remove_lmb(unsigned long base, unsigned int lmb_size) | 19 | static int pseries_remove_lmb(unsigned long base, unsigned int lmb_size) |
| 19 | { | 20 | { |
diff --git a/arch/powerpc/sysdev/cpm2_pic.c b/arch/powerpc/sysdev/cpm2_pic.c index b16ca3ed65d2..78f1f7cca0a0 100644 --- a/arch/powerpc/sysdev/cpm2_pic.c +++ b/arch/powerpc/sysdev/cpm2_pic.c | |||
| @@ -165,7 +165,7 @@ static int cpm2_set_irq_type(unsigned int virq, unsigned int flow_type) | |||
| 165 | edibit = (14 - (src - CPM2_IRQ_EXT1)); | 165 | edibit = (14 - (src - CPM2_IRQ_EXT1)); |
| 166 | else | 166 | else |
| 167 | if (src >= CPM2_IRQ_PORTC15 && src <= CPM2_IRQ_PORTC0) | 167 | if (src >= CPM2_IRQ_PORTC15 && src <= CPM2_IRQ_PORTC0) |
| 168 | edibit = (31 - (src - CPM2_IRQ_PORTC15)); | 168 | edibit = (31 - (CPM2_IRQ_PORTC0 - src)); |
| 169 | else | 169 | else |
| 170 | return (flow_type & IRQ_TYPE_LEVEL_LOW) ? 0 : -EINVAL; | 170 | return (flow_type & IRQ_TYPE_LEVEL_LOW) ? 0 : -EINVAL; |
| 171 | 171 | ||
diff --git a/arch/powerpc/sysdev/ipic.c b/arch/powerpc/sysdev/ipic.c index 88a983ece5c9..9a89cd3e80a2 100644 --- a/arch/powerpc/sysdev/ipic.c +++ b/arch/powerpc/sysdev/ipic.c | |||
| @@ -890,7 +890,7 @@ unsigned int ipic_get_irq(void) | |||
| 890 | return irq_linear_revmap(primary_ipic->irqhost, irq); | 890 | return irq_linear_revmap(primary_ipic->irqhost, irq); |
| 891 | } | 891 | } |
| 892 | 892 | ||
| 893 | #ifdef CONFIG_PM | 893 | #ifdef CONFIG_SUSPEND |
| 894 | static struct { | 894 | static struct { |
| 895 | u32 sicfr; | 895 | u32 sicfr; |
| 896 | u32 siprr[2]; | 896 | u32 siprr[2]; |
diff --git a/arch/s390/defconfig b/arch/s390/defconfig index a0e748da9909..31e809c77790 100644 --- a/arch/s390/defconfig +++ b/arch/s390/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.28-rc6 | 3 | # Linux kernel version: 2.6.29-rc4 |
| 4 | # Thu Nov 27 11:00:49 2008 | 4 | # Wed Feb 11 10:07:16 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SCHED_MC=y | 6 | CONFIG_SCHED_MC=y |
| 7 | CONFIG_MMU=y | 7 | CONFIG_MMU=y |
| @@ -14,12 +14,14 @@ CONFIG_RWSEM_XCHGADD_ALGORITHM=y | |||
| 14 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 14 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 15 | CONFIG_GENERIC_HWEIGHT=y | 15 | CONFIG_GENERIC_HWEIGHT=y |
| 16 | CONFIG_GENERIC_TIME=y | 16 | CONFIG_GENERIC_TIME=y |
| 17 | CONFIG_GENERIC_TIME_VSYSCALL=y | ||
| 17 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 18 | CONFIG_GENERIC_BUG=y | 19 | CONFIG_GENERIC_BUG=y |
| 19 | CONFIG_NO_IOMEM=y | 20 | CONFIG_NO_IOMEM=y |
| 20 | CONFIG_NO_DMA=y | 21 | CONFIG_NO_DMA=y |
| 21 | CONFIG_GENERIC_LOCKBREAK=y | 22 | CONFIG_GENERIC_LOCKBREAK=y |
| 22 | CONFIG_PGSTE=y | 23 | CONFIG_PGSTE=y |
| 24 | CONFIG_VIRT_CPU_ACCOUNTING=y | ||
| 23 | CONFIG_S390=y | 25 | CONFIG_S390=y |
| 24 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 25 | 27 | ||
| @@ -39,20 +41,29 @@ CONFIG_POSIX_MQUEUE=y | |||
| 39 | # CONFIG_TASKSTATS is not set | 41 | # CONFIG_TASKSTATS is not set |
| 40 | CONFIG_AUDIT=y | 42 | CONFIG_AUDIT=y |
| 41 | # CONFIG_AUDITSYSCALL is not set | 43 | # CONFIG_AUDITSYSCALL is not set |
| 44 | |||
| 45 | # | ||
| 46 | # RCU Subsystem | ||
| 47 | # | ||
| 48 | CONFIG_CLASSIC_RCU=y | ||
| 49 | # CONFIG_TREE_RCU is not set | ||
| 50 | # CONFIG_PREEMPT_RCU is not set | ||
| 51 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 52 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 42 | CONFIG_IKCONFIG=y | 53 | CONFIG_IKCONFIG=y |
| 43 | CONFIG_IKCONFIG_PROC=y | 54 | CONFIG_IKCONFIG_PROC=y |
| 44 | CONFIG_LOG_BUF_SHIFT=17 | 55 | CONFIG_LOG_BUF_SHIFT=17 |
| 56 | CONFIG_GROUP_SCHED=y | ||
| 57 | CONFIG_FAIR_GROUP_SCHED=y | ||
| 58 | # CONFIG_RT_GROUP_SCHED is not set | ||
| 59 | CONFIG_USER_SCHED=y | ||
| 60 | # CONFIG_CGROUP_SCHED is not set | ||
| 45 | CONFIG_CGROUPS=y | 61 | CONFIG_CGROUPS=y |
| 46 | # CONFIG_CGROUP_DEBUG is not set | 62 | # CONFIG_CGROUP_DEBUG is not set |
| 47 | CONFIG_CGROUP_NS=y | 63 | CONFIG_CGROUP_NS=y |
| 48 | # CONFIG_CGROUP_FREEZER is not set | 64 | # CONFIG_CGROUP_FREEZER is not set |
| 49 | # CONFIG_CGROUP_DEVICE is not set | 65 | # CONFIG_CGROUP_DEVICE is not set |
| 50 | # CONFIG_CPUSETS is not set | 66 | # CONFIG_CPUSETS is not set |
| 51 | CONFIG_GROUP_SCHED=y | ||
| 52 | CONFIG_FAIR_GROUP_SCHED=y | ||
| 53 | # CONFIG_RT_GROUP_SCHED is not set | ||
| 54 | CONFIG_USER_SCHED=y | ||
| 55 | # CONFIG_CGROUP_SCHED is not set | ||
| 56 | # CONFIG_CGROUP_CPUACCT is not set | 67 | # CONFIG_CGROUP_CPUACCT is not set |
| 57 | # CONFIG_RESOURCE_COUNTERS is not set | 68 | # CONFIG_RESOURCE_COUNTERS is not set |
| 58 | CONFIG_SYSFS_DEPRECATED=y | 69 | CONFIG_SYSFS_DEPRECATED=y |
| @@ -63,6 +74,7 @@ CONFIG_UTS_NS=y | |||
| 63 | CONFIG_IPC_NS=y | 74 | CONFIG_IPC_NS=y |
| 64 | # CONFIG_USER_NS is not set | 75 | # CONFIG_USER_NS is not set |
| 65 | # CONFIG_PID_NS is not set | 76 | # CONFIG_PID_NS is not set |
| 77 | # CONFIG_NET_NS is not set | ||
| 66 | CONFIG_BLK_DEV_INITRD=y | 78 | CONFIG_BLK_DEV_INITRD=y |
| 67 | CONFIG_INITRAMFS_SOURCE="" | 79 | CONFIG_INITRAMFS_SOURCE="" |
| 68 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 80 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| @@ -91,17 +103,17 @@ CONFIG_SLAB=y | |||
| 91 | # CONFIG_SLUB is not set | 103 | # CONFIG_SLUB is not set |
| 92 | # CONFIG_SLOB is not set | 104 | # CONFIG_SLOB is not set |
| 93 | # CONFIG_PROFILING is not set | 105 | # CONFIG_PROFILING is not set |
| 94 | # CONFIG_MARKERS is not set | ||
| 95 | CONFIG_HAVE_OPROFILE=y | 106 | CONFIG_HAVE_OPROFILE=y |
| 96 | CONFIG_KPROBES=y | 107 | CONFIG_KPROBES=y |
| 108 | CONFIG_HAVE_SYSCALL_WRAPPERS=y | ||
| 97 | CONFIG_KRETPROBES=y | 109 | CONFIG_KRETPROBES=y |
| 98 | CONFIG_HAVE_KPROBES=y | 110 | CONFIG_HAVE_KPROBES=y |
| 99 | CONFIG_HAVE_KRETPROBES=y | 111 | CONFIG_HAVE_KRETPROBES=y |
| 100 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 112 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 113 | CONFIG_USE_GENERIC_SMP_HELPERS=y | ||
| 101 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 114 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 102 | CONFIG_SLABINFO=y | 115 | CONFIG_SLABINFO=y |
| 103 | CONFIG_RT_MUTEXES=y | 116 | CONFIG_RT_MUTEXES=y |
| 104 | # CONFIG_TINY_SHMEM is not set | ||
| 105 | CONFIG_BASE_SMALL=0 | 117 | CONFIG_BASE_SMALL=0 |
| 106 | CONFIG_MODULES=y | 118 | CONFIG_MODULES=y |
| 107 | # CONFIG_MODULE_FORCE_LOAD is not set | 119 | # CONFIG_MODULE_FORCE_LOAD is not set |
| @@ -109,7 +121,7 @@ CONFIG_MODULE_UNLOAD=y | |||
| 109 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 121 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 110 | CONFIG_MODVERSIONS=y | 122 | CONFIG_MODVERSIONS=y |
| 111 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 123 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 112 | CONFIG_KMOD=y | 124 | CONFIG_INIT_ALL_POSSIBLE=y |
| 113 | CONFIG_STOP_MACHINE=y | 125 | CONFIG_STOP_MACHINE=y |
| 114 | CONFIG_BLOCK=y | 126 | CONFIG_BLOCK=y |
| 115 | # CONFIG_BLK_DEV_IO_TRACE is not set | 127 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| @@ -130,7 +142,6 @@ CONFIG_DEFAULT_DEADLINE=y | |||
| 130 | # CONFIG_DEFAULT_NOOP is not set | 142 | # CONFIG_DEFAULT_NOOP is not set |
| 131 | CONFIG_DEFAULT_IOSCHED="deadline" | 143 | CONFIG_DEFAULT_IOSCHED="deadline" |
| 132 | CONFIG_PREEMPT_NOTIFIERS=y | 144 | CONFIG_PREEMPT_NOTIFIERS=y |
| 133 | CONFIG_CLASSIC_RCU=y | ||
| 134 | # CONFIG_FREEZER is not set | 145 | # CONFIG_FREEZER is not set |
| 135 | 146 | ||
| 136 | # | 147 | # |
| @@ -161,6 +172,7 @@ CONFIG_S390_EXEC_PROTECT=y | |||
| 161 | CONFIG_MARCH_Z900=y | 172 | CONFIG_MARCH_Z900=y |
| 162 | # CONFIG_MARCH_Z990 is not set | 173 | # CONFIG_MARCH_Z990 is not set |
| 163 | # CONFIG_MARCH_Z9_109 is not set | 174 | # CONFIG_MARCH_Z9_109 is not set |
| 175 | # CONFIG_MARCH_Z10 is not set | ||
| 164 | CONFIG_PACK_STACK=y | 176 | CONFIG_PACK_STACK=y |
| 165 | # CONFIG_SMALL_STACK is not set | 177 | # CONFIG_SMALL_STACK is not set |
| 166 | CONFIG_CHECK_STACK=y | 178 | CONFIG_CHECK_STACK=y |
| @@ -174,7 +186,6 @@ CONFIG_ARCH_POPULATES_NODE_MAP=y | |||
| 174 | # CONFIG_PREEMPT_NONE is not set | 186 | # CONFIG_PREEMPT_NONE is not set |
| 175 | # CONFIG_PREEMPT_VOLUNTARY is not set | 187 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 176 | CONFIG_PREEMPT=y | 188 | CONFIG_PREEMPT=y |
| 177 | # CONFIG_PREEMPT_RCU is not set | ||
| 178 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | 189 | CONFIG_ARCH_SPARSEMEM_ENABLE=y |
| 179 | CONFIG_ARCH_SPARSEMEM_DEFAULT=y | 190 | CONFIG_ARCH_SPARSEMEM_DEFAULT=y |
| 180 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | 191 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y |
| @@ -195,7 +206,6 @@ CONFIG_MEMORY_HOTREMOVE=y | |||
| 195 | CONFIG_PAGEFLAGS_EXTENDED=y | 206 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 196 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 207 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 197 | CONFIG_MIGRATION=y | 208 | CONFIG_MIGRATION=y |
| 198 | CONFIG_RESOURCES_64BIT=y | ||
| 199 | CONFIG_PHYS_ADDR_T_64BIT=y | 209 | CONFIG_PHYS_ADDR_T_64BIT=y |
| 200 | CONFIG_ZONE_DMA_FLAG=1 | 210 | CONFIG_ZONE_DMA_FLAG=1 |
| 201 | CONFIG_BOUNCE=y | 211 | CONFIG_BOUNCE=y |
| @@ -207,7 +217,6 @@ CONFIG_UNEVICTABLE_LRU=y | |||
| 207 | # | 217 | # |
| 208 | CONFIG_MACHCHK_WARNING=y | 218 | CONFIG_MACHCHK_WARNING=y |
| 209 | CONFIG_QDIO=y | 219 | CONFIG_QDIO=y |
| 210 | # CONFIG_QDIO_DEBUG is not set | ||
| 211 | CONFIG_CHSC_SCH=m | 220 | CONFIG_CHSC_SCH=m |
| 212 | 221 | ||
| 213 | # | 222 | # |
| @@ -227,15 +236,13 @@ CONFIG_PFAULT=y | |||
| 227 | # CONFIG_SHARED_KERNEL is not set | 236 | # CONFIG_SHARED_KERNEL is not set |
| 228 | # CONFIG_CMM is not set | 237 | # CONFIG_CMM is not set |
| 229 | # CONFIG_PAGE_STATES is not set | 238 | # CONFIG_PAGE_STATES is not set |
| 230 | CONFIG_VIRT_TIMER=y | ||
| 231 | CONFIG_VIRT_CPU_ACCOUNTING=y | ||
| 232 | # CONFIG_APPLDATA_BASE is not set | 239 | # CONFIG_APPLDATA_BASE is not set |
| 233 | CONFIG_HZ_100=y | 240 | CONFIG_HZ_100=y |
| 234 | # CONFIG_HZ_250 is not set | 241 | # CONFIG_HZ_250 is not set |
| 235 | # CONFIG_HZ_300 is not set | 242 | # CONFIG_HZ_300 is not set |
| 236 | # CONFIG_HZ_1000 is not set | 243 | # CONFIG_HZ_1000 is not set |
| 237 | CONFIG_HZ=100 | 244 | CONFIG_HZ=100 |
| 238 | # CONFIG_SCHED_HRTICK is not set | 245 | CONFIG_SCHED_HRTICK=y |
| 239 | CONFIG_S390_HYPFS_FS=y | 246 | CONFIG_S390_HYPFS_FS=y |
| 240 | CONFIG_KEXEC=y | 247 | CONFIG_KEXEC=y |
| 241 | # CONFIG_ZFCPDUMP is not set | 248 | # CONFIG_ZFCPDUMP is not set |
| @@ -245,6 +252,7 @@ CONFIG_NET=y | |||
| 245 | # | 252 | # |
| 246 | # Networking options | 253 | # Networking options |
| 247 | # | 254 | # |
| 255 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 248 | CONFIG_PACKET=y | 256 | CONFIG_PACKET=y |
| 249 | # CONFIG_PACKET_MMAP is not set | 257 | # CONFIG_PACKET_MMAP is not set |
| 250 | CONFIG_UNIX=y | 258 | CONFIG_UNIX=y |
| @@ -383,6 +391,7 @@ CONFIG_NET_SCH_TBF=m | |||
| 383 | CONFIG_NET_SCH_GRED=m | 391 | CONFIG_NET_SCH_GRED=m |
| 384 | CONFIG_NET_SCH_DSMARK=m | 392 | CONFIG_NET_SCH_DSMARK=m |
| 385 | # CONFIG_NET_SCH_NETEM is not set | 393 | # CONFIG_NET_SCH_NETEM is not set |
| 394 | # CONFIG_NET_SCH_DRR is not set | ||
| 386 | # CONFIG_NET_SCH_INGRESS is not set | 395 | # CONFIG_NET_SCH_INGRESS is not set |
| 387 | 396 | ||
| 388 | # | 397 | # |
| @@ -400,6 +409,7 @@ CONFIG_CLS_U32_MARK=y | |||
| 400 | CONFIG_NET_CLS_RSVP=m | 409 | CONFIG_NET_CLS_RSVP=m |
| 401 | CONFIG_NET_CLS_RSVP6=m | 410 | CONFIG_NET_CLS_RSVP6=m |
| 402 | CONFIG_NET_CLS_FLOW=m | 411 | CONFIG_NET_CLS_FLOW=m |
| 412 | # CONFIG_NET_CLS_CGROUP is not set | ||
| 403 | # CONFIG_NET_EMATCH is not set | 413 | # CONFIG_NET_EMATCH is not set |
| 404 | CONFIG_NET_CLS_ACT=y | 414 | CONFIG_NET_CLS_ACT=y |
| 405 | CONFIG_NET_ACT_POLICE=y | 415 | CONFIG_NET_ACT_POLICE=y |
| @@ -411,6 +421,7 @@ CONFIG_NET_ACT_NAT=m | |||
| 411 | # CONFIG_NET_ACT_SKBEDIT is not set | 421 | # CONFIG_NET_ACT_SKBEDIT is not set |
| 412 | # CONFIG_NET_CLS_IND is not set | 422 | # CONFIG_NET_CLS_IND is not set |
| 413 | CONFIG_NET_SCH_FIFO=y | 423 | CONFIG_NET_SCH_FIFO=y |
| 424 | # CONFIG_DCB is not set | ||
| 414 | 425 | ||
| 415 | # | 426 | # |
| 416 | # Network testing | 427 | # Network testing |
| @@ -428,6 +439,7 @@ CONFIG_CAN_VCAN=m | |||
| 428 | # CONFIG_CAN_DEBUG_DEVICES is not set | 439 | # CONFIG_CAN_DEBUG_DEVICES is not set |
| 429 | # CONFIG_AF_RXRPC is not set | 440 | # CONFIG_AF_RXRPC is not set |
| 430 | # CONFIG_PHONET is not set | 441 | # CONFIG_PHONET is not set |
| 442 | # CONFIG_WIMAX is not set | ||
| 431 | # CONFIG_RFKILL is not set | 443 | # CONFIG_RFKILL is not set |
| 432 | # CONFIG_NET_9P is not set | 444 | # CONFIG_NET_9P is not set |
| 433 | # CONFIG_PCMCIA is not set | 445 | # CONFIG_PCMCIA is not set |
| @@ -475,11 +487,15 @@ CONFIG_DASD_DIAG=y | |||
| 475 | CONFIG_DASD_EER=y | 487 | CONFIG_DASD_EER=y |
| 476 | CONFIG_VIRTIO_BLK=m | 488 | CONFIG_VIRTIO_BLK=m |
| 477 | CONFIG_MISC_DEVICES=y | 489 | CONFIG_MISC_DEVICES=y |
| 478 | # CONFIG_EEPROM_93CX6 is not set | ||
| 479 | # CONFIG_ENCLOSURE_SERVICES is not set | 490 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 480 | # CONFIG_C2PORT is not set | 491 | # CONFIG_C2PORT is not set |
| 481 | 492 | ||
| 482 | # | 493 | # |
| 494 | # EEPROM support | ||
| 495 | # | ||
| 496 | # CONFIG_EEPROM_93CX6 is not set | ||
| 497 | |||
| 498 | # | ||
| 483 | # SCSI device support | 499 | # SCSI device support |
| 484 | # | 500 | # |
| 485 | # CONFIG_RAID_ATTRS is not set | 501 | # CONFIG_RAID_ATTRS is not set |
| @@ -520,6 +536,7 @@ CONFIG_SCSI_FC_ATTRS=y | |||
| 520 | # CONFIG_SCSI_SRP_ATTRS is not set | 536 | # CONFIG_SCSI_SRP_ATTRS is not set |
| 521 | CONFIG_SCSI_LOWLEVEL=y | 537 | CONFIG_SCSI_LOWLEVEL=y |
| 522 | # CONFIG_ISCSI_TCP is not set | 538 | # CONFIG_ISCSI_TCP is not set |
| 539 | # CONFIG_LIBFC is not set | ||
| 523 | # CONFIG_SCSI_DEBUG is not set | 540 | # CONFIG_SCSI_DEBUG is not set |
| 524 | CONFIG_ZFCP=y | 541 | CONFIG_ZFCP=y |
| 525 | CONFIG_SCSI_DH=m | 542 | CONFIG_SCSI_DH=m |
| @@ -566,6 +583,10 @@ CONFIG_NET_ETHERNET=y | |||
| 566 | CONFIG_NETDEV_1000=y | 583 | CONFIG_NETDEV_1000=y |
| 567 | CONFIG_NETDEV_10000=y | 584 | CONFIG_NETDEV_10000=y |
| 568 | # CONFIG_TR is not set | 585 | # CONFIG_TR is not set |
| 586 | |||
| 587 | # | ||
| 588 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 589 | # | ||
| 569 | # CONFIG_WAN is not set | 590 | # CONFIG_WAN is not set |
| 570 | 591 | ||
| 571 | # | 592 | # |
| @@ -593,9 +614,11 @@ CONFIG_VIRTIO_NET=m | |||
| 593 | # | 614 | # |
| 594 | CONFIG_DEVKMEM=y | 615 | CONFIG_DEVKMEM=y |
| 595 | CONFIG_UNIX98_PTYS=y | 616 | CONFIG_UNIX98_PTYS=y |
| 617 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
| 596 | CONFIG_LEGACY_PTYS=y | 618 | CONFIG_LEGACY_PTYS=y |
| 597 | CONFIG_LEGACY_PTY_COUNT=256 | 619 | CONFIG_LEGACY_PTY_COUNT=256 |
| 598 | CONFIG_HVC_DRIVER=y | 620 | CONFIG_HVC_DRIVER=y |
| 621 | CONFIG_HVC_IUCV=y | ||
| 599 | CONFIG_VIRTIO_CONSOLE=y | 622 | CONFIG_VIRTIO_CONSOLE=y |
| 600 | CONFIG_HW_RANDOM=m | 623 | CONFIG_HW_RANDOM=m |
| 601 | CONFIG_HW_RANDOM_VIRTIO=m | 624 | CONFIG_HW_RANDOM_VIRTIO=m |
| @@ -645,7 +668,6 @@ CONFIG_S390_VMUR=m | |||
| 645 | # CONFIG_NEW_LEDS is not set | 668 | # CONFIG_NEW_LEDS is not set |
| 646 | CONFIG_ACCESSIBILITY=y | 669 | CONFIG_ACCESSIBILITY=y |
| 647 | # CONFIG_STAGING is not set | 670 | # CONFIG_STAGING is not set |
| 648 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
| 649 | 671 | ||
| 650 | # | 672 | # |
| 651 | # File systems | 673 | # File systems |
| @@ -668,6 +690,7 @@ CONFIG_FILE_LOCKING=y | |||
| 668 | # CONFIG_XFS_FS is not set | 690 | # CONFIG_XFS_FS is not set |
| 669 | # CONFIG_GFS2_FS is not set | 691 | # CONFIG_GFS2_FS is not set |
| 670 | # CONFIG_OCFS2_FS is not set | 692 | # CONFIG_OCFS2_FS is not set |
| 693 | # CONFIG_BTRFS_FS is not set | ||
| 671 | CONFIG_DNOTIFY=y | 694 | CONFIG_DNOTIFY=y |
| 672 | CONFIG_INOTIFY=y | 695 | CONFIG_INOTIFY=y |
| 673 | CONFIG_INOTIFY_USER=y | 696 | CONFIG_INOTIFY_USER=y |
| @@ -703,10 +726,7 @@ CONFIG_TMPFS_POSIX_ACL=y | |||
| 703 | # CONFIG_HUGETLBFS is not set | 726 | # CONFIG_HUGETLBFS is not set |
| 704 | # CONFIG_HUGETLB_PAGE is not set | 727 | # CONFIG_HUGETLB_PAGE is not set |
| 705 | CONFIG_CONFIGFS_FS=m | 728 | CONFIG_CONFIGFS_FS=m |
| 706 | 729 | CONFIG_MISC_FILESYSTEMS=y | |
| 707 | # | ||
| 708 | # Miscellaneous filesystems | ||
| 709 | # | ||
| 710 | # CONFIG_ADFS_FS is not set | 730 | # CONFIG_ADFS_FS is not set |
| 711 | # CONFIG_AFFS_FS is not set | 731 | # CONFIG_AFFS_FS is not set |
| 712 | # CONFIG_HFS_FS is not set | 732 | # CONFIG_HFS_FS is not set |
| @@ -715,6 +735,7 @@ CONFIG_CONFIGFS_FS=m | |||
| 715 | # CONFIG_BFS_FS is not set | 735 | # CONFIG_BFS_FS is not set |
| 716 | # CONFIG_EFS_FS is not set | 736 | # CONFIG_EFS_FS is not set |
| 717 | # CONFIG_CRAMFS is not set | 737 | # CONFIG_CRAMFS is not set |
| 738 | # CONFIG_SQUASHFS is not set | ||
| 718 | # CONFIG_VXFS_FS is not set | 739 | # CONFIG_VXFS_FS is not set |
| 719 | # CONFIG_MINIX_FS is not set | 740 | # CONFIG_MINIX_FS is not set |
| 720 | # CONFIG_OMFS_FS is not set | 741 | # CONFIG_OMFS_FS is not set |
| @@ -808,6 +829,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 808 | CONFIG_DEBUG_MEMORY_INIT=y | 829 | CONFIG_DEBUG_MEMORY_INIT=y |
| 809 | # CONFIG_DEBUG_LIST is not set | 830 | # CONFIG_DEBUG_LIST is not set |
| 810 | # CONFIG_DEBUG_SG is not set | 831 | # CONFIG_DEBUG_SG is not set |
| 832 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
| 811 | # CONFIG_FRAME_POINTER is not set | 833 | # CONFIG_FRAME_POINTER is not set |
| 812 | # CONFIG_RCU_TORTURE_TEST is not set | 834 | # CONFIG_RCU_TORTURE_TEST is not set |
| 813 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 835 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
| @@ -818,15 +840,19 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
| 818 | # CONFIG_FAULT_INJECTION is not set | 840 | # CONFIG_FAULT_INJECTION is not set |
| 819 | # CONFIG_LATENCYTOP is not set | 841 | # CONFIG_LATENCYTOP is not set |
| 820 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 842 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 843 | CONFIG_HAVE_FUNCTION_TRACER=y | ||
| 821 | 844 | ||
| 822 | # | 845 | # |
| 823 | # Tracers | 846 | # Tracers |
| 824 | # | 847 | # |
| 848 | # CONFIG_FUNCTION_TRACER is not set | ||
| 825 | # CONFIG_IRQSOFF_TRACER is not set | 849 | # CONFIG_IRQSOFF_TRACER is not set |
| 826 | # CONFIG_PREEMPT_TRACER is not set | 850 | # CONFIG_PREEMPT_TRACER is not set |
| 827 | # CONFIG_SCHED_TRACER is not set | 851 | # CONFIG_SCHED_TRACER is not set |
| 828 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 852 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 829 | # CONFIG_BOOT_TRACER is not set | 853 | # CONFIG_BOOT_TRACER is not set |
| 854 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 855 | # CONFIG_STACK_TRACER is not set | ||
| 830 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 856 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
| 831 | CONFIG_SAMPLES=y | 857 | CONFIG_SAMPLES=y |
| 832 | # CONFIG_SAMPLE_KOBJECT is not set | 858 | # CONFIG_SAMPLE_KOBJECT is not set |
| @@ -847,11 +873,17 @@ CONFIG_CRYPTO=y | |||
| 847 | # | 873 | # |
| 848 | CONFIG_CRYPTO_FIPS=y | 874 | CONFIG_CRYPTO_FIPS=y |
| 849 | CONFIG_CRYPTO_ALGAPI=y | 875 | CONFIG_CRYPTO_ALGAPI=y |
| 850 | CONFIG_CRYPTO_AEAD=y | 876 | CONFIG_CRYPTO_ALGAPI2=y |
| 877 | CONFIG_CRYPTO_AEAD=m | ||
| 878 | CONFIG_CRYPTO_AEAD2=y | ||
| 851 | CONFIG_CRYPTO_BLKCIPHER=y | 879 | CONFIG_CRYPTO_BLKCIPHER=y |
| 852 | CONFIG_CRYPTO_HASH=y | 880 | CONFIG_CRYPTO_BLKCIPHER2=y |
| 853 | CONFIG_CRYPTO_RNG=y | 881 | CONFIG_CRYPTO_HASH=m |
| 882 | CONFIG_CRYPTO_HASH2=y | ||
| 883 | CONFIG_CRYPTO_RNG=m | ||
| 884 | CONFIG_CRYPTO_RNG2=y | ||
| 854 | CONFIG_CRYPTO_MANAGER=y | 885 | CONFIG_CRYPTO_MANAGER=y |
| 886 | CONFIG_CRYPTO_MANAGER2=y | ||
| 855 | CONFIG_CRYPTO_GF128MUL=m | 887 | CONFIG_CRYPTO_GF128MUL=m |
| 856 | # CONFIG_CRYPTO_NULL is not set | 888 | # CONFIG_CRYPTO_NULL is not set |
| 857 | # CONFIG_CRYPTO_CRYPTD is not set | 889 | # CONFIG_CRYPTO_CRYPTD is not set |
| @@ -885,7 +917,7 @@ CONFIG_CRYPTO_HMAC=m | |||
| 885 | # | 917 | # |
| 886 | # Digest | 918 | # Digest |
| 887 | # | 919 | # |
| 888 | # CONFIG_CRYPTO_CRC32C is not set | 920 | CONFIG_CRYPTO_CRC32C=m |
| 889 | # CONFIG_CRYPTO_MD4 is not set | 921 | # CONFIG_CRYPTO_MD4 is not set |
| 890 | CONFIG_CRYPTO_MD5=m | 922 | CONFIG_CRYPTO_MD5=m |
| 891 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 923 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| @@ -942,6 +974,7 @@ CONFIG_S390_PRNG=m | |||
| 942 | # Library routines | 974 | # Library routines |
| 943 | # | 975 | # |
| 944 | CONFIG_BITREVERSE=m | 976 | CONFIG_BITREVERSE=m |
| 977 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
| 945 | # CONFIG_CRC_CCITT is not set | 978 | # CONFIG_CRC_CCITT is not set |
| 946 | # CONFIG_CRC16 is not set | 979 | # CONFIG_CRC16 is not set |
| 947 | CONFIG_CRC_T10DIF=y | 980 | CONFIG_CRC_T10DIF=y |
diff --git a/arch/s390/include/asm/lowcore.h b/arch/s390/include/asm/lowcore.h index ffdef5fe8587..f3720defdd16 100644 --- a/arch/s390/include/asm/lowcore.h +++ b/arch/s390/include/asm/lowcore.h | |||
| @@ -384,8 +384,8 @@ struct _lowcore | |||
| 384 | __u32 panic_magic; /* 0xe00 */ | 384 | __u32 panic_magic; /* 0xe00 */ |
| 385 | 385 | ||
| 386 | /* Per cpu primary space access list */ | 386 | /* Per cpu primary space access list */ |
| 387 | __u8 pad_0xe04[0xe3c-0xe04]; /* 0xe04 */ | 387 | __u8 pad_0xe04[0xe38-0xe04]; /* 0xe04 */ |
| 388 | __u32 vdso_per_cpu_data; /* 0xe3c */ | 388 | __u64 vdso_per_cpu_data; /* 0xe38 */ |
| 389 | __u32 paste[16]; /* 0xe40 */ | 389 | __u32 paste[16]; /* 0xe40 */ |
| 390 | 390 | ||
| 391 | __u8 pad13[0x11b8-0xe80]; /* 0xe80 */ | 391 | __u8 pad13[0x11b8-0xe80]; /* 0xe80 */ |
diff --git a/arch/s390/kernel/irq.c b/arch/s390/kernel/irq.c index e7c5bfb7c755..026a37a94fc9 100644 --- a/arch/s390/kernel/irq.c +++ b/arch/s390/kernel/irq.c | |||
| @@ -95,6 +95,7 @@ asmlinkage void do_softirq(void) | |||
| 95 | local_irq_restore(flags); | 95 | local_irq_restore(flags); |
| 96 | } | 96 | } |
| 97 | 97 | ||
| 98 | #ifdef CONFIG_PROC_FS | ||
| 98 | void init_irq_proc(void) | 99 | void init_irq_proc(void) |
| 99 | { | 100 | { |
| 100 | struct proc_dir_entry *root_irq_dir; | 101 | struct proc_dir_entry *root_irq_dir; |
| @@ -102,3 +103,4 @@ void init_irq_proc(void) | |||
| 102 | root_irq_dir = proc_mkdir("irq", NULL); | 103 | root_irq_dir = proc_mkdir("irq", NULL); |
| 103 | create_prof_cpu_mask(root_irq_dir); | 104 | create_prof_cpu_mask(root_irq_dir); |
| 104 | } | 105 | } |
| 106 | #endif | ||
diff --git a/arch/sh/boards/board-ap325rxa.c b/arch/sh/boards/board-ap325rxa.c index caf4c33f4e84..7c35787d29b4 100644 --- a/arch/sh/boards/board-ap325rxa.c +++ b/arch/sh/boards/board-ap325rxa.c | |||
| @@ -22,6 +22,7 @@ | |||
| 22 | #include <linux/gpio.h> | 22 | #include <linux/gpio.h> |
| 23 | #include <linux/spi/spi.h> | 23 | #include <linux/spi/spi.h> |
| 24 | #include <linux/spi/spi_gpio.h> | 24 | #include <linux/spi/spi_gpio.h> |
| 25 | #include <media/ov772x.h> | ||
| 25 | #include <media/soc_camera_platform.h> | 26 | #include <media/soc_camera_platform.h> |
| 26 | #include <media/sh_mobile_ceu.h> | 27 | #include <media/sh_mobile_ceu.h> |
| 27 | #include <video/sh_mobile_lcdc.h> | 28 | #include <video/sh_mobile_lcdc.h> |
| @@ -216,7 +217,14 @@ static struct platform_device lcdc_device = { | |||
| 216 | }, | 217 | }, |
| 217 | }; | 218 | }; |
| 218 | 219 | ||
| 220 | static void camera_power(int val) | ||
| 221 | { | ||
| 222 | gpio_set_value(GPIO_PTZ5, val); /* RST_CAM/RSTB */ | ||
| 223 | mdelay(10); | ||
| 224 | } | ||
| 225 | |||
| 219 | #ifdef CONFIG_I2C | 226 | #ifdef CONFIG_I2C |
| 227 | /* support for the old ncm03j camera */ | ||
| 220 | static unsigned char camera_ncm03j_magic[] = | 228 | static unsigned char camera_ncm03j_magic[] = |
| 221 | { | 229 | { |
| 222 | 0x87, 0x00, 0x88, 0x08, 0x89, 0x01, 0x8A, 0xE8, | 230 | 0x87, 0x00, 0x88, 0x08, 0x89, 0x01, 0x8A, 0xE8, |
| @@ -237,6 +245,23 @@ static unsigned char camera_ncm03j_magic[] = | |||
| 237 | 0x63, 0xD4, 0x64, 0xEA, 0xD6, 0x0F, | 245 | 0x63, 0xD4, 0x64, 0xEA, 0xD6, 0x0F, |
| 238 | }; | 246 | }; |
| 239 | 247 | ||
| 248 | static int camera_probe(void) | ||
| 249 | { | ||
| 250 | struct i2c_adapter *a = i2c_get_adapter(0); | ||
| 251 | struct i2c_msg msg; | ||
| 252 | int ret; | ||
| 253 | |||
| 254 | camera_power(1); | ||
| 255 | msg.addr = 0x6e; | ||
| 256 | msg.buf = camera_ncm03j_magic; | ||
| 257 | msg.len = 2; | ||
| 258 | msg.flags = 0; | ||
| 259 | ret = i2c_transfer(a, &msg, 1); | ||
| 260 | camera_power(0); | ||
| 261 | |||
| 262 | return ret; | ||
| 263 | } | ||
| 264 | |||
| 240 | static int camera_set_capture(struct soc_camera_platform_info *info, | 265 | static int camera_set_capture(struct soc_camera_platform_info *info, |
| 241 | int enable) | 266 | int enable) |
| 242 | { | 267 | { |
| @@ -245,9 +270,11 @@ static int camera_set_capture(struct soc_camera_platform_info *info, | |||
| 245 | int ret = 0; | 270 | int ret = 0; |
| 246 | int i; | 271 | int i; |
| 247 | 272 | ||
| 273 | camera_power(0); | ||
| 248 | if (!enable) | 274 | if (!enable) |
| 249 | return 0; /* no disable for now */ | 275 | return 0; /* no disable for now */ |
| 250 | 276 | ||
| 277 | camera_power(1); | ||
| 251 | for (i = 0; i < ARRAY_SIZE(camera_ncm03j_magic); i += 2) { | 278 | for (i = 0; i < ARRAY_SIZE(camera_ncm03j_magic); i += 2) { |
| 252 | u_int8_t buf[8]; | 279 | u_int8_t buf[8]; |
| 253 | 280 | ||
| @@ -286,8 +313,35 @@ static struct platform_device camera_device = { | |||
| 286 | .platform_data = &camera_info, | 313 | .platform_data = &camera_info, |
| 287 | }, | 314 | }, |
| 288 | }; | 315 | }; |
| 316 | |||
| 317 | static int __init camera_setup(void) | ||
| 318 | { | ||
| 319 | if (camera_probe() > 0) | ||
| 320 | platform_device_register(&camera_device); | ||
| 321 | |||
| 322 | return 0; | ||
| 323 | } | ||
| 324 | late_initcall(camera_setup); | ||
| 325 | |||
| 289 | #endif /* CONFIG_I2C */ | 326 | #endif /* CONFIG_I2C */ |
| 290 | 327 | ||
| 328 | static int ov7725_power(struct device *dev, int mode) | ||
| 329 | { | ||
| 330 | camera_power(0); | ||
| 331 | if (mode) | ||
| 332 | camera_power(1); | ||
| 333 | |||
| 334 | return 0; | ||
| 335 | } | ||
| 336 | |||
| 337 | static struct ov772x_camera_info ov7725_info = { | ||
| 338 | .buswidth = SOCAM_DATAWIDTH_8, | ||
| 339 | .flags = OV772X_FLAG_VFLIP | OV772X_FLAG_HFLIP, | ||
| 340 | .link = { | ||
| 341 | .power = ov7725_power, | ||
| 342 | }, | ||
| 343 | }; | ||
| 344 | |||
| 291 | static struct sh_mobile_ceu_info sh_mobile_ceu_info = { | 345 | static struct sh_mobile_ceu_info sh_mobile_ceu_info = { |
| 292 | .flags = SOCAM_PCLK_SAMPLE_RISING | SOCAM_HSYNC_ACTIVE_HIGH | | 346 | .flags = SOCAM_PCLK_SAMPLE_RISING | SOCAM_HSYNC_ACTIVE_HIGH | |
| 293 | SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_MASTER | SOCAM_DATAWIDTH_8, | 347 | SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_MASTER | SOCAM_DATAWIDTH_8, |
| @@ -338,9 +392,6 @@ static struct platform_device *ap325rxa_devices[] __initdata = { | |||
| 338 | &ap325rxa_nor_flash_device, | 392 | &ap325rxa_nor_flash_device, |
| 339 | &lcdc_device, | 393 | &lcdc_device, |
| 340 | &ceu_device, | 394 | &ceu_device, |
| 341 | #ifdef CONFIG_I2C | ||
| 342 | &camera_device, | ||
| 343 | #endif | ||
| 344 | &nand_flash_device, | 395 | &nand_flash_device, |
| 345 | &sdcard_cn3_device, | 396 | &sdcard_cn3_device, |
| 346 | }; | 397 | }; |
| @@ -349,6 +400,10 @@ static struct i2c_board_info __initdata ap325rxa_i2c_devices[] = { | |||
| 349 | { | 400 | { |
| 350 | I2C_BOARD_INFO("pcf8563", 0x51), | 401 | I2C_BOARD_INFO("pcf8563", 0x51), |
| 351 | }, | 402 | }, |
| 403 | { | ||
| 404 | I2C_BOARD_INFO("ov772x", 0x21), | ||
| 405 | .platform_data = &ov7725_info, | ||
| 406 | }, | ||
| 352 | }; | 407 | }; |
| 353 | 408 | ||
| 354 | static struct spi_board_info ap325rxa_spi_devices[] = { | 409 | static struct spi_board_info ap325rxa_spi_devices[] = { |
| @@ -426,7 +481,7 @@ static int __init ap325rxa_devices_setup(void) | |||
| 426 | gpio_request(GPIO_PTZ6, NULL); | 481 | gpio_request(GPIO_PTZ6, NULL); |
| 427 | gpio_direction_output(GPIO_PTZ6, 0); /* STBY_CAM */ | 482 | gpio_direction_output(GPIO_PTZ6, 0); /* STBY_CAM */ |
| 428 | gpio_request(GPIO_PTZ5, NULL); | 483 | gpio_request(GPIO_PTZ5, NULL); |
| 429 | gpio_direction_output(GPIO_PTZ5, 1); /* RST_CAM */ | 484 | gpio_direction_output(GPIO_PTZ5, 0); /* RST_CAM */ |
| 430 | gpio_request(GPIO_PTZ4, NULL); | 485 | gpio_request(GPIO_PTZ4, NULL); |
| 431 | gpio_direction_output(GPIO_PTZ4, 0); /* SADDR */ | 486 | gpio_direction_output(GPIO_PTZ4, 0); /* SADDR */ |
| 432 | 487 | ||
diff --git a/arch/sh/configs/ap325rxa_defconfig b/arch/sh/configs/ap325rxa_defconfig index 5c423fa8e6b8..352f87d50fdc 100644 --- a/arch/sh/configs/ap325rxa_defconfig +++ b/arch/sh/configs/ap325rxa_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.28 | 3 | # Linux kernel version: 2.6.29-rc2 |
| 4 | # Fri Jan 9 16:54:19 2009 | 4 | # Tue Jan 27 11:45:08 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -45,12 +45,12 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 45 | # CONFIG_AUDIT is not set | 45 | # CONFIG_AUDIT is not set |
| 46 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
| 47 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
| 48 | # CONFIG_CGROUPS is not set | ||
| 49 | CONFIG_GROUP_SCHED=y | 48 | CONFIG_GROUP_SCHED=y |
| 50 | CONFIG_FAIR_GROUP_SCHED=y | 49 | CONFIG_FAIR_GROUP_SCHED=y |
| 51 | # CONFIG_RT_GROUP_SCHED is not set | 50 | # CONFIG_RT_GROUP_SCHED is not set |
| 52 | CONFIG_USER_SCHED=y | 51 | CONFIG_USER_SCHED=y |
| 53 | # CONFIG_CGROUP_SCHED is not set | 52 | # CONFIG_CGROUP_SCHED is not set |
| 53 | # CONFIG_CGROUPS is not set | ||
| 54 | CONFIG_SYSFS_DEPRECATED=y | 54 | CONFIG_SYSFS_DEPRECATED=y |
| 55 | CONFIG_SYSFS_DEPRECATED_V2=y | 55 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 56 | # CONFIG_RELAY is not set | 56 | # CONFIG_RELAY is not set |
| @@ -378,6 +378,7 @@ CONFIG_WIRELESS=y | |||
| 378 | # CONFIG_WIRELESS_EXT is not set | 378 | # CONFIG_WIRELESS_EXT is not set |
| 379 | # CONFIG_LIB80211 is not set | 379 | # CONFIG_LIB80211 is not set |
| 380 | # CONFIG_MAC80211 is not set | 380 | # CONFIG_MAC80211 is not set |
| 381 | # CONFIG_WIMAX is not set | ||
| 381 | # CONFIG_RFKILL is not set | 382 | # CONFIG_RFKILL is not set |
| 382 | # CONFIG_NET_9P is not set | 383 | # CONFIG_NET_9P is not set |
| 383 | 384 | ||
| @@ -400,6 +401,7 @@ CONFIG_MTD=y | |||
| 400 | # CONFIG_MTD_DEBUG is not set | 401 | # CONFIG_MTD_DEBUG is not set |
| 401 | CONFIG_MTD_CONCAT=y | 402 | CONFIG_MTD_CONCAT=y |
| 402 | CONFIG_MTD_PARTITIONS=y | 403 | CONFIG_MTD_PARTITIONS=y |
| 404 | # CONFIG_MTD_TESTS is not set | ||
| 403 | # CONFIG_MTD_REDBOOT_PARTS is not set | 405 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 404 | CONFIG_MTD_CMDLINE_PARTS=y | 406 | CONFIG_MTD_CMDLINE_PARTS=y |
| 405 | # CONFIG_MTD_AR7_PARTS is not set | 407 | # CONFIG_MTD_AR7_PARTS is not set |
| @@ -447,9 +449,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 447 | # | 449 | # |
| 448 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 450 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
| 449 | CONFIG_MTD_PHYSMAP=y | 451 | CONFIG_MTD_PHYSMAP=y |
| 450 | CONFIG_MTD_PHYSMAP_START=0xffffffff | 452 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
| 451 | CONFIG_MTD_PHYSMAP_LEN=0 | ||
| 452 | CONFIG_MTD_PHYSMAP_BANKWIDTH=0 | ||
| 453 | # CONFIG_MTD_PLATRAM is not set | 453 | # CONFIG_MTD_PLATRAM is not set |
| 454 | 454 | ||
| 455 | # | 455 | # |
| @@ -480,6 +480,12 @@ CONFIG_MTD_NAND_SH_FLCTL=y | |||
| 480 | # CONFIG_MTD_ONENAND is not set | 480 | # CONFIG_MTD_ONENAND is not set |
| 481 | 481 | ||
| 482 | # | 482 | # |
| 483 | # LPDDR flash memory drivers | ||
| 484 | # | ||
| 485 | # CONFIG_MTD_LPDDR is not set | ||
| 486 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 487 | |||
| 488 | # | ||
| 483 | # UBI - Unsorted block images | 489 | # UBI - Unsorted block images |
| 484 | # | 490 | # |
| 485 | CONFIG_MTD_UBI=y | 491 | CONFIG_MTD_UBI=y |
| @@ -607,6 +613,10 @@ CONFIG_SMSC911X=y | |||
| 607 | # CONFIG_WLAN_PRE80211 is not set | 613 | # CONFIG_WLAN_PRE80211 is not set |
| 608 | # CONFIG_WLAN_80211 is not set | 614 | # CONFIG_WLAN_80211 is not set |
| 609 | # CONFIG_IWLWIFI_LEDS is not set | 615 | # CONFIG_IWLWIFI_LEDS is not set |
| 616 | |||
| 617 | # | ||
| 618 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 619 | # | ||
| 610 | # CONFIG_WAN is not set | 620 | # CONFIG_WAN is not set |
| 611 | # CONFIG_PPP is not set | 621 | # CONFIG_PPP is not set |
| 612 | # CONFIG_SLIP is not set | 622 | # CONFIG_SLIP is not set |
| @@ -790,6 +800,7 @@ CONFIG_SSB_POSSIBLE=y | |||
| 790 | # CONFIG_PMIC_DA903X is not set | 800 | # CONFIG_PMIC_DA903X is not set |
| 791 | # CONFIG_MFD_WM8400 is not set | 801 | # CONFIG_MFD_WM8400 is not set |
| 792 | # CONFIG_MFD_WM8350_I2C is not set | 802 | # CONFIG_MFD_WM8350_I2C is not set |
| 803 | # CONFIG_MFD_PCF50633 is not set | ||
| 793 | # CONFIG_REGULATOR is not set | 804 | # CONFIG_REGULATOR is not set |
| 794 | 805 | ||
| 795 | # | 806 | # |
| @@ -837,7 +848,7 @@ CONFIG_SOC_CAMERA=y | |||
| 837 | # CONFIG_SOC_CAMERA_MT9V022 is not set | 848 | # CONFIG_SOC_CAMERA_MT9V022 is not set |
| 838 | # CONFIG_SOC_CAMERA_TW9910 is not set | 849 | # CONFIG_SOC_CAMERA_TW9910 is not set |
| 839 | CONFIG_SOC_CAMERA_PLATFORM=y | 850 | CONFIG_SOC_CAMERA_PLATFORM=y |
| 840 | # CONFIG_SOC_CAMERA_OV772X is not set | 851 | CONFIG_SOC_CAMERA_OV772X=y |
| 841 | CONFIG_VIDEO_SH_MOBILE_CEU=y | 852 | CONFIG_VIDEO_SH_MOBILE_CEU=y |
| 842 | # CONFIG_RADIO_ADAPTERS is not set | 853 | # CONFIG_RADIO_ADAPTERS is not set |
| 843 | # CONFIG_DAB is not set | 854 | # CONFIG_DAB is not set |
| @@ -1012,6 +1023,7 @@ CONFIG_FS_POSIX_ACL=y | |||
| 1012 | CONFIG_FILE_LOCKING=y | 1023 | CONFIG_FILE_LOCKING=y |
| 1013 | # CONFIG_XFS_FS is not set | 1024 | # CONFIG_XFS_FS is not set |
| 1014 | # CONFIG_OCFS2_FS is not set | 1025 | # CONFIG_OCFS2_FS is not set |
| 1026 | # CONFIG_BTRFS_FS is not set | ||
| 1015 | CONFIG_DNOTIFY=y | 1027 | CONFIG_DNOTIFY=y |
| 1016 | CONFIG_INOTIFY=y | 1028 | CONFIG_INOTIFY=y |
| 1017 | CONFIG_INOTIFY_USER=y | 1029 | CONFIG_INOTIFY_USER=y |
| @@ -1060,6 +1072,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1060 | # CONFIG_JFFS2_FS is not set | 1072 | # CONFIG_JFFS2_FS is not set |
| 1061 | # CONFIG_UBIFS_FS is not set | 1073 | # CONFIG_UBIFS_FS is not set |
| 1062 | # CONFIG_CRAMFS is not set | 1074 | # CONFIG_CRAMFS is not set |
| 1075 | # CONFIG_SQUASHFS is not set | ||
| 1063 | # CONFIG_VXFS_FS is not set | 1076 | # CONFIG_VXFS_FS is not set |
| 1064 | # CONFIG_MINIX_FS is not set | 1077 | # CONFIG_MINIX_FS is not set |
| 1065 | # CONFIG_OMFS_FS is not set | 1078 | # CONFIG_OMFS_FS is not set |
diff --git a/arch/sh/configs/migor_defconfig b/arch/sh/configs/migor_defconfig index 7758263514bc..678576796bdf 100644 --- a/arch/sh/configs/migor_defconfig +++ b/arch/sh/configs/migor_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.28 | 3 | # Linux kernel version: 2.6.29-rc1 |
| 4 | # Fri Jan 9 17:09:35 2009 | 4 | # Thu Jan 22 09:16:16 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -45,8 +45,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 45 | CONFIG_IKCONFIG=y | 45 | CONFIG_IKCONFIG=y |
| 46 | CONFIG_IKCONFIG_PROC=y | 46 | CONFIG_IKCONFIG_PROC=y |
| 47 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
| 48 | # CONFIG_CGROUPS is not set | ||
| 49 | # CONFIG_GROUP_SCHED is not set | 48 | # CONFIG_GROUP_SCHED is not set |
| 49 | |||
| 50 | # | ||
| 51 | # Control Group support | ||
| 52 | # | ||
| 53 | # CONFIG_CGROUPS is not set | ||
| 50 | CONFIG_SYSFS_DEPRECATED=y | 54 | CONFIG_SYSFS_DEPRECATED=y |
| 51 | CONFIG_SYSFS_DEPRECATED_V2=y | 55 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 52 | # CONFIG_RELAY is not set | 56 | # CONFIG_RELAY is not set |
| @@ -389,6 +393,7 @@ CONFIG_WIRELESS_EXT=y | |||
| 389 | CONFIG_WIRELESS_EXT_SYSFS=y | 393 | CONFIG_WIRELESS_EXT_SYSFS=y |
| 390 | # CONFIG_LIB80211 is not set | 394 | # CONFIG_LIB80211 is not set |
| 391 | # CONFIG_MAC80211 is not set | 395 | # CONFIG_MAC80211 is not set |
| 396 | # CONFIG_WIMAX is not set | ||
| 392 | # CONFIG_RFKILL is not set | 397 | # CONFIG_RFKILL is not set |
| 393 | # CONFIG_NET_9P is not set | 398 | # CONFIG_NET_9P is not set |
| 394 | 399 | ||
| @@ -411,6 +416,7 @@ CONFIG_MTD=y | |||
| 411 | # CONFIG_MTD_DEBUG is not set | 416 | # CONFIG_MTD_DEBUG is not set |
| 412 | CONFIG_MTD_CONCAT=y | 417 | CONFIG_MTD_CONCAT=y |
| 413 | CONFIG_MTD_PARTITIONS=y | 418 | CONFIG_MTD_PARTITIONS=y |
| 419 | # CONFIG_MTD_TESTS is not set | ||
| 414 | # CONFIG_MTD_REDBOOT_PARTS is not set | 420 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 415 | CONFIG_MTD_CMDLINE_PARTS=y | 421 | CONFIG_MTD_CMDLINE_PARTS=y |
| 416 | # CONFIG_MTD_AR7_PARTS is not set | 422 | # CONFIG_MTD_AR7_PARTS is not set |
| @@ -458,9 +464,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 458 | # | 464 | # |
| 459 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 465 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
| 460 | CONFIG_MTD_PHYSMAP=y | 466 | CONFIG_MTD_PHYSMAP=y |
| 461 | CONFIG_MTD_PHYSMAP_START=0xffffffff | 467 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
| 462 | CONFIG_MTD_PHYSMAP_LEN=0 | ||
| 463 | CONFIG_MTD_PHYSMAP_BANKWIDTH=0 | ||
| 464 | # CONFIG_MTD_PLATRAM is not set | 468 | # CONFIG_MTD_PLATRAM is not set |
| 465 | 469 | ||
| 466 | # | 470 | # |
| @@ -488,6 +492,12 @@ CONFIG_MTD_NAND_PLATFORM=y | |||
| 488 | # CONFIG_MTD_ONENAND is not set | 492 | # CONFIG_MTD_ONENAND is not set |
| 489 | 493 | ||
| 490 | # | 494 | # |
| 495 | # LPDDR flash memory drivers | ||
| 496 | # | ||
| 497 | # CONFIG_MTD_LPDDR is not set | ||
| 498 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 499 | |||
| 500 | # | ||
| 491 | # UBI - Unsorted block images | 501 | # UBI - Unsorted block images |
| 492 | # | 502 | # |
| 493 | # CONFIG_MTD_UBI is not set | 503 | # CONFIG_MTD_UBI is not set |
| @@ -587,6 +597,10 @@ CONFIG_SMC91X=y | |||
| 587 | # CONFIG_WLAN_PRE80211 is not set | 597 | # CONFIG_WLAN_PRE80211 is not set |
| 588 | # CONFIG_WLAN_80211 is not set | 598 | # CONFIG_WLAN_80211 is not set |
| 589 | # CONFIG_IWLWIFI_LEDS is not set | 599 | # CONFIG_IWLWIFI_LEDS is not set |
| 600 | |||
| 601 | # | ||
| 602 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 603 | # | ||
| 590 | # CONFIG_WAN is not set | 604 | # CONFIG_WAN is not set |
| 591 | # CONFIG_PPP is not set | 605 | # CONFIG_PPP is not set |
| 592 | # CONFIG_SLIP is not set | 606 | # CONFIG_SLIP is not set |
| @@ -761,6 +775,7 @@ CONFIG_SSB_POSSIBLE=y | |||
| 761 | # CONFIG_PMIC_DA903X is not set | 775 | # CONFIG_PMIC_DA903X is not set |
| 762 | # CONFIG_MFD_WM8400 is not set | 776 | # CONFIG_MFD_WM8400 is not set |
| 763 | # CONFIG_MFD_WM8350_I2C is not set | 777 | # CONFIG_MFD_WM8350_I2C is not set |
| 778 | # CONFIG_MFD_PCF50633 is not set | ||
| 764 | # CONFIG_REGULATOR is not set | 779 | # CONFIG_REGULATOR is not set |
| 765 | 780 | ||
| 766 | # | 781 | # |
| @@ -806,9 +821,9 @@ CONFIG_SOC_CAMERA=y | |||
| 806 | # CONFIG_SOC_CAMERA_MT9M111 is not set | 821 | # CONFIG_SOC_CAMERA_MT9M111 is not set |
| 807 | # CONFIG_SOC_CAMERA_MT9T031 is not set | 822 | # CONFIG_SOC_CAMERA_MT9T031 is not set |
| 808 | # CONFIG_SOC_CAMERA_MT9V022 is not set | 823 | # CONFIG_SOC_CAMERA_MT9V022 is not set |
| 809 | # CONFIG_SOC_CAMERA_TW9910 is not set | 824 | CONFIG_SOC_CAMERA_TW9910=y |
| 810 | CONFIG_SOC_CAMERA_PLATFORM=y | 825 | # CONFIG_SOC_CAMERA_PLATFORM is not set |
| 811 | # CONFIG_SOC_CAMERA_OV772X is not set | 826 | CONFIG_SOC_CAMERA_OV772X=y |
| 812 | CONFIG_VIDEO_SH_MOBILE_CEU=y | 827 | CONFIG_VIDEO_SH_MOBILE_CEU=y |
| 813 | # CONFIG_RADIO_ADAPTERS is not set | 828 | # CONFIG_RADIO_ADAPTERS is not set |
| 814 | # CONFIG_DAB is not set | 829 | # CONFIG_DAB is not set |
| @@ -866,11 +881,13 @@ CONFIG_USB_GADGET_SELECTED=y | |||
| 866 | # CONFIG_USB_GADGET_PXA25X is not set | 881 | # CONFIG_USB_GADGET_PXA25X is not set |
| 867 | # CONFIG_USB_GADGET_PXA27X is not set | 882 | # CONFIG_USB_GADGET_PXA27X is not set |
| 868 | # CONFIG_USB_GADGET_S3C2410 is not set | 883 | # CONFIG_USB_GADGET_S3C2410 is not set |
| 884 | # CONFIG_USB_GADGET_IMX is not set | ||
| 869 | CONFIG_USB_GADGET_M66592=y | 885 | CONFIG_USB_GADGET_M66592=y |
| 870 | CONFIG_USB_M66592=y | 886 | CONFIG_USB_M66592=y |
| 871 | CONFIG_SUPERH_BUILT_IN_M66592=y | 887 | CONFIG_SUPERH_BUILT_IN_M66592=y |
| 872 | # CONFIG_USB_GADGET_AMD5536UDC is not set | 888 | # CONFIG_USB_GADGET_AMD5536UDC is not set |
| 873 | # CONFIG_USB_GADGET_FSL_QE is not set | 889 | # CONFIG_USB_GADGET_FSL_QE is not set |
| 890 | # CONFIG_USB_GADGET_CI13XXX is not set | ||
| 874 | # CONFIG_USB_GADGET_NET2280 is not set | 891 | # CONFIG_USB_GADGET_NET2280 is not set |
| 875 | # CONFIG_USB_GADGET_GOKU is not set | 892 | # CONFIG_USB_GADGET_GOKU is not set |
| 876 | # CONFIG_USB_GADGET_DUMMY_HCD is not set | 893 | # CONFIG_USB_GADGET_DUMMY_HCD is not set |
| @@ -883,6 +900,11 @@ CONFIG_USB_G_SERIAL=y | |||
| 883 | # CONFIG_USB_MIDI_GADGET is not set | 900 | # CONFIG_USB_MIDI_GADGET is not set |
| 884 | # CONFIG_USB_G_PRINTER is not set | 901 | # CONFIG_USB_G_PRINTER is not set |
| 885 | # CONFIG_USB_CDC_COMPOSITE is not set | 902 | # CONFIG_USB_CDC_COMPOSITE is not set |
| 903 | |||
| 904 | # | ||
| 905 | # OTG and related infrastructure | ||
| 906 | # | ||
| 907 | # CONFIG_USB_GPIO_VBUS is not set | ||
| 886 | # CONFIG_MMC is not set | 908 | # CONFIG_MMC is not set |
| 887 | # CONFIG_MEMSTICK is not set | 909 | # CONFIG_MEMSTICK is not set |
| 888 | # CONFIG_NEW_LEDS is not set | 910 | # CONFIG_NEW_LEDS is not set |
| @@ -961,6 +983,7 @@ CONFIG_UIO_PDRV_GENIRQ=y | |||
| 961 | CONFIG_FILE_LOCKING=y | 983 | CONFIG_FILE_LOCKING=y |
| 962 | # CONFIG_XFS_FS is not set | 984 | # CONFIG_XFS_FS is not set |
| 963 | # CONFIG_OCFS2_FS is not set | 985 | # CONFIG_OCFS2_FS is not set |
| 986 | # CONFIG_BTRFS_FS is not set | ||
| 964 | # CONFIG_DNOTIFY is not set | 987 | # CONFIG_DNOTIFY is not set |
| 965 | # CONFIG_INOTIFY is not set | 988 | # CONFIG_INOTIFY is not set |
| 966 | # CONFIG_QUOTA is not set | 989 | # CONFIG_QUOTA is not set |
| @@ -1004,6 +1027,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1004 | # CONFIG_EFS_FS is not set | 1027 | # CONFIG_EFS_FS is not set |
| 1005 | # CONFIG_JFFS2_FS is not set | 1028 | # CONFIG_JFFS2_FS is not set |
| 1006 | # CONFIG_CRAMFS is not set | 1029 | # CONFIG_CRAMFS is not set |
| 1030 | # CONFIG_SQUASHFS is not set | ||
| 1007 | # CONFIG_VXFS_FS is not set | 1031 | # CONFIG_VXFS_FS is not set |
| 1008 | # CONFIG_MINIX_FS is not set | 1032 | # CONFIG_MINIX_FS is not set |
| 1009 | # CONFIG_OMFS_FS is not set | 1033 | # CONFIG_OMFS_FS is not set |
diff --git a/arch/sh/include/asm/mutex-llsc.h b/arch/sh/include/asm/mutex-llsc.h index ee839ee58ac8..090358a7e1bb 100644 --- a/arch/sh/include/asm/mutex-llsc.h +++ b/arch/sh/include/asm/mutex-llsc.h | |||
| @@ -21,38 +21,36 @@ | |||
| 21 | static inline void | 21 | static inline void |
| 22 | __mutex_fastpath_lock(atomic_t *count, void (*fail_fn)(atomic_t *)) | 22 | __mutex_fastpath_lock(atomic_t *count, void (*fail_fn)(atomic_t *)) |
| 23 | { | 23 | { |
| 24 | int __ex_flag, __res; | 24 | int __done, __res; |
| 25 | 25 | ||
| 26 | __asm__ __volatile__ ( | 26 | __asm__ __volatile__ ( |
| 27 | "movli.l @%2, %0 \n" | 27 | "movli.l @%2, %0 \n" |
| 28 | "add #-1, %0 \n" | 28 | "add #-1, %0 \n" |
| 29 | "movco.l %0, @%2 \n" | 29 | "movco.l %0, @%2 \n" |
| 30 | "movt %1 \n" | 30 | "movt %1 \n" |
| 31 | : "=&z" (__res), "=&r" (__ex_flag) | 31 | : "=&z" (__res), "=&r" (__done) |
| 32 | : "r" (&(count)->counter) | 32 | : "r" (&(count)->counter) |
| 33 | : "t"); | 33 | : "t"); |
| 34 | 34 | ||
| 35 | __res |= !__ex_flag; | 35 | if (unlikely(!__done || __res != 0)) |
| 36 | if (unlikely(__res != 0)) | ||
| 37 | fail_fn(count); | 36 | fail_fn(count); |
| 38 | } | 37 | } |
| 39 | 38 | ||
| 40 | static inline int | 39 | static inline int |
| 41 | __mutex_fastpath_lock_retval(atomic_t *count, int (*fail_fn)(atomic_t *)) | 40 | __mutex_fastpath_lock_retval(atomic_t *count, int (*fail_fn)(atomic_t *)) |
| 42 | { | 41 | { |
| 43 | int __ex_flag, __res; | 42 | int __done, __res; |
| 44 | 43 | ||
| 45 | __asm__ __volatile__ ( | 44 | __asm__ __volatile__ ( |
| 46 | "movli.l @%2, %0 \n" | 45 | "movli.l @%2, %0 \n" |
| 47 | "add #-1, %0 \n" | 46 | "add #-1, %0 \n" |
| 48 | "movco.l %0, @%2 \n" | 47 | "movco.l %0, @%2 \n" |
| 49 | "movt %1 \n" | 48 | "movt %1 \n" |
| 50 | : "=&z" (__res), "=&r" (__ex_flag) | 49 | : "=&z" (__res), "=&r" (__done) |
| 51 | : "r" (&(count)->counter) | 50 | : "r" (&(count)->counter) |
| 52 | : "t"); | 51 | : "t"); |
| 53 | 52 | ||
| 54 | __res |= !__ex_flag; | 53 | if (unlikely(!__done || __res != 0)) |
| 55 | if (unlikely(__res != 0)) | ||
| 56 | __res = fail_fn(count); | 54 | __res = fail_fn(count); |
| 57 | 55 | ||
| 58 | return __res; | 56 | return __res; |
| @@ -61,19 +59,18 @@ __mutex_fastpath_lock_retval(atomic_t *count, int (*fail_fn)(atomic_t *)) | |||
| 61 | static inline void | 59 | static inline void |
| 62 | __mutex_fastpath_unlock(atomic_t *count, void (*fail_fn)(atomic_t *)) | 60 | __mutex_fastpath_unlock(atomic_t *count, void (*fail_fn)(atomic_t *)) |
| 63 | { | 61 | { |
| 64 | int __ex_flag, __res; | 62 | int __done, __res; |
| 65 | 63 | ||
| 66 | __asm__ __volatile__ ( | 64 | __asm__ __volatile__ ( |
| 67 | "movli.l @%2, %0 \n\t" | 65 | "movli.l @%2, %0 \n\t" |
| 68 | "add #1, %0 \n\t" | 66 | "add #1, %0 \n\t" |
| 69 | "movco.l %0, @%2 \n\t" | 67 | "movco.l %0, @%2 \n\t" |
| 70 | "movt %1 \n\t" | 68 | "movt %1 \n\t" |
| 71 | : "=&z" (__res), "=&r" (__ex_flag) | 69 | : "=&z" (__res), "=&r" (__done) |
| 72 | : "r" (&(count)->counter) | 70 | : "r" (&(count)->counter) |
| 73 | : "t"); | 71 | : "t"); |
| 74 | 72 | ||
| 75 | __res |= !__ex_flag; | 73 | if (unlikely(!__done || __res <= 0)) |
| 76 | if (unlikely(__res <= 0)) | ||
| 77 | fail_fn(count); | 74 | fail_fn(count); |
| 78 | } | 75 | } |
| 79 | 76 | ||
diff --git a/arch/sh/include/asm/syscall_32.h b/arch/sh/include/asm/syscall_32.h index 05a868a71ef5..5bc34681d994 100644 --- a/arch/sh/include/asm/syscall_32.h +++ b/arch/sh/include/asm/syscall_32.h | |||
| @@ -21,23 +21,10 @@ static inline void syscall_rollback(struct task_struct *task, | |||
| 21 | */ | 21 | */ |
| 22 | } | 22 | } |
| 23 | 23 | ||
| 24 | static inline bool syscall_has_error(struct pt_regs *regs) | ||
| 25 | { | ||
| 26 | return (regs->sr & 0x1) ? true : false; | ||
| 27 | } | ||
| 28 | static inline void syscall_set_error(struct pt_regs *regs) | ||
| 29 | { | ||
| 30 | regs->sr |= 0x1; | ||
| 31 | } | ||
| 32 | static inline void syscall_clear_error(struct pt_regs *regs) | ||
| 33 | { | ||
| 34 | regs->sr &= ~0x1; | ||
| 35 | } | ||
| 36 | |||
| 37 | static inline long syscall_get_error(struct task_struct *task, | 24 | static inline long syscall_get_error(struct task_struct *task, |
| 38 | struct pt_regs *regs) | 25 | struct pt_regs *regs) |
| 39 | { | 26 | { |
| 40 | return syscall_has_error(regs) ? regs->regs[0] : 0; | 27 | return IS_ERR_VALUE(regs->regs[0]) ? regs->regs[0] : 0; |
| 41 | } | 28 | } |
| 42 | 29 | ||
| 43 | static inline long syscall_get_return_value(struct task_struct *task, | 30 | static inline long syscall_get_return_value(struct task_struct *task, |
| @@ -50,13 +37,10 @@ static inline void syscall_set_return_value(struct task_struct *task, | |||
| 50 | struct pt_regs *regs, | 37 | struct pt_regs *regs, |
| 51 | int error, long val) | 38 | int error, long val) |
| 52 | { | 39 | { |
| 53 | if (error) { | 40 | if (error) |
| 54 | syscall_set_error(regs); | ||
| 55 | regs->regs[0] = -error; | 41 | regs->regs[0] = -error; |
| 56 | } else { | 42 | else |
| 57 | syscall_clear_error(regs); | ||
| 58 | regs->regs[0] = val; | 43 | regs->regs[0] = val; |
| 59 | } | ||
| 60 | } | 44 | } |
| 61 | 45 | ||
| 62 | static inline void syscall_get_arguments(struct task_struct *task, | 46 | static inline void syscall_get_arguments(struct task_struct *task, |
diff --git a/arch/sh/include/asm/syscall_64.h b/arch/sh/include/asm/syscall_64.h index e1143b9784d6..c3561ca72bee 100644 --- a/arch/sh/include/asm/syscall_64.h +++ b/arch/sh/include/asm/syscall_64.h | |||
| @@ -21,23 +21,10 @@ static inline void syscall_rollback(struct task_struct *task, | |||
| 21 | */ | 21 | */ |
| 22 | } | 22 | } |
| 23 | 23 | ||
| 24 | static inline bool syscall_has_error(struct pt_regs *regs) | ||
| 25 | { | ||
| 26 | return (regs->sr & 0x1) ? true : false; | ||
| 27 | } | ||
| 28 | static inline void syscall_set_error(struct pt_regs *regs) | ||
| 29 | { | ||
| 30 | regs->sr |= 0x1; | ||
| 31 | } | ||
| 32 | static inline void syscall_clear_error(struct pt_regs *regs) | ||
| 33 | { | ||
| 34 | regs->sr &= ~0x1; | ||
| 35 | } | ||
| 36 | |||
| 37 | static inline long syscall_get_error(struct task_struct *task, | 24 | static inline long syscall_get_error(struct task_struct *task, |
| 38 | struct pt_regs *regs) | 25 | struct pt_regs *regs) |
| 39 | { | 26 | { |
| 40 | return syscall_has_error(regs) ? regs->regs[9] : 0; | 27 | return IS_ERR_VALUE(regs->regs[9]) ? regs->regs[9] : 0; |
| 41 | } | 28 | } |
| 42 | 29 | ||
| 43 | static inline long syscall_get_return_value(struct task_struct *task, | 30 | static inline long syscall_get_return_value(struct task_struct *task, |
| @@ -50,13 +37,10 @@ static inline void syscall_set_return_value(struct task_struct *task, | |||
| 50 | struct pt_regs *regs, | 37 | struct pt_regs *regs, |
| 51 | int error, long val) | 38 | int error, long val) |
| 52 | { | 39 | { |
| 53 | if (error) { | 40 | if (error) |
| 54 | syscall_set_error(regs); | ||
| 55 | regs->regs[9] = -error; | 41 | regs->regs[9] = -error; |
| 56 | } else { | 42 | else |
| 57 | syscall_clear_error(regs); | ||
| 58 | regs->regs[9] = val; | 43 | regs->regs[9] = val; |
| 59 | } | ||
| 60 | } | 44 | } |
| 61 | 45 | ||
| 62 | static inline void syscall_get_arguments(struct task_struct *task, | 46 | static inline void syscall_get_arguments(struct task_struct *task, |
diff --git a/arch/sh/kernel/cpu/sh4/fpu.c b/arch/sh/kernel/cpu/sh4/fpu.c index 2780917c0088..e3ea5411da6d 100644 --- a/arch/sh/kernel/cpu/sh4/fpu.c +++ b/arch/sh/kernel/cpu/sh4/fpu.c | |||
| @@ -423,7 +423,7 @@ static int ieee_fpe_handler(struct pt_regs *regs) | |||
| 423 | int m; | 423 | int m; |
| 424 | unsigned int hx; | 424 | unsigned int hx; |
| 425 | 425 | ||
| 426 | m = (finsn >> 9) & 0x7; | 426 | m = (finsn >> 8) & 0x7; |
| 427 | hx = tsk->thread.fpu.hard.fp_regs[m]; | 427 | hx = tsk->thread.fpu.hard.fp_regs[m]; |
| 428 | 428 | ||
| 429 | if ((tsk->thread.fpu.hard.fpscr & FPSCR_CAUSE_ERROR) | 429 | if ((tsk->thread.fpu.hard.fpscr & FPSCR_CAUSE_ERROR) |
diff --git a/arch/sh/kernel/setup.c b/arch/sh/kernel/setup.c index 534247508572..370d2cfa34eb 100644 --- a/arch/sh/kernel/setup.c +++ b/arch/sh/kernel/setup.c | |||
| @@ -262,11 +262,11 @@ void __init setup_bootmem_allocator(unsigned long free_pfn) | |||
| 262 | BOOTMEM_DEFAULT); | 262 | BOOTMEM_DEFAULT); |
| 263 | 263 | ||
| 264 | /* | 264 | /* |
| 265 | * reserve physical page 0 - it's a special BIOS page on many boxes, | 265 | * Reserve physical pages below CONFIG_ZERO_PAGE_OFFSET. |
| 266 | * enabling clean reboots, SMP operation, laptop functions. | ||
| 267 | */ | 266 | */ |
| 268 | reserve_bootmem(__MEMORY_START, CONFIG_ZERO_PAGE_OFFSET, | 267 | if (CONFIG_ZERO_PAGE_OFFSET != 0) |
| 269 | BOOTMEM_DEFAULT); | 268 | reserve_bootmem(__MEMORY_START, CONFIG_ZERO_PAGE_OFFSET, |
| 269 | BOOTMEM_DEFAULT); | ||
| 270 | 270 | ||
| 271 | sparse_memory_present_with_active_regions(0); | 271 | sparse_memory_present_with_active_regions(0); |
| 272 | 272 | ||
diff --git a/arch/sh/kernel/signal_32.c b/arch/sh/kernel/signal_32.c index 77c21bde376a..17784e19ae34 100644 --- a/arch/sh/kernel/signal_32.c +++ b/arch/sh/kernel/signal_32.c | |||
| @@ -510,7 +510,6 @@ handle_syscall_restart(unsigned long save_r0, struct pt_regs *regs, | |||
| 510 | case -ERESTARTNOHAND: | 510 | case -ERESTARTNOHAND: |
| 511 | no_system_call_restart: | 511 | no_system_call_restart: |
| 512 | regs->regs[0] = -EINTR; | 512 | regs->regs[0] = -EINTR; |
| 513 | regs->sr |= 1; | ||
| 514 | break; | 513 | break; |
| 515 | 514 | ||
| 516 | case -ERESTARTSYS: | 515 | case -ERESTARTSYS: |
| @@ -589,8 +588,7 @@ static void do_signal(struct pt_regs *regs, unsigned int save_r0) | |||
| 589 | 588 | ||
| 590 | signr = get_signal_to_deliver(&info, &ka, regs, NULL); | 589 | signr = get_signal_to_deliver(&info, &ka, regs, NULL); |
| 591 | if (signr > 0) { | 590 | if (signr > 0) { |
| 592 | if (regs->sr & 1) | 591 | handle_syscall_restart(save_r0, regs, &ka.sa); |
| 593 | handle_syscall_restart(save_r0, regs, &ka.sa); | ||
| 594 | 592 | ||
| 595 | /* Whee! Actually deliver the signal. */ | 593 | /* Whee! Actually deliver the signal. */ |
| 596 | if (handle_signal(signr, &ka, &info, oldset, | 594 | if (handle_signal(signr, &ka, &info, oldset, |
diff --git a/arch/sh/kernel/signal_64.c b/arch/sh/kernel/signal_64.c index b22fdfaaa191..0663a0ee6021 100644 --- a/arch/sh/kernel/signal_64.c +++ b/arch/sh/kernel/signal_64.c | |||
| @@ -60,7 +60,6 @@ handle_syscall_restart(struct pt_regs *regs, struct sigaction *sa) | |||
| 60 | case -ERESTARTNOHAND: | 60 | case -ERESTARTNOHAND: |
| 61 | no_system_call_restart: | 61 | no_system_call_restart: |
| 62 | regs->regs[REG_RET] = -EINTR; | 62 | regs->regs[REG_RET] = -EINTR; |
| 63 | regs->sr |= 1; | ||
| 64 | break; | 63 | break; |
| 65 | 64 | ||
| 66 | case -ERESTARTSYS: | 65 | case -ERESTARTSYS: |
| @@ -109,8 +108,7 @@ static int do_signal(struct pt_regs *regs, sigset_t *oldset) | |||
| 109 | 108 | ||
| 110 | signr = get_signal_to_deliver(&info, &ka, regs, 0); | 109 | signr = get_signal_to_deliver(&info, &ka, regs, 0); |
| 111 | if (signr > 0) { | 110 | if (signr > 0) { |
| 112 | if (regs->sr & 1) | 111 | handle_syscall_restart(regs, &ka.sa); |
| 113 | handle_syscall_restart(regs, &ka.sa); | ||
| 114 | 112 | ||
| 115 | /* Whee! Actually deliver the signal. */ | 113 | /* Whee! Actually deliver the signal. */ |
| 116 | if (handle_signal(signr, &info, &ka, oldset, regs) == 0) { | 114 | if (handle_signal(signr, &info, &ka, oldset, regs) == 0) { |
diff --git a/arch/sh/lib/checksum.S b/arch/sh/lib/checksum.S index cbdd0d40e545..356c8ec92893 100644 --- a/arch/sh/lib/checksum.S +++ b/arch/sh/lib/checksum.S | |||
| @@ -36,8 +36,7 @@ | |||
| 36 | */ | 36 | */ |
| 37 | 37 | ||
| 38 | /* | 38 | /* |
| 39 | * unsigned int csum_partial(const unsigned char *buf, int len, | 39 | * asmlinkage __wsum csum_partial(const void *buf, int len, __wsum sum); |
| 40 | * unsigned int sum); | ||
| 41 | */ | 40 | */ |
| 42 | 41 | ||
| 43 | .text | 42 | .text |
| @@ -49,11 +48,31 @@ ENTRY(csum_partial) | |||
| 49 | * Fortunately, it is easy to convert 2-byte alignment to 4-byte | 48 | * Fortunately, it is easy to convert 2-byte alignment to 4-byte |
| 50 | * alignment for the unrolled loop. | 49 | * alignment for the unrolled loop. |
| 51 | */ | 50 | */ |
| 52 | mov r5, r1 | ||
| 53 | mov r4, r0 | 51 | mov r4, r0 |
| 54 | tst #2, r0 ! Check alignment. | 52 | tst #3, r0 ! Check alignment. |
| 55 | bt 2f ! Jump if alignment is ok. | 53 | bt/s 2f ! Jump if alignment is ok. |
| 54 | mov r4, r7 ! Keep a copy to check for alignment | ||
| 56 | ! | 55 | ! |
| 56 | tst #1, r0 ! Check alignment. | ||
| 57 | bt 21f ! Jump if alignment is boundary of 2bytes. | ||
| 58 | |||
| 59 | ! buf is odd | ||
| 60 | tst r5, r5 | ||
| 61 | add #-1, r5 | ||
| 62 | bt 9f | ||
| 63 | mov.b @r4+, r0 | ||
| 64 | extu.b r0, r0 | ||
| 65 | addc r0, r6 ! t=0 from previous tst | ||
| 66 | mov r6, r0 | ||
| 67 | shll8 r6 | ||
| 68 | shlr16 r0 | ||
| 69 | shlr8 r0 | ||
| 70 | or r0, r6 | ||
| 71 | mov r4, r0 | ||
| 72 | tst #2, r0 | ||
| 73 | bt 2f | ||
| 74 | 21: | ||
| 75 | ! buf is 2 byte aligned (len could be 0) | ||
| 57 | add #-2, r5 ! Alignment uses up two bytes. | 76 | add #-2, r5 ! Alignment uses up two bytes. |
| 58 | cmp/pz r5 ! | 77 | cmp/pz r5 ! |
| 59 | bt/s 1f ! Jump if we had at least two bytes. | 78 | bt/s 1f ! Jump if we had at least two bytes. |
| @@ -61,16 +80,17 @@ ENTRY(csum_partial) | |||
| 61 | bra 6f | 80 | bra 6f |
| 62 | add #2, r5 ! r5 was < 2. Deal with it. | 81 | add #2, r5 ! r5 was < 2. Deal with it. |
| 63 | 1: | 82 | 1: |
| 64 | mov r5, r1 ! Save new len for later use. | ||
| 65 | mov.w @r4+, r0 | 83 | mov.w @r4+, r0 |
| 66 | extu.w r0, r0 | 84 | extu.w r0, r0 |
| 67 | addc r0, r6 | 85 | addc r0, r6 |
| 68 | bf 2f | 86 | bf 2f |
| 69 | add #1, r6 | 87 | add #1, r6 |
| 70 | 2: | 88 | 2: |
| 89 | ! buf is 4 byte aligned (len could be 0) | ||
| 90 | mov r5, r1 | ||
| 71 | mov #-5, r0 | 91 | mov #-5, r0 |
| 72 | shld r0, r5 | 92 | shld r0, r1 |
| 73 | tst r5, r5 | 93 | tst r1, r1 |
| 74 | bt/s 4f ! if it's =0, go to 4f | 94 | bt/s 4f ! if it's =0, go to 4f |
| 75 | clrt | 95 | clrt |
| 76 | .align 2 | 96 | .align 2 |
| @@ -92,30 +112,31 @@ ENTRY(csum_partial) | |||
| 92 | addc r0, r6 | 112 | addc r0, r6 |
| 93 | addc r2, r6 | 113 | addc r2, r6 |
| 94 | movt r0 | 114 | movt r0 |
| 95 | dt r5 | 115 | dt r1 |
| 96 | bf/s 3b | 116 | bf/s 3b |
| 97 | cmp/eq #1, r0 | 117 | cmp/eq #1, r0 |
| 98 | ! here, we know r5==0 | 118 | ! here, we know r1==0 |
| 99 | addc r5, r6 ! add carry to r6 | 119 | addc r1, r6 ! add carry to r6 |
| 100 | 4: | 120 | 4: |
| 101 | mov r1, r0 | 121 | mov r5, r0 |
| 102 | and #0x1c, r0 | 122 | and #0x1c, r0 |
| 103 | tst r0, r0 | 123 | tst r0, r0 |
| 104 | bt/s 6f | 124 | bt 6f |
| 105 | mov r0, r5 | 125 | ! 4 bytes or more remaining |
| 106 | shlr2 r5 | 126 | mov r0, r1 |
| 127 | shlr2 r1 | ||
| 107 | mov #0, r2 | 128 | mov #0, r2 |
| 108 | 5: | 129 | 5: |
| 109 | addc r2, r6 | 130 | addc r2, r6 |
| 110 | mov.l @r4+, r2 | 131 | mov.l @r4+, r2 |
| 111 | movt r0 | 132 | movt r0 |
| 112 | dt r5 | 133 | dt r1 |
| 113 | bf/s 5b | 134 | bf/s 5b |
| 114 | cmp/eq #1, r0 | 135 | cmp/eq #1, r0 |
| 115 | addc r2, r6 | 136 | addc r2, r6 |
| 116 | addc r5, r6 ! r5==0 here, so it means add carry-bit | 137 | addc r1, r6 ! r1==0 here, so it means add carry-bit |
| 117 | 6: | 138 | 6: |
| 118 | mov r1, r5 | 139 | ! 3 bytes or less remaining |
| 119 | mov #3, r0 | 140 | mov #3, r0 |
| 120 | and r0, r5 | 141 | and r0, r5 |
| 121 | tst r5, r5 | 142 | tst r5, r5 |
| @@ -139,8 +160,18 @@ ENTRY(csum_partial) | |||
| 139 | 8: | 160 | 8: |
| 140 | addc r0, r6 | 161 | addc r0, r6 |
| 141 | mov #0, r0 | 162 | mov #0, r0 |
| 142 | addc r0, r6 | 163 | addc r0, r6 |
| 143 | 9: | 164 | 9: |
| 165 | ! Check if the buffer was misaligned, if so realign sum | ||
| 166 | mov r7, r0 | ||
| 167 | tst #1, r0 | ||
| 168 | bt 10f | ||
| 169 | mov r6, r0 | ||
| 170 | shll8 r6 | ||
| 171 | shlr16 r0 | ||
| 172 | shlr8 r0 | ||
| 173 | or r0, r6 | ||
| 174 | 10: | ||
| 144 | rts | 175 | rts |
| 145 | mov r6, r0 | 176 | mov r6, r0 |
| 146 | 177 | ||
diff --git a/arch/sparc/include/asm/cpudata_64.h b/arch/sparc/include/asm/cpudata_64.h index 7da7c13d23c4..a11b89ee9ef8 100644 --- a/arch/sparc/include/asm/cpudata_64.h +++ b/arch/sparc/include/asm/cpudata_64.h | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | typedef struct { | 17 | typedef struct { |
| 18 | /* Dcache line 1 */ | 18 | /* Dcache line 1 */ |
| 19 | unsigned int __softirq_pending; /* must be 1st, see rtrap.S */ | 19 | unsigned int __softirq_pending; /* must be 1st, see rtrap.S */ |
| 20 | unsigned int __pad0; | 20 | unsigned int __nmi_count; |
| 21 | unsigned long clock_tick; /* %tick's per second */ | 21 | unsigned long clock_tick; /* %tick's per second */ |
| 22 | unsigned long __pad; | 22 | unsigned long __pad; |
| 23 | unsigned int __pad1; | 23 | unsigned int __pad1; |
diff --git a/arch/sparc/include/asm/irq_64.h b/arch/sparc/include/asm/irq_64.h index d47d4a1955a9..1934f2cbf513 100644 --- a/arch/sparc/include/asm/irq_64.h +++ b/arch/sparc/include/asm/irq_64.h | |||
| @@ -66,9 +66,6 @@ extern void virt_irq_free(unsigned int virt_irq); | |||
| 66 | extern void __init init_IRQ(void); | 66 | extern void __init init_IRQ(void); |
| 67 | extern void fixup_irqs(void); | 67 | extern void fixup_irqs(void); |
| 68 | 68 | ||
| 69 | extern int register_perfctr_intr(void (*handler)(struct pt_regs *)); | ||
| 70 | extern void release_perfctr_intr(void (*handler)(struct pt_regs *)); | ||
| 71 | |||
| 72 | static inline void set_softint(unsigned long bits) | 69 | static inline void set_softint(unsigned long bits) |
| 73 | { | 70 | { |
| 74 | __asm__ __volatile__("wr %0, 0x0, %%set_softint" | 71 | __asm__ __volatile__("wr %0, 0x0, %%set_softint" |
| @@ -98,5 +95,6 @@ void __trigger_all_cpu_backtrace(void); | |||
| 98 | extern void *hardirq_stack[NR_CPUS]; | 95 | extern void *hardirq_stack[NR_CPUS]; |
| 99 | extern void *softirq_stack[NR_CPUS]; | 96 | extern void *softirq_stack[NR_CPUS]; |
| 100 | #define __ARCH_HAS_DO_SOFTIRQ | 97 | #define __ARCH_HAS_DO_SOFTIRQ |
| 98 | #define ARCH_HAS_NMI_WATCHDOG | ||
| 101 | 99 | ||
| 102 | #endif | 100 | #endif |
diff --git a/arch/sparc/include/asm/kdebug_64.h b/arch/sparc/include/asm/kdebug_64.h index f905b773235a..feb3578e12c4 100644 --- a/arch/sparc/include/asm/kdebug_64.h +++ b/arch/sparc/include/asm/kdebug_64.h | |||
| @@ -14,6 +14,8 @@ enum die_val { | |||
| 14 | DIE_TRAP, | 14 | DIE_TRAP, |
| 15 | DIE_TRAP_TL1, | 15 | DIE_TRAP_TL1, |
| 16 | DIE_CALL, | 16 | DIE_CALL, |
| 17 | DIE_NMI, | ||
| 18 | DIE_NMIWATCHDOG, | ||
| 17 | }; | 19 | }; |
| 18 | 20 | ||
| 19 | #endif | 21 | #endif |
diff --git a/arch/sparc/include/asm/nmi.h b/arch/sparc/include/asm/nmi.h new file mode 100644 index 000000000000..fbd546dd4feb --- /dev/null +++ b/arch/sparc/include/asm/nmi.h | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #ifndef __NMI_H | ||
| 2 | #define __NMI_H | ||
| 3 | |||
| 4 | extern int __init nmi_init(void); | ||
| 5 | extern void perfctr_irq(int irq, struct pt_regs *regs); | ||
| 6 | extern void nmi_adjust_hz(unsigned int new_hz); | ||
| 7 | |||
| 8 | extern int nmi_usable; | ||
| 9 | |||
| 10 | #endif /* __NMI_H */ | ||
diff --git a/arch/sparc/include/asm/pcr.h b/arch/sparc/include/asm/pcr.h new file mode 100644 index 000000000000..a2f5c61f924e --- /dev/null +++ b/arch/sparc/include/asm/pcr.h | |||
| @@ -0,0 +1,46 @@ | |||
| 1 | #ifndef __PCR_H | ||
| 2 | #define __PCR_H | ||
| 3 | |||
| 4 | struct pcr_ops { | ||
| 5 | u64 (*read)(void); | ||
| 6 | void (*write)(u64); | ||
| 7 | }; | ||
| 8 | extern const struct pcr_ops *pcr_ops; | ||
| 9 | |||
| 10 | extern void deferred_pcr_work_irq(int irq, struct pt_regs *regs); | ||
| 11 | extern void schedule_deferred_pcr_work(void); | ||
| 12 | |||
| 13 | #define PCR_PIC_PRIV 0x00000001 /* PIC access is privileged */ | ||
| 14 | #define PCR_STRACE 0x00000002 /* Trace supervisor events */ | ||
| 15 | #define PCR_UTRACE 0x00000004 /* Trace user events */ | ||
| 16 | #define PCR_N2_HTRACE 0x00000008 /* Trace hypervisor events */ | ||
| 17 | #define PCR_N2_TOE_OV0 0x00000010 /* Trap if PIC 0 overflows */ | ||
| 18 | #define PCR_N2_TOE_OV1 0x00000020 /* Trap if PIC 1 overflows */ | ||
| 19 | #define PCR_N2_MASK0 0x00003fc0 | ||
| 20 | #define PCR_N2_MASK0_SHIFT 6 | ||
| 21 | #define PCR_N2_SL0 0x0003c000 | ||
| 22 | #define PCR_N2_SL0_SHIFT 14 | ||
| 23 | #define PCR_N2_OV0 0x00040000 | ||
| 24 | #define PCR_N2_MASK1 0x07f80000 | ||
| 25 | #define PCR_N2_MASK1_SHIFT 19 | ||
| 26 | #define PCR_N2_SL1 0x78000000 | ||
| 27 | #define PCR_N2_SL1_SHIFT 27 | ||
| 28 | #define PCR_N2_OV1 0x80000000 | ||
| 29 | |||
| 30 | extern unsigned int picl_shift; | ||
| 31 | |||
| 32 | /* In order to commonize as much of the implementation as | ||
| 33 | * possible, we use PICH as our counter. Mostly this is | ||
| 34 | * to accomodate Niagara-1 which can only count insn cycles | ||
| 35 | * in PICH. | ||
| 36 | */ | ||
| 37 | static inline u64 picl_value(unsigned int nmi_hz) | ||
| 38 | { | ||
| 39 | u32 delta = local_cpu_data().clock_tick / (nmi_hz << picl_shift); | ||
| 40 | |||
| 41 | return ((u64)((0 - delta) & 0xffffffff)) << 32; | ||
| 42 | } | ||
| 43 | |||
| 44 | extern u64 pcr_enable; | ||
| 45 | |||
| 46 | #endif /* __PCR_H */ | ||
diff --git a/arch/sparc/include/asm/pil.h b/arch/sparc/include/asm/pil.h index d573820c0ff4..32a7efe76d00 100644 --- a/arch/sparc/include/asm/pil.h +++ b/arch/sparc/include/asm/pil.h | |||
| @@ -23,6 +23,7 @@ | |||
| 23 | #define PIL_SMP_CTX_NEW_VERSION 4 | 23 | #define PIL_SMP_CTX_NEW_VERSION 4 |
| 24 | #define PIL_DEVICE_IRQ 5 | 24 | #define PIL_DEVICE_IRQ 5 |
| 25 | #define PIL_SMP_CALL_FUNC_SNGL 6 | 25 | #define PIL_SMP_CALL_FUNC_SNGL 6 |
| 26 | #define PIL_DEFERRED_PCR_WORK 7 | ||
| 26 | #define PIL_NORMAL_MAX 14 | 27 | #define PIL_NORMAL_MAX 14 |
| 27 | #define PIL_NMI 15 | 28 | #define PIL_NMI 15 |
| 28 | 29 | ||
diff --git a/arch/sparc/kernel/Makefile b/arch/sparc/kernel/Makefile index 53adcaa0348b..54742e58831c 100644 --- a/arch/sparc/kernel/Makefile +++ b/arch/sparc/kernel/Makefile | |||
| @@ -52,6 +52,8 @@ obj-$(CONFIG_SPARC64) += visemul.o | |||
| 52 | obj-$(CONFIG_SPARC64) += hvapi.o | 52 | obj-$(CONFIG_SPARC64) += hvapi.o |
| 53 | obj-$(CONFIG_SPARC64) += sstate.o | 53 | obj-$(CONFIG_SPARC64) += sstate.o |
| 54 | obj-$(CONFIG_SPARC64) += mdesc.o | 54 | obj-$(CONFIG_SPARC64) += mdesc.o |
| 55 | obj-$(CONFIG_SPARC64) += pcr.o | ||
| 56 | obj-$(CONFIG_SPARC64) += nmi.o | ||
| 55 | 57 | ||
| 56 | # sparc32 do not use GENERIC_HARDIRQS but uses the generic devres implementation | 58 | # sparc32 do not use GENERIC_HARDIRQS but uses the generic devres implementation |
| 57 | obj-$(CONFIG_SPARC32) += devres.o | 59 | obj-$(CONFIG_SPARC32) += devres.o |
diff --git a/arch/sparc/kernel/cpu.c b/arch/sparc/kernel/cpu.c index 32d32b4824f5..d85c3dc4953a 100644 --- a/arch/sparc/kernel/cpu.c +++ b/arch/sparc/kernel/cpu.c | |||
| @@ -26,6 +26,7 @@ EXPORT_PER_CPU_SYMBOL(__cpu_data); | |||
| 26 | struct cpu_info { | 26 | struct cpu_info { |
| 27 | int psr_vers; | 27 | int psr_vers; |
| 28 | const char *name; | 28 | const char *name; |
| 29 | const char *pmu_name; | ||
| 29 | }; | 30 | }; |
| 30 | 31 | ||
| 31 | struct fpu_info { | 32 | struct fpu_info { |
| @@ -45,6 +46,9 @@ struct manufacturer_info { | |||
| 45 | #define CPU(ver, _name) \ | 46 | #define CPU(ver, _name) \ |
| 46 | { .psr_vers = ver, .name = _name } | 47 | { .psr_vers = ver, .name = _name } |
| 47 | 48 | ||
| 49 | #define CPU_PMU(ver, _name, _pmu_name) \ | ||
| 50 | { .psr_vers = ver, .name = _name, .pmu_name = _pmu_name } | ||
| 51 | |||
| 48 | #define FPU(ver, _name) \ | 52 | #define FPU(ver, _name) \ |
| 49 | { .fp_vers = ver, .name = _name } | 53 | { .fp_vers = ver, .name = _name } |
| 50 | 54 | ||
| @@ -183,10 +187,10 @@ static const struct manufacturer_info __initconst manufacturer_info[] = { | |||
| 183 | },{ | 187 | },{ |
| 184 | 0x17, | 188 | 0x17, |
| 185 | .cpu_info = { | 189 | .cpu_info = { |
| 186 | CPU(0x10, "TI UltraSparc I (SpitFire)"), | 190 | CPU_PMU(0x10, "TI UltraSparc I (SpitFire)", "ultra12"), |
| 187 | CPU(0x11, "TI UltraSparc II (BlackBird)"), | 191 | CPU_PMU(0x11, "TI UltraSparc II (BlackBird)", "ultra12"), |
| 188 | CPU(0x12, "TI UltraSparc IIi (Sabre)"), | 192 | CPU_PMU(0x12, "TI UltraSparc IIi (Sabre)", "ultra12"), |
| 189 | CPU(0x13, "TI UltraSparc IIe (Hummingbird)"), | 193 | CPU_PMU(0x13, "TI UltraSparc IIe (Hummingbird)", "ultra12"), |
| 190 | CPU(-1, NULL) | 194 | CPU(-1, NULL) |
| 191 | }, | 195 | }, |
| 192 | .fpu_info = { | 196 | .fpu_info = { |
| @@ -199,7 +203,7 @@ static const struct manufacturer_info __initconst manufacturer_info[] = { | |||
| 199 | },{ | 203 | },{ |
| 200 | 0x22, | 204 | 0x22, |
| 201 | .cpu_info = { | 205 | .cpu_info = { |
| 202 | CPU(0x10, "TI UltraSparc I (SpitFire)"), | 206 | CPU_PMU(0x10, "TI UltraSparc I (SpitFire)", "ultra12"), |
| 203 | CPU(-1, NULL) | 207 | CPU(-1, NULL) |
| 204 | }, | 208 | }, |
| 205 | .fpu_info = { | 209 | .fpu_info = { |
| @@ -209,12 +213,12 @@ static const struct manufacturer_info __initconst manufacturer_info[] = { | |||
| 209 | },{ | 213 | },{ |
| 210 | 0x3e, | 214 | 0x3e, |
| 211 | .cpu_info = { | 215 | .cpu_info = { |
| 212 | CPU(0x14, "TI UltraSparc III (Cheetah)"), | 216 | CPU_PMU(0x14, "TI UltraSparc III (Cheetah)", "ultra3"), |
| 213 | CPU(0x15, "TI UltraSparc III+ (Cheetah+)"), | 217 | CPU_PMU(0x15, "TI UltraSparc III+ (Cheetah+)", "ultra3+"), |
| 214 | CPU(0x16, "TI UltraSparc IIIi (Jalapeno)"), | 218 | CPU_PMU(0x16, "TI UltraSparc IIIi (Jalapeno)", "ultra3i"), |
| 215 | CPU(0x18, "TI UltraSparc IV (Jaguar)"), | 219 | CPU_PMU(0x18, "TI UltraSparc IV (Jaguar)", "ultra3+"), |
| 216 | CPU(0x19, "TI UltraSparc IV+ (Panther)"), | 220 | CPU_PMU(0x19, "TI UltraSparc IV+ (Panther)", "ultra4+"), |
| 217 | CPU(0x22, "TI UltraSparc IIIi+ (Serrano)"), | 221 | CPU_PMU(0x22, "TI UltraSparc IIIi+ (Serrano)", "ultra3i"), |
| 218 | CPU(-1, NULL) | 222 | CPU(-1, NULL) |
| 219 | }, | 223 | }, |
| 220 | .fpu_info = { | 224 | .fpu_info = { |
| @@ -234,6 +238,7 @@ static const struct manufacturer_info __initconst manufacturer_info[] = { | |||
| 234 | 238 | ||
| 235 | const char *sparc_cpu_type; | 239 | const char *sparc_cpu_type; |
| 236 | const char *sparc_fpu_type; | 240 | const char *sparc_fpu_type; |
| 241 | const char *sparc_pmu_type; | ||
| 237 | 242 | ||
| 238 | unsigned int fsr_storage; | 243 | unsigned int fsr_storage; |
| 239 | 244 | ||
| @@ -244,6 +249,7 @@ static void set_cpu_and_fpu(int psr_impl, int psr_vers, int fpu_vers) | |||
| 244 | 249 | ||
| 245 | sparc_cpu_type = NULL; | 250 | sparc_cpu_type = NULL; |
| 246 | sparc_fpu_type = NULL; | 251 | sparc_fpu_type = NULL; |
| 252 | sparc_pmu_type = NULL; | ||
| 247 | manuf = NULL; | 253 | manuf = NULL; |
| 248 | 254 | ||
| 249 | for (i = 0; i < ARRAY_SIZE(manufacturer_info); i++) | 255 | for (i = 0; i < ARRAY_SIZE(manufacturer_info); i++) |
| @@ -263,6 +269,7 @@ static void set_cpu_and_fpu(int psr_impl, int psr_vers, int fpu_vers) | |||
| 263 | { | 269 | { |
| 264 | if (cpu->psr_vers == psr_vers) { | 270 | if (cpu->psr_vers == psr_vers) { |
| 265 | sparc_cpu_type = cpu->name; | 271 | sparc_cpu_type = cpu->name; |
| 272 | sparc_pmu_type = cpu->pmu_name; | ||
| 266 | sparc_fpu_type = "No FPU"; | 273 | sparc_fpu_type = "No FPU"; |
| 267 | break; | 274 | break; |
| 268 | } | 275 | } |
| @@ -290,6 +297,8 @@ static void set_cpu_and_fpu(int psr_impl, int psr_vers, int fpu_vers) | |||
| 290 | psr_impl, fpu_vers); | 297 | psr_impl, fpu_vers); |
| 291 | sparc_fpu_type = "Unknown FPU"; | 298 | sparc_fpu_type = "Unknown FPU"; |
| 292 | } | 299 | } |
| 300 | if (sparc_pmu_type == NULL) | ||
| 301 | sparc_pmu_type = "Unknown PMU"; | ||
| 293 | } | 302 | } |
| 294 | 303 | ||
| 295 | #ifdef CONFIG_SPARC32 | 304 | #ifdef CONFIG_SPARC32 |
| @@ -315,11 +324,13 @@ static void __init sun4v_cpu_probe(void) | |||
| 315 | case SUN4V_CHIP_NIAGARA1: | 324 | case SUN4V_CHIP_NIAGARA1: |
| 316 | sparc_cpu_type = "UltraSparc T1 (Niagara)"; | 325 | sparc_cpu_type = "UltraSparc T1 (Niagara)"; |
| 317 | sparc_fpu_type = "UltraSparc T1 integrated FPU"; | 326 | sparc_fpu_type = "UltraSparc T1 integrated FPU"; |
| 327 | sparc_pmu_type = "niagara"; | ||
| 318 | break; | 328 | break; |
| 319 | 329 | ||
| 320 | case SUN4V_CHIP_NIAGARA2: | 330 | case SUN4V_CHIP_NIAGARA2: |
| 321 | sparc_cpu_type = "UltraSparc T2 (Niagara2)"; | 331 | sparc_cpu_type = "UltraSparc T2 (Niagara2)"; |
| 322 | sparc_fpu_type = "UltraSparc T2 integrated FPU"; | 332 | sparc_fpu_type = "UltraSparc T2 integrated FPU"; |
| 333 | sparc_pmu_type = "niagara2"; | ||
| 323 | break; | 334 | break; |
| 324 | 335 | ||
| 325 | default: | 336 | default: |
diff --git a/arch/sparc/kernel/head_64.S b/arch/sparc/kernel/head_64.S index 8ffee714f932..a46c3a21e26d 100644 --- a/arch/sparc/kernel/head_64.S +++ b/arch/sparc/kernel/head_64.S | |||
| @@ -891,10 +891,35 @@ prom_tba: .xword 0 | |||
| 891 | tlb_type: .word 0 /* Must NOT end up in BSS */ | 891 | tlb_type: .word 0 /* Must NOT end up in BSS */ |
| 892 | .section ".fixup",#alloc,#execinstr | 892 | .section ".fixup",#alloc,#execinstr |
| 893 | 893 | ||
| 894 | .globl __ret_efault, __retl_efault | 894 | .globl __ret_efault, __retl_efault, __ret_one, __retl_one |
| 895 | __ret_efault: | 895 | ENTRY(__ret_efault) |
| 896 | ret | 896 | ret |
| 897 | restore %g0, -EFAULT, %o0 | 897 | restore %g0, -EFAULT, %o0 |
| 898 | __retl_efault: | 898 | ENDPROC(__ret_efault) |
| 899 | |||
| 900 | ENTRY(__retl_efault) | ||
| 899 | retl | 901 | retl |
| 900 | mov -EFAULT, %o0 | 902 | mov -EFAULT, %o0 |
| 903 | ENDPROC(__retl_efault) | ||
| 904 | |||
| 905 | ENTRY(__retl_one) | ||
| 906 | retl | ||
| 907 | mov 1, %o0 | ||
| 908 | ENDPROC(__retl_one) | ||
| 909 | |||
| 910 | ENTRY(__ret_one_asi) | ||
| 911 | wr %g0, ASI_AIUS, %asi | ||
| 912 | ret | ||
| 913 | restore %g0, 1, %o0 | ||
| 914 | ENDPROC(__ret_one_asi) | ||
| 915 | |||
| 916 | ENTRY(__retl_one_asi) | ||
| 917 | wr %g0, ASI_AIUS, %asi | ||
| 918 | retl | ||
| 919 | mov 1, %o0 | ||
| 920 | ENDPROC(__retl_one_asi) | ||
| 921 | |||
| 922 | ENTRY(__retl_o1) | ||
| 923 | retl | ||
| 924 | mov %o1, %o0 | ||
| 925 | ENDPROC(__retl_o1) | ||
diff --git a/arch/sparc/kernel/irq_64.c b/arch/sparc/kernel/irq_64.c index cab8e0286871..e289376198eb 100644 --- a/arch/sparc/kernel/irq_64.c +++ b/arch/sparc/kernel/irq_64.c | |||
| @@ -196,6 +196,11 @@ int show_interrupts(struct seq_file *p, void *v) | |||
| 196 | seq_putc(p, '\n'); | 196 | seq_putc(p, '\n'); |
| 197 | skip: | 197 | skip: |
| 198 | spin_unlock_irqrestore(&irq_desc[i].lock, flags); | 198 | spin_unlock_irqrestore(&irq_desc[i].lock, flags); |
| 199 | } else if (i == NR_IRQS) { | ||
| 200 | seq_printf(p, "NMI: "); | ||
| 201 | for_each_online_cpu(j) | ||
| 202 | seq_printf(p, "%10u ", cpu_data(j).__nmi_count); | ||
| 203 | seq_printf(p, " Non-maskable interrupts\n"); | ||
| 199 | } | 204 | } |
| 200 | return 0; | 205 | return 0; |
| 201 | } | 206 | } |
| @@ -778,69 +783,6 @@ void do_softirq(void) | |||
| 778 | local_irq_restore(flags); | 783 | local_irq_restore(flags); |
| 779 | } | 784 | } |
| 780 | 785 | ||
| 781 | static void unhandled_perf_irq(struct pt_regs *regs) | ||
| 782 | { | ||
| 783 | unsigned long pcr, pic; | ||
| 784 | |||
| 785 | read_pcr(pcr); | ||
| 786 | read_pic(pic); | ||
| 787 | |||
| 788 | write_pcr(0); | ||
| 789 | |||
| 790 | printk(KERN_EMERG "CPU %d: Got unexpected perf counter IRQ.\n", | ||
| 791 | smp_processor_id()); | ||
| 792 | printk(KERN_EMERG "CPU %d: PCR[%016lx] PIC[%016lx]\n", | ||
| 793 | smp_processor_id(), pcr, pic); | ||
| 794 | } | ||
| 795 | |||
| 796 | /* Almost a direct copy of the powerpc PMC code. */ | ||
| 797 | static DEFINE_SPINLOCK(perf_irq_lock); | ||
| 798 | static void *perf_irq_owner_caller; /* mostly for debugging */ | ||
| 799 | static void (*perf_irq)(struct pt_regs *regs) = unhandled_perf_irq; | ||
| 800 | |||
| 801 | /* Invoked from level 15 PIL handler in trap table. */ | ||
| 802 | void perfctr_irq(int irq, struct pt_regs *regs) | ||
| 803 | { | ||
| 804 | clear_softint(1 << irq); | ||
| 805 | perf_irq(regs); | ||
| 806 | } | ||
| 807 | |||
| 808 | int register_perfctr_intr(void (*handler)(struct pt_regs *)) | ||
| 809 | { | ||
| 810 | int ret; | ||
| 811 | |||
| 812 | if (!handler) | ||
| 813 | return -EINVAL; | ||
| 814 | |||
| 815 | spin_lock(&perf_irq_lock); | ||
| 816 | if (perf_irq != unhandled_perf_irq) { | ||
| 817 | printk(KERN_WARNING "register_perfctr_intr: " | ||
| 818 | "perf IRQ busy (reserved by caller %p)\n", | ||
| 819 | perf_irq_owner_caller); | ||
| 820 | ret = -EBUSY; | ||
| 821 | goto out; | ||
| 822 | } | ||
| 823 | |||
| 824 | perf_irq_owner_caller = __builtin_return_address(0); | ||
| 825 | perf_irq = handler; | ||
| 826 | |||
| 827 | ret = 0; | ||
| 828 | out: | ||
| 829 | spin_unlock(&perf_irq_lock); | ||
| 830 | |||
| 831 | return ret; | ||
| 832 | } | ||
| 833 | EXPORT_SYMBOL_GPL(register_perfctr_intr); | ||
| 834 | |||
| 835 | void release_perfctr_intr(void (*handler)(struct pt_regs *)) | ||
| 836 | { | ||
| 837 | spin_lock(&perf_irq_lock); | ||
| 838 | perf_irq_owner_caller = NULL; | ||
| 839 | perf_irq = unhandled_perf_irq; | ||
| 840 | spin_unlock(&perf_irq_lock); | ||
| 841 | } | ||
| 842 | EXPORT_SYMBOL_GPL(release_perfctr_intr); | ||
| 843 | |||
| 844 | #ifdef CONFIG_HOTPLUG_CPU | 786 | #ifdef CONFIG_HOTPLUG_CPU |
| 845 | void fixup_irqs(void) | 787 | void fixup_irqs(void) |
| 846 | { | 788 | { |
diff --git a/arch/sparc/kernel/kernel.h b/arch/sparc/kernel/kernel.h index 81a972e8d8ea..15d8a3f645c9 100644 --- a/arch/sparc/kernel/kernel.h +++ b/arch/sparc/kernel/kernel.h | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | 5 | ||
| 6 | /* cpu.c */ | 6 | /* cpu.c */ |
| 7 | extern const char *sparc_cpu_type; | 7 | extern const char *sparc_cpu_type; |
| 8 | extern const char *sparc_pmu_type; | ||
| 8 | extern const char *sparc_fpu_type; | 9 | extern const char *sparc_fpu_type; |
| 9 | 10 | ||
| 10 | extern unsigned int fsr_storage; | 11 | extern unsigned int fsr_storage; |
diff --git a/arch/sparc/kernel/nmi.c b/arch/sparc/kernel/nmi.c new file mode 100644 index 000000000000..f3577223c863 --- /dev/null +++ b/arch/sparc/kernel/nmi.c | |||
| @@ -0,0 +1,225 @@ | |||
| 1 | /* Pseudo NMI support on sparc64 systems. | ||
| 2 | * | ||
| 3 | * Copyright (C) 2009 David S. Miller <davem@davemloft.net> | ||
| 4 | * | ||
| 5 | * The NMI watchdog support and infrastructure is based almost | ||
| 6 | * entirely upon the x86 NMI support code. | ||
| 7 | */ | ||
| 8 | #include <linux/kernel.h> | ||
| 9 | #include <linux/param.h> | ||
| 10 | #include <linux/init.h> | ||
| 11 | #include <linux/percpu.h> | ||
| 12 | #include <linux/nmi.h> | ||
| 13 | #include <linux/module.h> | ||
| 14 | #include <linux/kprobes.h> | ||
| 15 | #include <linux/kernel_stat.h> | ||
| 16 | #include <linux/slab.h> | ||
| 17 | #include <linux/kdebug.h> | ||
| 18 | #include <linux/delay.h> | ||
| 19 | #include <linux/smp.h> | ||
| 20 | |||
| 21 | #include <asm/ptrace.h> | ||
| 22 | #include <asm/local.h> | ||
| 23 | #include <asm/pcr.h> | ||
| 24 | |||
| 25 | /* We don't have a real NMI on sparc64, but we can fake one | ||
| 26 | * up using profiling counter overflow interrupts and interrupt | ||
| 27 | * levels. | ||
| 28 | * | ||
| 29 | * The profile overflow interrupts at level 15, so we use | ||
| 30 | * level 14 as our IRQ off level. | ||
| 31 | */ | ||
| 32 | |||
| 33 | static int nmi_watchdog_active; | ||
| 34 | static int panic_on_timeout; | ||
| 35 | |||
| 36 | int nmi_usable; | ||
| 37 | EXPORT_SYMBOL_GPL(nmi_usable); | ||
| 38 | |||
| 39 | static unsigned int nmi_hz = HZ; | ||
| 40 | |||
| 41 | static DEFINE_PER_CPU(unsigned int, last_irq_sum); | ||
| 42 | static DEFINE_PER_CPU(local_t, alert_counter); | ||
| 43 | static DEFINE_PER_CPU(int, nmi_touch); | ||
| 44 | |||
| 45 | void touch_nmi_watchdog(void) | ||
| 46 | { | ||
| 47 | if (nmi_watchdog_active) { | ||
| 48 | int cpu; | ||
| 49 | |||
| 50 | for_each_present_cpu(cpu) { | ||
| 51 | if (per_cpu(nmi_touch, cpu) != 1) | ||
| 52 | per_cpu(nmi_touch, cpu) = 1; | ||
| 53 | } | ||
| 54 | } | ||
| 55 | |||
| 56 | touch_softlockup_watchdog(); | ||
| 57 | } | ||
| 58 | EXPORT_SYMBOL(touch_nmi_watchdog); | ||
| 59 | |||
| 60 | static void die_nmi(const char *str, struct pt_regs *regs, int do_panic) | ||
| 61 | { | ||
| 62 | if (notify_die(DIE_NMIWATCHDOG, str, regs, 0, | ||
| 63 | pt_regs_trap_type(regs), SIGINT) == NOTIFY_STOP) | ||
| 64 | return; | ||
| 65 | |||
| 66 | console_verbose(); | ||
| 67 | bust_spinlocks(1); | ||
| 68 | |||
| 69 | printk(KERN_EMERG "%s", str); | ||
| 70 | printk(" on CPU%d, ip %08lx, registers:\n", | ||
| 71 | smp_processor_id(), regs->tpc); | ||
| 72 | show_regs(regs); | ||
| 73 | dump_stack(); | ||
| 74 | |||
| 75 | bust_spinlocks(0); | ||
| 76 | |||
| 77 | if (do_panic || panic_on_oops) | ||
| 78 | panic("Non maskable interrupt"); | ||
| 79 | |||
| 80 | local_irq_enable(); | ||
| 81 | do_exit(SIGBUS); | ||
| 82 | } | ||
| 83 | |||
| 84 | notrace __kprobes void perfctr_irq(int irq, struct pt_regs *regs) | ||
| 85 | { | ||
| 86 | unsigned int sum, touched = 0; | ||
| 87 | int cpu = smp_processor_id(); | ||
| 88 | |||
| 89 | clear_softint(1 << irq); | ||
| 90 | pcr_ops->write(PCR_PIC_PRIV); | ||
| 91 | |||
| 92 | local_cpu_data().__nmi_count++; | ||
| 93 | |||
| 94 | if (notify_die(DIE_NMI, "nmi", regs, 0, | ||
| 95 | pt_regs_trap_type(regs), SIGINT) == NOTIFY_STOP) | ||
| 96 | touched = 1; | ||
| 97 | |||
| 98 | sum = kstat_irqs_cpu(0, cpu); | ||
| 99 | if (__get_cpu_var(nmi_touch)) { | ||
| 100 | __get_cpu_var(nmi_touch) = 0; | ||
| 101 | touched = 1; | ||
| 102 | } | ||
| 103 | if (!touched && __get_cpu_var(last_irq_sum) == sum) { | ||
| 104 | local_inc(&__get_cpu_var(alert_counter)); | ||
| 105 | if (local_read(&__get_cpu_var(alert_counter)) == 5 * nmi_hz) | ||
| 106 | die_nmi("BUG: NMI Watchdog detected LOCKUP", | ||
| 107 | regs, panic_on_timeout); | ||
| 108 | } else { | ||
| 109 | __get_cpu_var(last_irq_sum) = sum; | ||
| 110 | local_set(&__get_cpu_var(alert_counter), 0); | ||
| 111 | } | ||
| 112 | if (nmi_usable) { | ||
| 113 | write_pic(picl_value(nmi_hz)); | ||
| 114 | pcr_ops->write(pcr_enable); | ||
| 115 | } | ||
| 116 | } | ||
| 117 | |||
| 118 | static inline unsigned int get_nmi_count(int cpu) | ||
| 119 | { | ||
| 120 | return cpu_data(cpu).__nmi_count; | ||
| 121 | } | ||
| 122 | |||
| 123 | static int endflag __initdata; | ||
| 124 | |||
| 125 | static __init void nmi_cpu_busy(void *data) | ||
| 126 | { | ||
| 127 | local_irq_enable_in_hardirq(); | ||
| 128 | while (endflag == 0) | ||
| 129 | mb(); | ||
| 130 | } | ||
| 131 | |||
| 132 | static void report_broken_nmi(int cpu, int *prev_nmi_count) | ||
| 133 | { | ||
| 134 | printk(KERN_CONT "\n"); | ||
| 135 | |||
| 136 | printk(KERN_WARNING | ||
| 137 | "WARNING: CPU#%d: NMI appears to be stuck (%d->%d)!\n", | ||
| 138 | cpu, prev_nmi_count[cpu], get_nmi_count(cpu)); | ||
| 139 | |||
| 140 | printk(KERN_WARNING | ||
| 141 | "Please report this to bugzilla.kernel.org,\n"); | ||
| 142 | printk(KERN_WARNING | ||
| 143 | "and attach the output of the 'dmesg' command.\n"); | ||
| 144 | |||
| 145 | nmi_usable = 0; | ||
| 146 | } | ||
| 147 | |||
| 148 | static void stop_watchdog(void *unused) | ||
| 149 | { | ||
| 150 | pcr_ops->write(PCR_PIC_PRIV); | ||
| 151 | } | ||
| 152 | |||
| 153 | static int __init check_nmi_watchdog(void) | ||
| 154 | { | ||
| 155 | unsigned int *prev_nmi_count; | ||
| 156 | int cpu, err; | ||
| 157 | |||
| 158 | prev_nmi_count = kmalloc(nr_cpu_ids * sizeof(unsigned int), GFP_KERNEL); | ||
| 159 | if (!prev_nmi_count) { | ||
| 160 | err = -ENOMEM; | ||
| 161 | goto error; | ||
| 162 | } | ||
| 163 | |||
| 164 | printk(KERN_INFO "Testing NMI watchdog ... "); | ||
| 165 | |||
| 166 | smp_call_function(nmi_cpu_busy, (void *)&endflag, 0); | ||
| 167 | |||
| 168 | for_each_possible_cpu(cpu) | ||
| 169 | prev_nmi_count[cpu] = get_nmi_count(cpu); | ||
| 170 | local_irq_enable(); | ||
| 171 | mdelay((20 * 1000) / nmi_hz); /* wait 20 ticks */ | ||
| 172 | |||
| 173 | for_each_online_cpu(cpu) { | ||
| 174 | if (get_nmi_count(cpu) - prev_nmi_count[cpu] <= 5) | ||
| 175 | report_broken_nmi(cpu, prev_nmi_count); | ||
| 176 | } | ||
| 177 | endflag = 1; | ||
| 178 | if (!nmi_usable) { | ||
| 179 | kfree(prev_nmi_count); | ||
| 180 | err = -ENODEV; | ||
| 181 | goto error; | ||
| 182 | } | ||
| 183 | printk("OK.\n"); | ||
| 184 | |||
| 185 | nmi_hz = 1; | ||
| 186 | |||
| 187 | kfree(prev_nmi_count); | ||
| 188 | return 0; | ||
| 189 | error: | ||
| 190 | on_each_cpu(stop_watchdog, NULL, 1); | ||
| 191 | return err; | ||
| 192 | } | ||
| 193 | |||
| 194 | static void start_watchdog(void *unused) | ||
| 195 | { | ||
| 196 | pcr_ops->write(PCR_PIC_PRIV); | ||
| 197 | write_pic(picl_value(nmi_hz)); | ||
| 198 | |||
| 199 | pcr_ops->write(pcr_enable); | ||
| 200 | } | ||
| 201 | |||
| 202 | void nmi_adjust_hz(unsigned int new_hz) | ||
| 203 | { | ||
| 204 | nmi_hz = new_hz; | ||
| 205 | on_each_cpu(start_watchdog, NULL, 1); | ||
| 206 | } | ||
| 207 | EXPORT_SYMBOL_GPL(nmi_adjust_hz); | ||
| 208 | |||
| 209 | int __init nmi_init(void) | ||
| 210 | { | ||
| 211 | nmi_usable = 1; | ||
| 212 | |||
| 213 | on_each_cpu(start_watchdog, NULL, 1); | ||
| 214 | |||
| 215 | return check_nmi_watchdog(); | ||
| 216 | } | ||
| 217 | |||
| 218 | static int __init setup_nmi_watchdog(char *str) | ||
| 219 | { | ||
| 220 | if (!strncmp(str, "panic", 5)) | ||
| 221 | panic_on_timeout = 1; | ||
| 222 | |||
| 223 | return 0; | ||
| 224 | } | ||
| 225 | __setup("nmi_watchdog=", setup_nmi_watchdog); | ||
diff --git a/arch/sparc/kernel/pcr.c b/arch/sparc/kernel/pcr.c new file mode 100644 index 000000000000..1ae8cdd7e703 --- /dev/null +++ b/arch/sparc/kernel/pcr.c | |||
| @@ -0,0 +1,158 @@ | |||
| 1 | /* pcr.c: Generic sparc64 performance counter infrastructure. | ||
| 2 | * | ||
| 3 | * Copyright (C) 2009 David S. Miller (davem@davemloft.net) | ||
| 4 | */ | ||
| 5 | #include <linux/kernel.h> | ||
| 6 | #include <linux/module.h> | ||
| 7 | #include <linux/init.h> | ||
| 8 | #include <linux/irq.h> | ||
| 9 | |||
| 10 | #include <asm/pil.h> | ||
| 11 | #include <asm/pcr.h> | ||
| 12 | #include <asm/nmi.h> | ||
| 13 | |||
| 14 | /* This code is shared between various users of the performance | ||
| 15 | * counters. Users will be oprofile, pseudo-NMI watchdog, and the | ||
| 16 | * perf_counter support layer. | ||
| 17 | */ | ||
| 18 | |||
| 19 | #define PCR_SUN4U_ENABLE (PCR_PIC_PRIV | PCR_STRACE | PCR_UTRACE) | ||
| 20 | #define PCR_N2_ENABLE (PCR_PIC_PRIV | PCR_STRACE | PCR_UTRACE | \ | ||
| 21 | PCR_N2_TOE_OV1 | \ | ||
| 22 | (2 << PCR_N2_SL1_SHIFT) | \ | ||
| 23 | (0xff << PCR_N2_MASK1_SHIFT)) | ||
| 24 | |||
| 25 | u64 pcr_enable; | ||
| 26 | unsigned int picl_shift; | ||
| 27 | |||
| 28 | /* Performance counter interrupts run unmasked at PIL level 15. | ||
| 29 | * Therefore we can't do things like wakeups and other work | ||
| 30 | * that expects IRQ disabling to be adhered to in locking etc. | ||
| 31 | * | ||
| 32 | * Therefore in such situations we defer the work by signalling | ||
| 33 | * a lower level cpu IRQ. | ||
| 34 | */ | ||
| 35 | void deferred_pcr_work_irq(int irq, struct pt_regs *regs) | ||
| 36 | { | ||
| 37 | clear_softint(1 << PIL_DEFERRED_PCR_WORK); | ||
| 38 | } | ||
| 39 | |||
| 40 | void schedule_deferred_pcr_work(void) | ||
| 41 | { | ||
| 42 | set_softint(1 << PIL_DEFERRED_PCR_WORK); | ||
| 43 | } | ||
| 44 | |||
| 45 | const struct pcr_ops *pcr_ops; | ||
| 46 | EXPORT_SYMBOL_GPL(pcr_ops); | ||
| 47 | |||
| 48 | static u64 direct_pcr_read(void) | ||
| 49 | { | ||
| 50 | u64 val; | ||
| 51 | |||
| 52 | read_pcr(val); | ||
| 53 | return val; | ||
| 54 | } | ||
| 55 | |||
| 56 | static void direct_pcr_write(u64 val) | ||
| 57 | { | ||
| 58 | write_pcr(val); | ||
| 59 | } | ||
| 60 | |||
| 61 | static const struct pcr_ops direct_pcr_ops = { | ||
| 62 | .read = direct_pcr_read, | ||
| 63 | .write = direct_pcr_write, | ||
| 64 | }; | ||
| 65 | |||
| 66 | static void n2_pcr_write(u64 val) | ||
| 67 | { | ||
| 68 | unsigned long ret; | ||
| 69 | |||
| 70 | ret = sun4v_niagara2_setperf(HV_N2_PERF_SPARC_CTL, val); | ||
| 71 | if (val != HV_EOK) | ||
| 72 | write_pcr(val); | ||
| 73 | } | ||
| 74 | |||
| 75 | static const struct pcr_ops n2_pcr_ops = { | ||
| 76 | .read = direct_pcr_read, | ||
| 77 | .write = n2_pcr_write, | ||
| 78 | }; | ||
| 79 | |||
| 80 | static unsigned long perf_hsvc_group; | ||
| 81 | static unsigned long perf_hsvc_major; | ||
| 82 | static unsigned long perf_hsvc_minor; | ||
| 83 | |||
| 84 | static int __init register_perf_hsvc(void) | ||
| 85 | { | ||
| 86 | if (tlb_type == hypervisor) { | ||
| 87 | switch (sun4v_chip_type) { | ||
| 88 | case SUN4V_CHIP_NIAGARA1: | ||
| 89 | perf_hsvc_group = HV_GRP_NIAG_PERF; | ||
| 90 | break; | ||
| 91 | |||
| 92 | case SUN4V_CHIP_NIAGARA2: | ||
| 93 | perf_hsvc_group = HV_GRP_N2_CPU; | ||
| 94 | break; | ||
| 95 | |||
| 96 | default: | ||
| 97 | return -ENODEV; | ||
| 98 | } | ||
| 99 | |||
| 100 | |||
| 101 | perf_hsvc_major = 1; | ||
| 102 | perf_hsvc_minor = 0; | ||
| 103 | if (sun4v_hvapi_register(perf_hsvc_group, | ||
| 104 | perf_hsvc_major, | ||
| 105 | &perf_hsvc_minor)) { | ||
| 106 | printk("perfmon: Could not register hvapi.\n"); | ||
| 107 | return -ENODEV; | ||
| 108 | } | ||
| 109 | } | ||
| 110 | return 0; | ||
| 111 | } | ||
| 112 | |||
| 113 | static void __init unregister_perf_hsvc(void) | ||
| 114 | { | ||
| 115 | if (tlb_type != hypervisor) | ||
| 116 | return; | ||
| 117 | sun4v_hvapi_unregister(perf_hsvc_group); | ||
| 118 | } | ||
| 119 | |||
| 120 | int __init pcr_arch_init(void) | ||
| 121 | { | ||
| 122 | int err = register_perf_hsvc(); | ||
| 123 | |||
| 124 | if (err) | ||
| 125 | return err; | ||
| 126 | |||
| 127 | switch (tlb_type) { | ||
| 128 | case hypervisor: | ||
| 129 | pcr_ops = &n2_pcr_ops; | ||
| 130 | pcr_enable = PCR_N2_ENABLE; | ||
| 131 | picl_shift = 2; | ||
| 132 | break; | ||
| 133 | |||
| 134 | case cheetah: | ||
| 135 | case cheetah_plus: | ||
| 136 | pcr_ops = &direct_pcr_ops; | ||
| 137 | pcr_enable = PCR_SUN4U_ENABLE; | ||
| 138 | break; | ||
| 139 | |||
| 140 | case spitfire: | ||
| 141 | /* UltraSPARC-I/II and derivatives lack a profile | ||
| 142 | * counter overflow interrupt so we can't make use of | ||
| 143 | * their hardware currently. | ||
| 144 | */ | ||
| 145 | /* fallthrough */ | ||
| 146 | default: | ||
| 147 | err = -ENODEV; | ||
| 148 | goto out_unregister; | ||
| 149 | } | ||
| 150 | |||
| 151 | return nmi_init(); | ||
| 152 | |||
| 153 | out_unregister: | ||
| 154 | unregister_perf_hsvc(); | ||
| 155 | return err; | ||
| 156 | } | ||
| 157 | |||
| 158 | arch_initcall(pcr_arch_init); | ||
diff --git a/arch/sparc/kernel/process_64.c b/arch/sparc/kernel/process_64.c index cc8b5604442c..a73954b87f0a 100644 --- a/arch/sparc/kernel/process_64.c +++ b/arch/sparc/kernel/process_64.c | |||
| @@ -29,6 +29,7 @@ | |||
| 29 | #include <linux/cpu.h> | 29 | #include <linux/cpu.h> |
| 30 | #include <linux/elfcore.h> | 30 | #include <linux/elfcore.h> |
| 31 | #include <linux/sysrq.h> | 31 | #include <linux/sysrq.h> |
| 32 | #include <linux/nmi.h> | ||
| 32 | 33 | ||
| 33 | #include <asm/uaccess.h> | 34 | #include <asm/uaccess.h> |
| 34 | #include <asm/system.h> | 35 | #include <asm/system.h> |
| @@ -52,8 +53,10 @@ | |||
| 52 | 53 | ||
| 53 | static void sparc64_yield(int cpu) | 54 | static void sparc64_yield(int cpu) |
| 54 | { | 55 | { |
| 55 | if (tlb_type != hypervisor) | 56 | if (tlb_type != hypervisor) { |
| 57 | touch_nmi_watchdog(); | ||
| 56 | return; | 58 | return; |
| 59 | } | ||
| 57 | 60 | ||
| 58 | clear_thread_flag(TIF_POLLING_NRFLAG); | 61 | clear_thread_flag(TIF_POLLING_NRFLAG); |
| 59 | smp_mb__after_clear_bit(); | 62 | smp_mb__after_clear_bit(); |
diff --git a/arch/sparc/kernel/setup_64.c b/arch/sparc/kernel/setup_64.c index 49d061f4ae9d..f2bcfd2967d7 100644 --- a/arch/sparc/kernel/setup_64.c +++ b/arch/sparc/kernel/setup_64.c | |||
| @@ -354,6 +354,7 @@ static int show_cpuinfo(struct seq_file *m, void *__unused) | |||
| 354 | seq_printf(m, | 354 | seq_printf(m, |
| 355 | "cpu\t\t: %s\n" | 355 | "cpu\t\t: %s\n" |
| 356 | "fpu\t\t: %s\n" | 356 | "fpu\t\t: %s\n" |
| 357 | "pmu\t\t: %s\n" | ||
| 357 | "prom\t\t: %s\n" | 358 | "prom\t\t: %s\n" |
| 358 | "type\t\t: %s\n" | 359 | "type\t\t: %s\n" |
| 359 | "ncpus probed\t: %d\n" | 360 | "ncpus probed\t: %d\n" |
| @@ -366,6 +367,7 @@ static int show_cpuinfo(struct seq_file *m, void *__unused) | |||
| 366 | , | 367 | , |
| 367 | sparc_cpu_type, | 368 | sparc_cpu_type, |
| 368 | sparc_fpu_type, | 369 | sparc_fpu_type, |
| 370 | sparc_pmu_type, | ||
| 369 | prom_version, | 371 | prom_version, |
| 370 | ((tlb_type == hypervisor) ? | 372 | ((tlb_type == hypervisor) ? |
| 371 | "sun4v" : | 373 | "sun4v" : |
diff --git a/arch/sparc/kernel/ttable.S b/arch/sparc/kernel/ttable.S index ea925503b42e..d9bdfb9d5c18 100644 --- a/arch/sparc/kernel/ttable.S +++ b/arch/sparc/kernel/ttable.S | |||
| @@ -63,7 +63,8 @@ tl0_irq6: TRAP_IRQ(smp_call_function_single_client, 6) | |||
| 63 | #else | 63 | #else |
| 64 | tl0_irq6: BTRAP(0x46) | 64 | tl0_irq6: BTRAP(0x46) |
| 65 | #endif | 65 | #endif |
| 66 | tl0_irq7: BTRAP(0x47) BTRAP(0x48) BTRAP(0x49) | 66 | tl0_irq7: TRAP_IRQ(deferred_pcr_work_irq, 7) |
| 67 | tl0_irq8: BTRAP(0x48) BTRAP(0x49) | ||
| 67 | tl0_irq10: BTRAP(0x4a) BTRAP(0x4b) BTRAP(0x4c) BTRAP(0x4d) | 68 | tl0_irq10: BTRAP(0x4a) BTRAP(0x4b) BTRAP(0x4c) BTRAP(0x4d) |
| 68 | tl0_irq14: TRAP_IRQ(timer_interrupt, 14) | 69 | tl0_irq14: TRAP_IRQ(timer_interrupt, 14) |
| 69 | tl0_irq15: TRAP_NMI_IRQ(perfctr_irq, 15) | 70 | tl0_irq15: TRAP_NMI_IRQ(perfctr_irq, 15) |
diff --git a/arch/sparc/lib/GENbzero.S b/arch/sparc/lib/GENbzero.S index 6a4f956a2f7a..8e7a843ddd88 100644 --- a/arch/sparc/lib/GENbzero.S +++ b/arch/sparc/lib/GENbzero.S | |||
| @@ -6,13 +6,9 @@ | |||
| 6 | 6 | ||
| 7 | #define EX_ST(x,y) \ | 7 | #define EX_ST(x,y) \ |
| 8 | 98: x,y; \ | 8 | 98: x,y; \ |
| 9 | .section .fixup; \ | ||
| 10 | .align 4; \ | ||
| 11 | 99: retl; \ | ||
| 12 | mov %o1, %o0; \ | ||
| 13 | .section __ex_table,"a";\ | 9 | .section __ex_table,"a";\ |
| 14 | .align 4; \ | 10 | .align 4; \ |
| 15 | .word 98b, 99b; \ | 11 | .word 98b, __retl_o1; \ |
| 16 | .text; \ | 12 | .text; \ |
| 17 | .align 4; | 13 | .align 4; |
| 18 | 14 | ||
diff --git a/arch/sparc/lib/GENcopy_from_user.S b/arch/sparc/lib/GENcopy_from_user.S index 2b9df99e87f9..b7d0bd6b1406 100644 --- a/arch/sparc/lib/GENcopy_from_user.S +++ b/arch/sparc/lib/GENcopy_from_user.S | |||
| @@ -5,13 +5,9 @@ | |||
| 5 | 5 | ||
| 6 | #define EX_LD(x) \ | 6 | #define EX_LD(x) \ |
| 7 | 98: x; \ | 7 | 98: x; \ |
| 8 | .section .fixup; \ | ||
| 9 | .align 4; \ | ||
| 10 | 99: retl; \ | ||
| 11 | mov 1, %o0; \ | ||
| 12 | .section __ex_table,"a";\ | 8 | .section __ex_table,"a";\ |
| 13 | .align 4; \ | 9 | .align 4; \ |
| 14 | .word 98b, 99b; \ | 10 | .word 98b, __retl_one; \ |
| 15 | .text; \ | 11 | .text; \ |
| 16 | .align 4; | 12 | .align 4; |
| 17 | 13 | ||
| @@ -27,7 +23,7 @@ | |||
| 27 | #define PREAMBLE \ | 23 | #define PREAMBLE \ |
| 28 | rd %asi, %g1; \ | 24 | rd %asi, %g1; \ |
| 29 | cmp %g1, ASI_AIUS; \ | 25 | cmp %g1, ASI_AIUS; \ |
| 30 | bne,pn %icc, memcpy_user_stub; \ | 26 | bne,pn %icc, ___copy_in_user; \ |
| 31 | nop | 27 | nop |
| 32 | #endif | 28 | #endif |
| 33 | 29 | ||
diff --git a/arch/sparc/lib/GENcopy_to_user.S b/arch/sparc/lib/GENcopy_to_user.S index bb3f7084daf9..780550e1afc7 100644 --- a/arch/sparc/lib/GENcopy_to_user.S +++ b/arch/sparc/lib/GENcopy_to_user.S | |||
| @@ -5,13 +5,9 @@ | |||
| 5 | 5 | ||
| 6 | #define EX_ST(x) \ | 6 | #define EX_ST(x) \ |
| 7 | 98: x; \ | 7 | 98: x; \ |
| 8 | .section .fixup; \ | ||
| 9 | .align 4; \ | ||
| 10 | 99: retl; \ | ||
| 11 | mov 1, %o0; \ | ||
| 12 | .section __ex_table,"a";\ | 8 | .section __ex_table,"a";\ |
| 13 | .align 4; \ | 9 | .align 4; \ |
| 14 | .word 98b, 99b; \ | 10 | .word 98b, __retl_one; \ |
| 15 | .text; \ | 11 | .text; \ |
| 16 | .align 4; | 12 | .align 4; |
| 17 | 13 | ||
| @@ -31,7 +27,7 @@ | |||
| 31 | #define PREAMBLE \ | 27 | #define PREAMBLE \ |
| 32 | rd %asi, %g1; \ | 28 | rd %asi, %g1; \ |
| 33 | cmp %g1, ASI_AIUS; \ | 29 | cmp %g1, ASI_AIUS; \ |
| 34 | bne,pn %icc, memcpy_user_stub; \ | 30 | bne,pn %icc, ___copy_in_user; \ |
| 35 | nop | 31 | nop |
| 36 | #endif | 32 | #endif |
| 37 | 33 | ||
diff --git a/arch/sparc/lib/NG2copy_from_user.S b/arch/sparc/lib/NG2copy_from_user.S index c77ef5f22102..119ccb9a54f4 100644 --- a/arch/sparc/lib/NG2copy_from_user.S +++ b/arch/sparc/lib/NG2copy_from_user.S | |||
| @@ -5,14 +5,9 @@ | |||
| 5 | 5 | ||
| 6 | #define EX_LD(x) \ | 6 | #define EX_LD(x) \ |
| 7 | 98: x; \ | 7 | 98: x; \ |
| 8 | .section .fixup; \ | ||
| 9 | .align 4; \ | ||
| 10 | 99: wr %g0, ASI_AIUS, %asi;\ | ||
| 11 | retl; \ | ||
| 12 | mov 1, %o0; \ | ||
| 13 | .section __ex_table,"a";\ | 8 | .section __ex_table,"a";\ |
| 14 | .align 4; \ | 9 | .align 4; \ |
| 15 | .word 98b, 99b; \ | 10 | .word 98b, __retl_one_asi;\ |
| 16 | .text; \ | 11 | .text; \ |
| 17 | .align 4; | 12 | .align 4; |
| 18 | 13 | ||
| @@ -33,7 +28,7 @@ | |||
| 33 | #define PREAMBLE \ | 28 | #define PREAMBLE \ |
| 34 | rd %asi, %g1; \ | 29 | rd %asi, %g1; \ |
| 35 | cmp %g1, ASI_AIUS; \ | 30 | cmp %g1, ASI_AIUS; \ |
| 36 | bne,pn %icc, memcpy_user_stub; \ | 31 | bne,pn %icc, ___copy_in_user; \ |
| 37 | nop | 32 | nop |
| 38 | #endif | 33 | #endif |
| 39 | 34 | ||
diff --git a/arch/sparc/lib/NG2copy_to_user.S b/arch/sparc/lib/NG2copy_to_user.S index 4bd4093acbbd..7fe1ccefd9d0 100644 --- a/arch/sparc/lib/NG2copy_to_user.S +++ b/arch/sparc/lib/NG2copy_to_user.S | |||
| @@ -5,14 +5,9 @@ | |||
| 5 | 5 | ||
| 6 | #define EX_ST(x) \ | 6 | #define EX_ST(x) \ |
| 7 | 98: x; \ | 7 | 98: x; \ |
| 8 | .section .fixup; \ | ||
| 9 | .align 4; \ | ||
| 10 | 99: wr %g0, ASI_AIUS, %asi;\ | ||
| 11 | retl; \ | ||
| 12 | mov 1, %o0; \ | ||
| 13 | .section __ex_table,"a";\ | 8 | .section __ex_table,"a";\ |
| 14 | .align 4; \ | 9 | .align 4; \ |
| 15 | .word 98b, 99b; \ | 10 | .word 98b, __retl_one_asi;\ |
| 16 | .text; \ | 11 | .text; \ |
| 17 | .align 4; | 12 | .align 4; |
| 18 | 13 | ||
| @@ -42,7 +37,7 @@ | |||
| 42 | #define PREAMBLE \ | 37 | #define PREAMBLE \ |
| 43 | rd %asi, %g1; \ | 38 | rd %asi, %g1; \ |
| 44 | cmp %g1, ASI_AIUS; \ | 39 | cmp %g1, ASI_AIUS; \ |
| 45 | bne,pn %icc, memcpy_user_stub; \ | 40 | bne,pn %icc, ___copy_in_user; \ |
| 46 | nop | 41 | nop |
| 47 | #endif | 42 | #endif |
| 48 | 43 | ||
diff --git a/arch/sparc/lib/NGbzero.S b/arch/sparc/lib/NGbzero.S index 814d5f7a45e1..beab29bf419b 100644 --- a/arch/sparc/lib/NGbzero.S +++ b/arch/sparc/lib/NGbzero.S | |||
| @@ -6,13 +6,9 @@ | |||
| 6 | 6 | ||
| 7 | #define EX_ST(x,y) \ | 7 | #define EX_ST(x,y) \ |
| 8 | 98: x,y; \ | 8 | 98: x,y; \ |
| 9 | .section .fixup; \ | ||
| 10 | .align 4; \ | ||
| 11 | 99: retl; \ | ||
| 12 | mov %o1, %o0; \ | ||
| 13 | .section __ex_table,"a";\ | 9 | .section __ex_table,"a";\ |
| 14 | .align 4; \ | 10 | .align 4; \ |
| 15 | .word 98b, 99b; \ | 11 | .word 98b, __retl_o1; \ |
| 16 | .text; \ | 12 | .text; \ |
| 17 | .align 4; | 13 | .align 4; |
| 18 | 14 | ||
diff --git a/arch/sparc/lib/NGcopy_from_user.S b/arch/sparc/lib/NGcopy_from_user.S index e7f433f71b42..5d1e4d1ac21e 100644 --- a/arch/sparc/lib/NGcopy_from_user.S +++ b/arch/sparc/lib/NGcopy_from_user.S | |||
| @@ -5,14 +5,9 @@ | |||
| 5 | 5 | ||
| 6 | #define EX_LD(x) \ | 6 | #define EX_LD(x) \ |
| 7 | 98: x; \ | 7 | 98: x; \ |
| 8 | .section .fixup; \ | ||
| 9 | .align 4; \ | ||
| 10 | 99: wr %g0, ASI_AIUS, %asi;\ | ||
| 11 | ret; \ | ||
| 12 | restore %g0, 1, %o0; \ | ||
| 13 | .section __ex_table,"a";\ | 8 | .section __ex_table,"a";\ |
| 14 | .align 4; \ | 9 | .align 4; \ |
| 15 | .word 98b, 99b; \ | 10 | .word 98b, __ret_one_asi;\ |
| 16 | .text; \ | 11 | .text; \ |
| 17 | .align 4; | 12 | .align 4; |
| 18 | 13 | ||
| @@ -30,7 +25,7 @@ | |||
| 30 | #define PREAMBLE \ | 25 | #define PREAMBLE \ |
| 31 | rd %asi, %g1; \ | 26 | rd %asi, %g1; \ |
| 32 | cmp %g1, ASI_AIUS; \ | 27 | cmp %g1, ASI_AIUS; \ |
| 33 | bne,pn %icc, memcpy_user_stub; \ | 28 | bne,pn %icc, ___copy_in_user; \ |
| 34 | nop | 29 | nop |
| 35 | #endif | 30 | #endif |
| 36 | 31 | ||
diff --git a/arch/sparc/lib/NGcopy_to_user.S b/arch/sparc/lib/NGcopy_to_user.S index 6ea01c5532a0..ff630dcb273c 100644 --- a/arch/sparc/lib/NGcopy_to_user.S +++ b/arch/sparc/lib/NGcopy_to_user.S | |||
| @@ -5,14 +5,9 @@ | |||
| 5 | 5 | ||
| 6 | #define EX_ST(x) \ | 6 | #define EX_ST(x) \ |
| 7 | 98: x; \ | 7 | 98: x; \ |
| 8 | .section .fixup; \ | ||
| 9 | .align 4; \ | ||
| 10 | 99: wr %g0, ASI_AIUS, %asi;\ | ||
| 11 | ret; \ | ||
| 12 | restore %g0, 1, %o0; \ | ||
| 13 | .section __ex_table,"a";\ | 8 | .section __ex_table,"a";\ |
| 14 | .align 4; \ | 9 | .align 4; \ |
| 15 | .word 98b, 99b; \ | 10 | .word 98b, __ret_one_asi;\ |
| 16 | .text; \ | 11 | .text; \ |
| 17 | .align 4; | 12 | .align 4; |
| 18 | 13 | ||
| @@ -33,7 +28,7 @@ | |||
| 33 | #define PREAMBLE \ | 28 | #define PREAMBLE \ |
| 34 | rd %asi, %g1; \ | 29 | rd %asi, %g1; \ |
| 35 | cmp %g1, ASI_AIUS; \ | 30 | cmp %g1, ASI_AIUS; \ |
| 36 | bne,pn %icc, memcpy_user_stub; \ | 31 | bne,pn %icc, ___copy_in_user; \ |
| 37 | nop | 32 | nop |
| 38 | #endif | 33 | #endif |
| 39 | 34 | ||
diff --git a/arch/sparc/lib/U1copy_from_user.S b/arch/sparc/lib/U1copy_from_user.S index 3192b0bf4fab..a6ae2ea04bf5 100644 --- a/arch/sparc/lib/U1copy_from_user.S +++ b/arch/sparc/lib/U1copy_from_user.S | |||
| @@ -5,13 +5,9 @@ | |||
| 5 | 5 | ||
| 6 | #define EX_LD(x) \ | 6 | #define EX_LD(x) \ |
| 7 | 98: x; \ | 7 | 98: x; \ |
| 8 | .section .fixup; \ | ||
| 9 | .align 4; \ | ||
| 10 | 99: retl; \ | ||
| 11 | mov 1, %o0; \ | ||
| 12 | .section __ex_table,"a";\ | 8 | .section __ex_table,"a";\ |
| 13 | .align 4; \ | 9 | .align 4; \ |
| 14 | .word 98b, 99b; \ | 10 | .word 98b, __retl_one; \ |
| 15 | .text; \ | 11 | .text; \ |
| 16 | .align 4; | 12 | .align 4; |
| 17 | 13 | ||
| @@ -27,7 +23,7 @@ | |||
| 27 | #define PREAMBLE \ | 23 | #define PREAMBLE \ |
| 28 | rd %asi, %g1; \ | 24 | rd %asi, %g1; \ |
| 29 | cmp %g1, ASI_AIUS; \ | 25 | cmp %g1, ASI_AIUS; \ |
| 30 | bne,pn %icc, memcpy_user_stub; \ | 26 | bne,pn %icc, ___copy_in_user; \ |
| 31 | nop; \ | 27 | nop; \ |
| 32 | 28 | ||
| 33 | #include "U1memcpy.S" | 29 | #include "U1memcpy.S" |
diff --git a/arch/sparc/lib/U1copy_to_user.S b/arch/sparc/lib/U1copy_to_user.S index d1210ffb0b82..f4b970eeb485 100644 --- a/arch/sparc/lib/U1copy_to_user.S +++ b/arch/sparc/lib/U1copy_to_user.S | |||
| @@ -5,13 +5,9 @@ | |||
| 5 | 5 | ||
| 6 | #define EX_ST(x) \ | 6 | #define EX_ST(x) \ |
| 7 | 98: x; \ | 7 | 98: x; \ |
| 8 | .section .fixup; \ | ||
| 9 | .align 4; \ | ||
| 10 | 99: retl; \ | ||
| 11 | mov 1, %o0; \ | ||
| 12 | .section __ex_table,"a";\ | 8 | .section __ex_table,"a";\ |
| 13 | .align 4; \ | 9 | .align 4; \ |
| 14 | .word 98b, 99b; \ | 10 | .word 98b, __retl_one; \ |
| 15 | .text; \ | 11 | .text; \ |
| 16 | .align 4; | 12 | .align 4; |
| 17 | 13 | ||
| @@ -27,7 +23,7 @@ | |||
| 27 | #define PREAMBLE \ | 23 | #define PREAMBLE \ |
| 28 | rd %asi, %g1; \ | 24 | rd %asi, %g1; \ |
| 29 | cmp %g1, ASI_AIUS; \ | 25 | cmp %g1, ASI_AIUS; \ |
| 30 | bne,pn %icc, memcpy_user_stub; \ | 26 | bne,pn %icc, ___copy_in_user; \ |
| 31 | nop; \ | 27 | nop; \ |
| 32 | 28 | ||
| 33 | #include "U1memcpy.S" | 29 | #include "U1memcpy.S" |
diff --git a/arch/sparc/lib/U3copy_from_user.S b/arch/sparc/lib/U3copy_from_user.S index f5bfc8d9d216..b1acd1331c33 100644 --- a/arch/sparc/lib/U3copy_from_user.S +++ b/arch/sparc/lib/U3copy_from_user.S | |||
| @@ -5,13 +5,9 @@ | |||
| 5 | 5 | ||
| 6 | #define EX_LD(x) \ | 6 | #define EX_LD(x) \ |
| 7 | 98: x; \ | 7 | 98: x; \ |
| 8 | .section .fixup; \ | ||
| 9 | .align 4; \ | ||
| 10 | 99: retl; \ | ||
| 11 | mov 1, %o0; \ | ||
| 12 | .section __ex_table,"a";\ | 8 | .section __ex_table,"a";\ |
| 13 | .align 4; \ | 9 | .align 4; \ |
| 14 | .word 98b, 99b; \ | 10 | .word 98b, __retl_one; \ |
| 15 | .text; \ | 11 | .text; \ |
| 16 | .align 4; | 12 | .align 4; |
| 17 | 13 | ||
diff --git a/arch/sparc/lib/U3copy_to_user.S b/arch/sparc/lib/U3copy_to_user.S index 2334f111bb0c..ef1e493afdfa 100644 --- a/arch/sparc/lib/U3copy_to_user.S +++ b/arch/sparc/lib/U3copy_to_user.S | |||
| @@ -5,13 +5,9 @@ | |||
| 5 | 5 | ||
| 6 | #define EX_ST(x) \ | 6 | #define EX_ST(x) \ |
| 7 | 98: x; \ | 7 | 98: x; \ |
| 8 | .section .fixup; \ | ||
| 9 | .align 4; \ | ||
| 10 | 99: retl; \ | ||
| 11 | mov 1, %o0; \ | ||
| 12 | .section __ex_table,"a";\ | 8 | .section __ex_table,"a";\ |
| 13 | .align 4; \ | 9 | .align 4; \ |
| 14 | .word 98b, 99b; \ | 10 | .word 98b, __retl_one; \ |
| 15 | .text; \ | 11 | .text; \ |
| 16 | .align 4; | 12 | .align 4; |
| 17 | 13 | ||
| @@ -27,7 +23,7 @@ | |||
| 27 | #define PREAMBLE \ | 23 | #define PREAMBLE \ |
| 28 | rd %asi, %g1; \ | 24 | rd %asi, %g1; \ |
| 29 | cmp %g1, ASI_AIUS; \ | 25 | cmp %g1, ASI_AIUS; \ |
| 30 | bne,pn %icc, memcpy_user_stub; \ | 26 | bne,pn %icc, ___copy_in_user; \ |
| 31 | nop; \ | 27 | nop; \ |
| 32 | 28 | ||
| 33 | #include "U3memcpy.S" | 29 | #include "U3memcpy.S" |
diff --git a/arch/sparc/lib/bzero.S b/arch/sparc/lib/bzero.S index c7bbae8c590f..b6557297440f 100644 --- a/arch/sparc/lib/bzero.S +++ b/arch/sparc/lib/bzero.S | |||
| @@ -88,13 +88,9 @@ __bzero_done: | |||
| 88 | 88 | ||
| 89 | #define EX_ST(x,y) \ | 89 | #define EX_ST(x,y) \ |
| 90 | 98: x,y; \ | 90 | 98: x,y; \ |
| 91 | .section .fixup; \ | ||
| 92 | .align 4; \ | ||
| 93 | 99: retl; \ | ||
| 94 | mov %o1, %o0; \ | ||
| 95 | .section __ex_table,"a";\ | 91 | .section __ex_table,"a";\ |
| 96 | .align 4; \ | 92 | .align 4; \ |
| 97 | .word 98b, 99b; \ | 93 | .word 98b, __retl_o1; \ |
| 98 | .text; \ | 94 | .text; \ |
| 99 | .align 4; | 95 | .align 4; |
| 100 | 96 | ||
diff --git a/arch/sparc/lib/copy_in_user.S b/arch/sparc/lib/copy_in_user.S index 650af3f21f78..302c0e60dc2c 100644 --- a/arch/sparc/lib/copy_in_user.S +++ b/arch/sparc/lib/copy_in_user.S | |||
| @@ -3,19 +3,16 @@ | |||
| 3 | * Copyright (C) 1999, 2000, 2004 David S. Miller (davem@redhat.com) | 3 | * Copyright (C) 1999, 2000, 2004 David S. Miller (davem@redhat.com) |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include <linux/linkage.h> | ||
| 6 | #include <asm/asi.h> | 7 | #include <asm/asi.h> |
| 7 | 8 | ||
| 8 | #define XCC xcc | 9 | #define XCC xcc |
| 9 | 10 | ||
| 10 | #define EX(x,y) \ | 11 | #define EX(x,y) \ |
| 11 | 98: x,y; \ | 12 | 98: x,y; \ |
| 12 | .section .fixup; \ | ||
| 13 | .align 4; \ | ||
| 14 | 99: retl; \ | ||
| 15 | mov 1, %o0; \ | ||
| 16 | .section __ex_table,"a";\ | 13 | .section __ex_table,"a";\ |
| 17 | .align 4; \ | 14 | .align 4; \ |
| 18 | .word 98b, 99b; \ | 15 | .word 98b, __retl_one; \ |
| 19 | .text; \ | 16 | .text; \ |
| 20 | .align 4; | 17 | .align 4; |
| 21 | 18 | ||
| @@ -31,18 +28,7 @@ | |||
| 31 | * to copy register windows around during thread cloning. | 28 | * to copy register windows around during thread cloning. |
| 32 | */ | 29 | */ |
| 33 | 30 | ||
| 34 | .globl ___copy_in_user | 31 | ENTRY(___copy_in_user) /* %o0=dst, %o1=src, %o2=len */ |
| 35 | .type ___copy_in_user,#function | ||
| 36 | ___copy_in_user: /* %o0=dst, %o1=src, %o2=len */ | ||
| 37 | /* Writing to %asi is _expensive_ so we hardcode it. | ||
| 38 | * Reading %asi to check for KERNEL_DS is comparatively | ||
| 39 | * cheap. | ||
| 40 | */ | ||
| 41 | rd %asi, %g1 | ||
| 42 | cmp %g1, ASI_AIUS | ||
| 43 | bne,pn %icc, memcpy_user_stub | ||
| 44 | nop | ||
| 45 | |||
| 46 | cmp %o2, 0 | 32 | cmp %o2, 0 |
| 47 | be,pn %XCC, 85f | 33 | be,pn %XCC, 85f |
| 48 | or %o0, %o1, %o3 | 34 | or %o0, %o1, %o3 |
| @@ -53,22 +39,24 @@ ___copy_in_user: /* %o0=dst, %o1=src, %o2=len */ | |||
| 53 | /* 16 < len <= 64 */ | 39 | /* 16 < len <= 64 */ |
| 54 | andcc %o3, 0x7, %g0 | 40 | andcc %o3, 0x7, %g0 |
| 55 | bne,pn %XCC, 90f | 41 | bne,pn %XCC, 90f |
| 56 | sub %o0, %o1, %o3 | 42 | nop |
| 57 | 43 | ||
| 58 | andn %o2, 0x7, %o4 | 44 | andn %o2, 0x7, %o4 |
| 59 | and %o2, 0x7, %o2 | 45 | and %o2, 0x7, %o2 |
| 60 | 1: subcc %o4, 0x8, %o4 | 46 | 1: subcc %o4, 0x8, %o4 |
| 61 | EX(ldxa [%o1] %asi, %o5) | 47 | EX(ldxa [%o1] %asi, %o5) |
| 62 | EX(stxa %o5, [%o1 + %o3] ASI_AIUS) | 48 | EX(stxa %o5, [%o0] %asi) |
| 49 | add %o1, 0x8, %o1 | ||
| 63 | bgu,pt %XCC, 1b | 50 | bgu,pt %XCC, 1b |
| 64 | add %o1, 0x8, %o1 | 51 | add %o0, 0x8, %o0 |
| 65 | andcc %o2, 0x4, %g0 | 52 | andcc %o2, 0x4, %g0 |
| 66 | be,pt %XCC, 1f | 53 | be,pt %XCC, 1f |
| 67 | nop | 54 | nop |
| 68 | sub %o2, 0x4, %o2 | 55 | sub %o2, 0x4, %o2 |
| 69 | EX(lduwa [%o1] %asi, %o5) | 56 | EX(lduwa [%o1] %asi, %o5) |
| 70 | EX(stwa %o5, [%o1 + %o3] ASI_AIUS) | 57 | EX(stwa %o5, [%o0] %asi) |
| 71 | add %o1, 0x4, %o1 | 58 | add %o1, 0x4, %o1 |
| 59 | add %o0, 0x4, %o0 | ||
| 72 | 1: cmp %o2, 0 | 60 | 1: cmp %o2, 0 |
| 73 | be,pt %XCC, 85f | 61 | be,pt %XCC, 85f |
| 74 | nop | 62 | nop |
| @@ -78,14 +66,15 @@ ___copy_in_user: /* %o0=dst, %o1=src, %o2=len */ | |||
| 78 | 80: /* 0 < len <= 16 */ | 66 | 80: /* 0 < len <= 16 */ |
| 79 | andcc %o3, 0x3, %g0 | 67 | andcc %o3, 0x3, %g0 |
| 80 | bne,pn %XCC, 90f | 68 | bne,pn %XCC, 90f |
| 81 | sub %o0, %o1, %o3 | 69 | nop |
| 82 | 70 | ||
| 83 | 82: | 71 | 82: |
| 84 | subcc %o2, 4, %o2 | 72 | subcc %o2, 4, %o2 |
| 85 | EX(lduwa [%o1] %asi, %g1) | 73 | EX(lduwa [%o1] %asi, %g1) |
| 86 | EX(stwa %g1, [%o1 + %o3] ASI_AIUS) | 74 | EX(stwa %g1, [%o0] %asi) |
| 75 | add %o1, 4, %o1 | ||
| 87 | bgu,pt %XCC, 82b | 76 | bgu,pt %XCC, 82b |
| 88 | add %o1, 4, %o1 | 77 | add %o0, 4, %o0 |
| 89 | 78 | ||
| 90 | 85: retl | 79 | 85: retl |
| 91 | clr %o0 | 80 | clr %o0 |
| @@ -94,26 +83,10 @@ ___copy_in_user: /* %o0=dst, %o1=src, %o2=len */ | |||
| 94 | 90: | 83 | 90: |
| 95 | subcc %o2, 1, %o2 | 84 | subcc %o2, 1, %o2 |
| 96 | EX(lduba [%o1] %asi, %g1) | 85 | EX(lduba [%o1] %asi, %g1) |
| 97 | EX(stba %g1, [%o1 + %o3] ASI_AIUS) | 86 | EX(stba %g1, [%o0] %asi) |
| 87 | add %o1, 1, %o1 | ||
| 98 | bgu,pt %XCC, 90b | 88 | bgu,pt %XCC, 90b |
| 99 | add %o1, 1, %o1 | 89 | add %o0, 1, %o0 |
| 100 | retl | 90 | retl |
| 101 | clr %o0 | 91 | clr %o0 |
| 102 | 92 | ENDPROC(___copy_in_user) | |
| 103 | .size ___copy_in_user, .-___copy_in_user | ||
| 104 | |||
| 105 | /* Act like copy_{to,in}_user(), ie. return zero instead | ||
| 106 | * of original destination pointer. This is invoked when | ||
| 107 | * copy_{to,in}_user() finds that %asi is kernel space. | ||
| 108 | */ | ||
| 109 | .globl memcpy_user_stub | ||
| 110 | .type memcpy_user_stub,#function | ||
| 111 | memcpy_user_stub: | ||
| 112 | save %sp, -192, %sp | ||
| 113 | mov %i0, %o0 | ||
| 114 | mov %i1, %o1 | ||
| 115 | call memcpy | ||
| 116 | mov %i2, %o2 | ||
| 117 | ret | ||
| 118 | restore %g0, %g0, %o0 | ||
| 119 | .size memcpy_user_stub, .-memcpy_user_stub | ||
diff --git a/arch/sparc/mm/fault_64.c b/arch/sparc/mm/fault_64.c index a9e474bf6385..4ab8993b0863 100644 --- a/arch/sparc/mm/fault_64.c +++ b/arch/sparc/mm/fault_64.c | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | #include <linux/interrupt.h> | 19 | #include <linux/interrupt.h> |
| 20 | #include <linux/kprobes.h> | 20 | #include <linux/kprobes.h> |
| 21 | #include <linux/kdebug.h> | 21 | #include <linux/kdebug.h> |
| 22 | #include <linux/percpu.h> | ||
| 22 | 23 | ||
| 23 | #include <asm/page.h> | 24 | #include <asm/page.h> |
| 24 | #include <asm/pgtable.h> | 25 | #include <asm/pgtable.h> |
| @@ -224,6 +225,30 @@ cannot_handle: | |||
| 224 | unhandled_fault (address, current, regs); | 225 | unhandled_fault (address, current, regs); |
| 225 | } | 226 | } |
| 226 | 227 | ||
| 228 | static void noinline bogus_32bit_fault_tpc(struct pt_regs *regs) | ||
| 229 | { | ||
| 230 | static int times; | ||
| 231 | |||
| 232 | if (times++ < 10) | ||
| 233 | printk(KERN_ERR "FAULT[%s:%d]: 32-bit process reports " | ||
| 234 | "64-bit TPC [%lx]\n", | ||
| 235 | current->comm, current->pid, | ||
| 236 | regs->tpc); | ||
| 237 | show_regs(regs); | ||
| 238 | } | ||
| 239 | |||
| 240 | static void noinline bogus_32bit_fault_address(struct pt_regs *regs, | ||
| 241 | unsigned long addr) | ||
| 242 | { | ||
| 243 | static int times; | ||
| 244 | |||
| 245 | if (times++ < 10) | ||
| 246 | printk(KERN_ERR "FAULT[%s:%d]: 32-bit process " | ||
| 247 | "reports 64-bit fault address [%lx]\n", | ||
| 248 | current->comm, current->pid, addr); | ||
| 249 | show_regs(regs); | ||
| 250 | } | ||
| 251 | |||
| 227 | asmlinkage void __kprobes do_sparc64_fault(struct pt_regs *regs) | 252 | asmlinkage void __kprobes do_sparc64_fault(struct pt_regs *regs) |
| 228 | { | 253 | { |
| 229 | struct mm_struct *mm = current->mm; | 254 | struct mm_struct *mm = current->mm; |
| @@ -244,6 +269,19 @@ asmlinkage void __kprobes do_sparc64_fault(struct pt_regs *regs) | |||
| 244 | (fault_code & FAULT_CODE_DTLB)) | 269 | (fault_code & FAULT_CODE_DTLB)) |
| 245 | BUG(); | 270 | BUG(); |
| 246 | 271 | ||
| 272 | if (test_thread_flag(TIF_32BIT)) { | ||
| 273 | if (!(regs->tstate & TSTATE_PRIV)) { | ||
| 274 | if (unlikely((regs->tpc >> 32) != 0)) { | ||
| 275 | bogus_32bit_fault_tpc(regs); | ||
| 276 | goto intr_or_no_mm; | ||
| 277 | } | ||
| 278 | } | ||
| 279 | if (unlikely((address >> 32) != 0)) { | ||
| 280 | bogus_32bit_fault_address(regs, address); | ||
| 281 | goto intr_or_no_mm; | ||
| 282 | } | ||
| 283 | } | ||
| 284 | |||
| 247 | if (regs->tstate & TSTATE_PRIV) { | 285 | if (regs->tstate & TSTATE_PRIV) { |
| 248 | unsigned long tpc = regs->tpc; | 286 | unsigned long tpc = regs->tpc; |
| 249 | 287 | ||
| @@ -264,12 +302,6 @@ asmlinkage void __kprobes do_sparc64_fault(struct pt_regs *regs) | |||
| 264 | if (in_atomic() || !mm) | 302 | if (in_atomic() || !mm) |
| 265 | goto intr_or_no_mm; | 303 | goto intr_or_no_mm; |
| 266 | 304 | ||
| 267 | if (test_thread_flag(TIF_32BIT)) { | ||
| 268 | if (!(regs->tstate & TSTATE_PRIV)) | ||
| 269 | regs->tpc &= 0xffffffff; | ||
| 270 | address &= 0xffffffff; | ||
| 271 | } | ||
| 272 | |||
| 273 | if (!down_read_trylock(&mm->mmap_sem)) { | 305 | if (!down_read_trylock(&mm->mmap_sem)) { |
| 274 | if ((regs->tstate & TSTATE_PRIV) && | 306 | if ((regs->tstate & TSTATE_PRIV) && |
| 275 | !search_exception_tables(regs->tpc)) { | 307 | !search_exception_tables(regs->tpc)) { |
diff --git a/arch/sparc/oprofile/init.c b/arch/sparc/oprofile/init.c index d6e170c074fc..d172f86439b1 100644 --- a/arch/sparc/oprofile/init.c +++ b/arch/sparc/oprofile/init.c | |||
| @@ -13,217 +13,57 @@ | |||
| 13 | #include <linux/init.h> | 13 | #include <linux/init.h> |
| 14 | 14 | ||
| 15 | #ifdef CONFIG_SPARC64 | 15 | #ifdef CONFIG_SPARC64 |
| 16 | #include <asm/hypervisor.h> | 16 | #include <linux/notifier.h> |
| 17 | #include <asm/spitfire.h> | 17 | #include <linux/rcupdate.h> |
| 18 | #include <asm/cpudata.h> | 18 | #include <linux/kdebug.h> |
| 19 | #include <asm/irq.h> | 19 | #include <asm/nmi.h> |
| 20 | 20 | ||
| 21 | static int nmi_enabled; | 21 | static int profile_timer_exceptions_notify(struct notifier_block *self, |
| 22 | 22 | unsigned long val, void *data) | |
| 23 | struct pcr_ops { | ||
| 24 | u64 (*read)(void); | ||
| 25 | void (*write)(u64); | ||
| 26 | }; | ||
| 27 | static const struct pcr_ops *pcr_ops; | ||
| 28 | |||
| 29 | static u64 direct_pcr_read(void) | ||
| 30 | { | ||
| 31 | u64 val; | ||
| 32 | |||
| 33 | read_pcr(val); | ||
| 34 | return val; | ||
| 35 | } | ||
| 36 | |||
| 37 | static void direct_pcr_write(u64 val) | ||
| 38 | { | ||
| 39 | write_pcr(val); | ||
| 40 | } | ||
| 41 | |||
| 42 | static const struct pcr_ops direct_pcr_ops = { | ||
| 43 | .read = direct_pcr_read, | ||
| 44 | .write = direct_pcr_write, | ||
| 45 | }; | ||
| 46 | |||
| 47 | static void n2_pcr_write(u64 val) | ||
| 48 | { | 23 | { |
| 49 | unsigned long ret; | 24 | struct die_args *args = (struct die_args *)data; |
| 50 | 25 | int ret = NOTIFY_DONE; | |
| 51 | ret = sun4v_niagara2_setperf(HV_N2_PERF_SPARC_CTL, val); | ||
| 52 | if (val != HV_EOK) | ||
| 53 | write_pcr(val); | ||
| 54 | } | ||
| 55 | |||
| 56 | static const struct pcr_ops n2_pcr_ops = { | ||
| 57 | .read = direct_pcr_read, | ||
| 58 | .write = n2_pcr_write, | ||
| 59 | }; | ||
| 60 | |||
| 61 | /* In order to commonize as much of the implementation as | ||
| 62 | * possible, we use PICH as our counter. Mostly this is | ||
| 63 | * to accomodate Niagara-1 which can only count insn cycles | ||
| 64 | * in PICH. | ||
| 65 | */ | ||
| 66 | static u64 picl_value(void) | ||
| 67 | { | ||
| 68 | u32 delta = local_cpu_data().clock_tick / HZ; | ||
| 69 | |||
| 70 | return ((u64)((0 - delta) & 0xffffffff)) << 32; | ||
| 71 | } | ||
| 72 | |||
| 73 | #define PCR_PIC_PRIV 0x00000001 /* PIC access is privileged */ | ||
| 74 | #define PCR_STRACE 0x00000002 /* Trace supervisor events */ | ||
| 75 | #define PCR_UTRACE 0x00000004 /* Trace user events */ | ||
| 76 | #define PCR_N2_HTRACE 0x00000008 /* Trace hypervisor events */ | ||
| 77 | #define PCR_N2_TOE_OV0 0x00000010 /* Trap if PIC 0 overflows */ | ||
| 78 | #define PCR_N2_TOE_OV1 0x00000020 /* Trap if PIC 1 overflows */ | ||
| 79 | #define PCR_N2_MASK0 0x00003fc0 | ||
| 80 | #define PCR_N2_MASK0_SHIFT 6 | ||
| 81 | #define PCR_N2_SL0 0x0003c000 | ||
| 82 | #define PCR_N2_SL0_SHIFT 14 | ||
| 83 | #define PCR_N2_OV0 0x00040000 | ||
| 84 | #define PCR_N2_MASK1 0x07f80000 | ||
| 85 | #define PCR_N2_MASK1_SHIFT 19 | ||
| 86 | #define PCR_N2_SL1 0x78000000 | ||
| 87 | #define PCR_N2_SL1_SHIFT 27 | ||
| 88 | #define PCR_N2_OV1 0x80000000 | ||
| 89 | |||
| 90 | #define PCR_SUN4U_ENABLE (PCR_PIC_PRIV | PCR_STRACE | PCR_UTRACE) | ||
| 91 | #define PCR_N2_ENABLE (PCR_PIC_PRIV | PCR_STRACE | PCR_UTRACE | \ | ||
| 92 | PCR_N2_TOE_OV1 | \ | ||
| 93 | (2 << PCR_N2_SL1_SHIFT) | \ | ||
| 94 | (0xff << PCR_N2_MASK1_SHIFT)) | ||
| 95 | |||
| 96 | static u64 pcr_enable = PCR_SUN4U_ENABLE; | ||
| 97 | |||
| 98 | static void nmi_handler(struct pt_regs *regs) | ||
| 99 | { | ||
| 100 | pcr_ops->write(PCR_PIC_PRIV); | ||
| 101 | |||
| 102 | if (nmi_enabled) { | ||
| 103 | oprofile_add_sample(regs, 0); | ||
| 104 | |||
| 105 | write_pic(picl_value()); | ||
| 106 | pcr_ops->write(pcr_enable); | ||
| 107 | } | ||
| 108 | } | ||
| 109 | |||
| 110 | /* We count "clock cycle" events in the lower 32-bit PIC. | ||
| 111 | * Then configure it such that it overflows every HZ, and thus | ||
| 112 | * generates a level 15 interrupt at that frequency. | ||
| 113 | */ | ||
| 114 | static void cpu_nmi_start(void *_unused) | ||
| 115 | { | ||
| 116 | pcr_ops->write(PCR_PIC_PRIV); | ||
| 117 | write_pic(picl_value()); | ||
| 118 | |||
| 119 | pcr_ops->write(pcr_enable); | ||
| 120 | } | ||
| 121 | 26 | ||
| 122 | static void cpu_nmi_stop(void *_unused) | 27 | switch (val) { |
| 123 | { | 28 | case DIE_NMI: |
| 124 | pcr_ops->write(PCR_PIC_PRIV); | 29 | oprofile_add_sample(args->regs, 0); |
| 125 | } | 30 | ret = NOTIFY_STOP; |
| 126 | 31 | break; | |
| 127 | static int nmi_start(void) | 32 | default: |
| 128 | { | 33 | break; |
| 129 | int err = register_perfctr_intr(nmi_handler); | ||
| 130 | |||
| 131 | if (!err) { | ||
| 132 | nmi_enabled = 1; | ||
| 133 | wmb(); | ||
| 134 | err = on_each_cpu(cpu_nmi_start, NULL, 1); | ||
| 135 | if (err) { | ||
| 136 | nmi_enabled = 0; | ||
| 137 | wmb(); | ||
| 138 | on_each_cpu(cpu_nmi_stop, NULL, 1); | ||
| 139 | release_perfctr_intr(nmi_handler); | ||
| 140 | } | ||
| 141 | } | 34 | } |
| 142 | 35 | return ret; | |
| 143 | return err; | ||
| 144 | } | ||
| 145 | |||
| 146 | static void nmi_stop(void) | ||
| 147 | { | ||
| 148 | nmi_enabled = 0; | ||
| 149 | wmb(); | ||
| 150 | |||
| 151 | on_each_cpu(cpu_nmi_stop, NULL, 1); | ||
| 152 | release_perfctr_intr(nmi_handler); | ||
| 153 | synchronize_sched(); | ||
| 154 | } | 36 | } |
| 155 | 37 | ||
| 156 | static unsigned long perf_hsvc_group; | 38 | static struct notifier_block profile_timer_exceptions_nb = { |
| 157 | static unsigned long perf_hsvc_major; | 39 | .notifier_call = profile_timer_exceptions_notify, |
| 158 | static unsigned long perf_hsvc_minor; | 40 | }; |
| 159 | 41 | ||
| 160 | static int __init register_perf_hsvc(void) | 42 | static int timer_start(void) |
| 161 | { | 43 | { |
| 162 | if (tlb_type == hypervisor) { | 44 | if (register_die_notifier(&profile_timer_exceptions_nb)) |
| 163 | switch (sun4v_chip_type) { | 45 | return 1; |
| 164 | case SUN4V_CHIP_NIAGARA1: | 46 | nmi_adjust_hz(HZ); |
| 165 | perf_hsvc_group = HV_GRP_NIAG_PERF; | ||
| 166 | break; | ||
| 167 | |||
| 168 | case SUN4V_CHIP_NIAGARA2: | ||
| 169 | perf_hsvc_group = HV_GRP_N2_CPU; | ||
| 170 | break; | ||
| 171 | |||
| 172 | default: | ||
| 173 | return -ENODEV; | ||
| 174 | } | ||
| 175 | |||
| 176 | |||
| 177 | perf_hsvc_major = 1; | ||
| 178 | perf_hsvc_minor = 0; | ||
| 179 | if (sun4v_hvapi_register(perf_hsvc_group, | ||
| 180 | perf_hsvc_major, | ||
| 181 | &perf_hsvc_minor)) { | ||
| 182 | printk("perfmon: Could not register N2 hvapi.\n"); | ||
| 183 | return -ENODEV; | ||
| 184 | } | ||
| 185 | } | ||
| 186 | return 0; | 47 | return 0; |
| 187 | } | 48 | } |
| 188 | 49 | ||
| 189 | static void unregister_perf_hsvc(void) | 50 | |
| 51 | static void timer_stop(void) | ||
| 190 | { | 52 | { |
| 191 | if (tlb_type != hypervisor) | 53 | nmi_adjust_hz(1); |
| 192 | return; | 54 | unregister_die_notifier(&profile_timer_exceptions_nb); |
| 193 | sun4v_hvapi_unregister(perf_hsvc_group); | 55 | synchronize_sched(); /* Allow already-started NMIs to complete. */ |
| 194 | } | 56 | } |
| 195 | 57 | ||
| 196 | static int oprofile_nmi_init(struct oprofile_operations *ops) | 58 | static int op_nmi_timer_init(struct oprofile_operations *ops) |
| 197 | { | 59 | { |
| 198 | int err = register_perf_hsvc(); | 60 | if (!nmi_usable) |
| 199 | |||
| 200 | if (err) | ||
| 201 | return err; | ||
| 202 | |||
| 203 | switch (tlb_type) { | ||
| 204 | case hypervisor: | ||
| 205 | pcr_ops = &n2_pcr_ops; | ||
| 206 | pcr_enable = PCR_N2_ENABLE; | ||
| 207 | break; | ||
| 208 | |||
| 209 | case cheetah: | ||
| 210 | case cheetah_plus: | ||
| 211 | pcr_ops = &direct_pcr_ops; | ||
| 212 | break; | ||
| 213 | |||
| 214 | default: | ||
| 215 | return -ENODEV; | 61 | return -ENODEV; |
| 216 | } | ||
| 217 | 62 | ||
| 218 | ops->create_files = NULL; | 63 | ops->start = timer_start; |
| 219 | ops->setup = NULL; | 64 | ops->stop = timer_stop; |
| 220 | ops->shutdown = NULL; | ||
| 221 | ops->start = nmi_start; | ||
| 222 | ops->stop = nmi_stop; | ||
| 223 | ops->cpu_type = "timer"; | 65 | ops->cpu_type = "timer"; |
| 224 | 66 | printk(KERN_INFO "oprofile: Using perfctr NMI timer interrupt.\n"); | |
| 225 | printk(KERN_INFO "oprofile: Using perfctr based NMI timer interrupt.\n"); | ||
| 226 | |||
| 227 | return 0; | 67 | return 0; |
| 228 | } | 68 | } |
| 229 | #endif | 69 | #endif |
| @@ -233,7 +73,7 @@ int __init oprofile_arch_init(struct oprofile_operations *ops) | |||
| 233 | int ret = -ENODEV; | 73 | int ret = -ENODEV; |
| 234 | 74 | ||
| 235 | #ifdef CONFIG_SPARC64 | 75 | #ifdef CONFIG_SPARC64 |
| 236 | ret = oprofile_nmi_init(ops); | 76 | ret = op_nmi_timer_init(ops); |
| 237 | if (!ret) | 77 | if (!ret) |
| 238 | return ret; | 78 | return ret; |
| 239 | #endif | 79 | #endif |
| @@ -241,10 +81,6 @@ int __init oprofile_arch_init(struct oprofile_operations *ops) | |||
| 241 | return ret; | 81 | return ret; |
| 242 | } | 82 | } |
| 243 | 83 | ||
| 244 | |||
| 245 | void oprofile_arch_exit(void) | 84 | void oprofile_arch_exit(void) |
| 246 | { | 85 | { |
| 247 | #ifdef CONFIG_SPARC64 | ||
| 248 | unregister_perf_hsvc(); | ||
| 249 | #endif | ||
| 250 | } | 86 | } |
diff --git a/arch/x86/ia32/ia32entry.S b/arch/x86/ia32/ia32entry.S index 256b00b61892..5a0d76dc56a4 100644 --- a/arch/x86/ia32/ia32entry.S +++ b/arch/x86/ia32/ia32entry.S | |||
| @@ -418,9 +418,9 @@ ENTRY(ia32_syscall) | |||
| 418 | orl $TS_COMPAT,TI_status(%r10) | 418 | orl $TS_COMPAT,TI_status(%r10) |
| 419 | testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags(%r10) | 419 | testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags(%r10) |
| 420 | jnz ia32_tracesys | 420 | jnz ia32_tracesys |
| 421 | ia32_do_syscall: | ||
| 422 | cmpl $(IA32_NR_syscalls-1),%eax | 421 | cmpl $(IA32_NR_syscalls-1),%eax |
| 423 | ja int_ret_from_sys_call /* ia32_tracesys has set RAX(%rsp) */ | 422 | ja ia32_badsys |
| 423 | ia32_do_call: | ||
| 424 | IA32_ARG_FIXUP | 424 | IA32_ARG_FIXUP |
| 425 | call *ia32_sys_call_table(,%rax,8) # xxx: rip relative | 425 | call *ia32_sys_call_table(,%rax,8) # xxx: rip relative |
| 426 | ia32_sysret: | 426 | ia32_sysret: |
| @@ -435,7 +435,9 @@ ia32_tracesys: | |||
| 435 | call syscall_trace_enter | 435 | call syscall_trace_enter |
| 436 | LOAD_ARGS32 ARGOFFSET /* reload args from stack in case ptrace changed it */ | 436 | LOAD_ARGS32 ARGOFFSET /* reload args from stack in case ptrace changed it */ |
| 437 | RESTORE_REST | 437 | RESTORE_REST |
| 438 | jmp ia32_do_syscall | 438 | cmpl $(IA32_NR_syscalls-1),%eax |
| 439 | ja int_ret_from_sys_call /* ia32_tracesys has set RAX(%rsp) */ | ||
| 440 | jmp ia32_do_call | ||
| 439 | END(ia32_syscall) | 441 | END(ia32_syscall) |
| 440 | 442 | ||
| 441 | ia32_badsys: | 443 | ia32_badsys: |
diff --git a/arch/x86/include/asm/paravirt.h b/arch/x86/include/asm/paravirt.h index ba3e2ff6aedc..c09a14127584 100644 --- a/arch/x86/include/asm/paravirt.h +++ b/arch/x86/include/asm/paravirt.h | |||
| @@ -1402,6 +1402,7 @@ static inline int __raw_spin_is_contended(struct raw_spinlock *lock) | |||
| 1402 | { | 1402 | { |
| 1403 | return PVOP_CALL1(int, pv_lock_ops.spin_is_contended, lock); | 1403 | return PVOP_CALL1(int, pv_lock_ops.spin_is_contended, lock); |
| 1404 | } | 1404 | } |
| 1405 | #define __raw_spin_is_contended __raw_spin_is_contended | ||
| 1405 | 1406 | ||
| 1406 | static __always_inline void __raw_spin_lock(struct raw_spinlock *lock) | 1407 | static __always_inline void __raw_spin_lock(struct raw_spinlock *lock) |
| 1407 | { | 1408 | { |
diff --git a/arch/x86/include/asm/spinlock.h b/arch/x86/include/asm/spinlock.h index d17c91981da2..8247e94ac6b1 100644 --- a/arch/x86/include/asm/spinlock.h +++ b/arch/x86/include/asm/spinlock.h | |||
| @@ -245,6 +245,7 @@ static inline int __raw_spin_is_contended(raw_spinlock_t *lock) | |||
| 245 | { | 245 | { |
| 246 | return __ticket_spin_is_contended(lock); | 246 | return __ticket_spin_is_contended(lock); |
| 247 | } | 247 | } |
| 248 | #define __raw_spin_is_contended __raw_spin_is_contended | ||
| 248 | 249 | ||
| 249 | static __always_inline void __raw_spin_lock(raw_spinlock_t *lock) | 250 | static __always_inline void __raw_spin_lock(raw_spinlock_t *lock) |
| 250 | { | 251 | { |
diff --git a/arch/x86/kernel/acpi/sleep.c b/arch/x86/kernel/acpi/sleep.c index 707c1f6f95fa..a60c1f3bcb87 100644 --- a/arch/x86/kernel/acpi/sleep.c +++ b/arch/x86/kernel/acpi/sleep.c | |||
| @@ -156,11 +156,11 @@ static int __init acpi_sleep_setup(char *str) | |||
| 156 | #ifdef CONFIG_HIBERNATION | 156 | #ifdef CONFIG_HIBERNATION |
| 157 | if (strncmp(str, "s4_nohwsig", 10) == 0) | 157 | if (strncmp(str, "s4_nohwsig", 10) == 0) |
| 158 | acpi_no_s4_hw_signature(); | 158 | acpi_no_s4_hw_signature(); |
| 159 | if (strncmp(str, "s4_nonvs", 8) == 0) | ||
| 160 | acpi_s4_no_nvs(); | ||
| 159 | #endif | 161 | #endif |
| 160 | if (strncmp(str, "old_ordering", 12) == 0) | 162 | if (strncmp(str, "old_ordering", 12) == 0) |
| 161 | acpi_old_suspend_ordering(); | 163 | acpi_old_suspend_ordering(); |
| 162 | if (strncmp(str, "s4_nonvs", 8) == 0) | ||
| 163 | acpi_s4_no_nvs(); | ||
| 164 | str = strchr(str, ','); | 164 | str = strchr(str, ','); |
| 165 | if (str != NULL) | 165 | if (str != NULL) |
| 166 | str += strspn(str, ", \t"); | 166 | str += strspn(str, ", \t"); |
diff --git a/arch/x86/kernel/cpu/cpufreq/Kconfig b/arch/x86/kernel/cpu/cpufreq/Kconfig index efae3b22a0ff..65792c2cc462 100644 --- a/arch/x86/kernel/cpu/cpufreq/Kconfig +++ b/arch/x86/kernel/cpu/cpufreq/Kconfig | |||
| @@ -245,17 +245,6 @@ config X86_E_POWERSAVER | |||
| 245 | 245 | ||
| 246 | comment "shared options" | 246 | comment "shared options" |
| 247 | 247 | ||
| 248 | config X86_ACPI_CPUFREQ_PROC_INTF | ||
| 249 | bool "/proc/acpi/processor/../performance interface (deprecated)" | ||
| 250 | depends on PROC_FS | ||
| 251 | depends on X86_ACPI_CPUFREQ || X86_POWERNOW_K7_ACPI || X86_POWERNOW_K8_ACPI | ||
| 252 | help | ||
| 253 | This enables the deprecated /proc/acpi/processor/../performance | ||
| 254 | interface. While it is helpful for debugging, the generic, | ||
| 255 | cross-architecture cpufreq interfaces should be used. | ||
| 256 | |||
| 257 | If in doubt, say N. | ||
| 258 | |||
| 259 | config X86_SPEEDSTEP_LIB | 248 | config X86_SPEEDSTEP_LIB |
| 260 | tristate | 249 | tristate |
| 261 | default (X86_SPEEDSTEP_ICH || X86_SPEEDSTEP_SMI || X86_P4_CLOCKMOD) | 250 | default (X86_SPEEDSTEP_ICH || X86_SPEEDSTEP_SMI || X86_P4_CLOCKMOD) |
diff --git a/arch/x86/kernel/cpu/cpufreq/powernow-k8.c b/arch/x86/kernel/cpu/cpufreq/powernow-k8.c index 5c28b37dea11..fb039cd345d8 100644 --- a/arch/x86/kernel/cpu/cpufreq/powernow-k8.c +++ b/arch/x86/kernel/cpu/cpufreq/powernow-k8.c | |||
| @@ -939,10 +939,25 @@ static void powernow_k8_cpu_exit_acpi(struct powernow_k8_data *data) | |||
| 939 | free_cpumask_var(data->acpi_data.shared_cpu_map); | 939 | free_cpumask_var(data->acpi_data.shared_cpu_map); |
| 940 | } | 940 | } |
| 941 | 941 | ||
| 942 | static int get_transition_latency(struct powernow_k8_data *data) | ||
| 943 | { | ||
| 944 | int max_latency = 0; | ||
| 945 | int i; | ||
| 946 | for (i = 0; i < data->acpi_data.state_count; i++) { | ||
| 947 | int cur_latency = data->acpi_data.states[i].transition_latency | ||
| 948 | + data->acpi_data.states[i].bus_master_latency; | ||
| 949 | if (cur_latency > max_latency) | ||
| 950 | max_latency = cur_latency; | ||
| 951 | } | ||
| 952 | /* value in usecs, needs to be in nanoseconds */ | ||
| 953 | return 1000 * max_latency; | ||
| 954 | } | ||
| 955 | |||
| 942 | #else | 956 | #else |
| 943 | static int powernow_k8_cpu_init_acpi(struct powernow_k8_data *data) { return -ENODEV; } | 957 | static int powernow_k8_cpu_init_acpi(struct powernow_k8_data *data) { return -ENODEV; } |
| 944 | static void powernow_k8_cpu_exit_acpi(struct powernow_k8_data *data) { return; } | 958 | static void powernow_k8_cpu_exit_acpi(struct powernow_k8_data *data) { return; } |
| 945 | static void powernow_k8_acpi_pst_values(struct powernow_k8_data *data, unsigned int index) { return; } | 959 | static void powernow_k8_acpi_pst_values(struct powernow_k8_data *data, unsigned int index) { return; } |
| 960 | static int get_transition_latency(struct powernow_k8_data *data) { return 0; } | ||
| 946 | #endif /* CONFIG_X86_POWERNOW_K8_ACPI */ | 961 | #endif /* CONFIG_X86_POWERNOW_K8_ACPI */ |
| 947 | 962 | ||
| 948 | /* Take a frequency, and issue the fid/vid transition command */ | 963 | /* Take a frequency, and issue the fid/vid transition command */ |
| @@ -1173,7 +1188,13 @@ static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol) | |||
| 1173 | if (rc) { | 1188 | if (rc) { |
| 1174 | goto err_out; | 1189 | goto err_out; |
| 1175 | } | 1190 | } |
| 1176 | } | 1191 | /* Take a crude guess here. |
| 1192 | * That guess was in microseconds, so multiply with 1000 */ | ||
| 1193 | pol->cpuinfo.transition_latency = ( | ||
| 1194 | ((data->rvo + 8) * data->vstable * VST_UNITS_20US) + | ||
| 1195 | ((1 << data->irt) * 30)) * 1000; | ||
| 1196 | } else /* ACPI _PSS objects available */ | ||
| 1197 | pol->cpuinfo.transition_latency = get_transition_latency(data); | ||
| 1177 | 1198 | ||
| 1178 | /* only run on specific CPU from here on */ | 1199 | /* only run on specific CPU from here on */ |
| 1179 | oldmask = current->cpus_allowed; | 1200 | oldmask = current->cpus_allowed; |
| @@ -1204,11 +1225,6 @@ static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol) | |||
| 1204 | cpumask_copy(pol->cpus, &per_cpu(cpu_core_map, pol->cpu)); | 1225 | cpumask_copy(pol->cpus, &per_cpu(cpu_core_map, pol->cpu)); |
| 1205 | data->available_cores = pol->cpus; | 1226 | data->available_cores = pol->cpus; |
| 1206 | 1227 | ||
| 1207 | /* Take a crude guess here. | ||
| 1208 | * That guess was in microseconds, so multiply with 1000 */ | ||
| 1209 | pol->cpuinfo.transition_latency = (((data->rvo + 8) * data->vstable * VST_UNITS_20US) | ||
| 1210 | + (3 * (1 << data->irt) * 10)) * 1000; | ||
| 1211 | |||
| 1212 | if (cpu_family == CPU_HW_PSTATE) | 1228 | if (cpu_family == CPU_HW_PSTATE) |
| 1213 | pol->cur = find_khz_freq_from_pstate(data->powernow_table, data->currpstate); | 1229 | pol->cur = find_khz_freq_from_pstate(data->powernow_table, data->currpstate); |
| 1214 | else | 1230 | else |
diff --git a/arch/x86/kernel/ftrace.c b/arch/x86/kernel/ftrace.c index 1b43086b097a..231bdd3c5b1c 100644 --- a/arch/x86/kernel/ftrace.c +++ b/arch/x86/kernel/ftrace.c | |||
| @@ -488,20 +488,21 @@ void prepare_ftrace_return(unsigned long *parent, unsigned long self_addr) | |||
| 488 | * ignore such a protection. | 488 | * ignore such a protection. |
| 489 | */ | 489 | */ |
| 490 | asm volatile( | 490 | asm volatile( |
| 491 | "1: " _ASM_MOV " (%[parent_old]), %[old]\n" | 491 | "1: " _ASM_MOV " (%[parent]), %[old]\n" |
| 492 | "2: " _ASM_MOV " %[return_hooker], (%[parent_replaced])\n" | 492 | "2: " _ASM_MOV " %[return_hooker], (%[parent])\n" |
| 493 | " movl $0, %[faulted]\n" | 493 | " movl $0, %[faulted]\n" |
| 494 | "3:\n" | ||
| 494 | 495 | ||
| 495 | ".section .fixup, \"ax\"\n" | 496 | ".section .fixup, \"ax\"\n" |
| 496 | "3: movl $1, %[faulted]\n" | 497 | "4: movl $1, %[faulted]\n" |
| 498 | " jmp 3b\n" | ||
| 497 | ".previous\n" | 499 | ".previous\n" |
| 498 | 500 | ||
| 499 | _ASM_EXTABLE(1b, 3b) | 501 | _ASM_EXTABLE(1b, 4b) |
| 500 | _ASM_EXTABLE(2b, 3b) | 502 | _ASM_EXTABLE(2b, 4b) |
| 501 | 503 | ||
| 502 | : [parent_replaced] "=r" (parent), [old] "=r" (old), | 504 | : [old] "=r" (old), [faulted] "=r" (faulted) |
| 503 | [faulted] "=r" (faulted) | 505 | : [parent] "r" (parent), [return_hooker] "r" (return_hooker) |
| 504 | : [parent_old] "0" (parent), [return_hooker] "r" (return_hooker) | ||
| 505 | : "memory" | 506 | : "memory" |
| 506 | ); | 507 | ); |
| 507 | 508 | ||
diff --git a/arch/x86/mm/fault.c b/arch/x86/mm/fault.c index 90dfae511a41..c76ef1d701c9 100644 --- a/arch/x86/mm/fault.c +++ b/arch/x86/mm/fault.c | |||
| @@ -603,8 +603,6 @@ void __kprobes do_page_fault(struct pt_regs *regs, unsigned long error_code) | |||
| 603 | 603 | ||
| 604 | si_code = SEGV_MAPERR; | 604 | si_code = SEGV_MAPERR; |
| 605 | 605 | ||
| 606 | if (notify_page_fault(regs)) | ||
| 607 | return; | ||
| 608 | if (unlikely(kmmio_fault(regs, address))) | 606 | if (unlikely(kmmio_fault(regs, address))) |
| 609 | return; | 607 | return; |
| 610 | 608 | ||
| @@ -634,6 +632,9 @@ void __kprobes do_page_fault(struct pt_regs *regs, unsigned long error_code) | |||
| 634 | if (spurious_fault(address, error_code)) | 632 | if (spurious_fault(address, error_code)) |
| 635 | return; | 633 | return; |
| 636 | 634 | ||
| 635 | /* kprobes don't want to hook the spurious faults. */ | ||
| 636 | if (notify_page_fault(regs)) | ||
| 637 | return; | ||
| 637 | /* | 638 | /* |
| 638 | * Don't take the mm semaphore here. If we fixup a prefetch | 639 | * Don't take the mm semaphore here. If we fixup a prefetch |
| 639 | * fault we could otherwise deadlock. | 640 | * fault we could otherwise deadlock. |
| @@ -641,6 +642,9 @@ void __kprobes do_page_fault(struct pt_regs *regs, unsigned long error_code) | |||
| 641 | goto bad_area_nosemaphore; | 642 | goto bad_area_nosemaphore; |
| 642 | } | 643 | } |
| 643 | 644 | ||
| 645 | /* kprobes don't want to hook the spurious faults. */ | ||
| 646 | if (notify_page_fault(regs)) | ||
| 647 | return; | ||
| 644 | 648 | ||
| 645 | /* | 649 | /* |
| 646 | * It's safe to allow irq's after cr2 has been saved and the | 650 | * It's safe to allow irq's after cr2 has been saved and the |
