diff options
| -rw-r--r-- | arch/arm/include/asm/bitops.h | 16 | ||||
| -rw-r--r-- | arch/arm/include/asm/processor.h | 2 | ||||
| -rw-r--r-- | arch/arm/mach-omap1/io.c | 2 | ||||
| -rw-r--r-- | arch/arm/mm/alignment.c | 26 | ||||
| -rw-r--r-- | arch/arm/plat-omap/include/mach/omapfb.h | 4 | ||||
| -rw-r--r-- | arch/arm/plat-omap/sram.c | 8 | ||||
| -rw-r--r-- | arch/arm/plat-orion/pcie.c | 2 | ||||
| -rw-r--r-- | drivers/video/omap/omapfb_main.c | 2 |
8 files changed, 43 insertions, 19 deletions
diff --git a/arch/arm/include/asm/bitops.h b/arch/arm/include/asm/bitops.h index 9a1db20e032..63a481fbbed 100644 --- a/arch/arm/include/asm/bitops.h +++ b/arch/arm/include/asm/bitops.h | |||
| @@ -237,6 +237,7 @@ extern int _find_next_bit_be(const unsigned long *p, int size, int offset); | |||
| 237 | #if __LINUX_ARM_ARCH__ < 5 | 237 | #if __LINUX_ARM_ARCH__ < 5 |
| 238 | 238 | ||
| 239 | #include <asm-generic/bitops/ffz.h> | 239 | #include <asm-generic/bitops/ffz.h> |
| 240 | #include <asm-generic/bitops/__fls.h> | ||
| 240 | #include <asm-generic/bitops/__ffs.h> | 241 | #include <asm-generic/bitops/__ffs.h> |
| 241 | #include <asm-generic/bitops/fls.h> | 242 | #include <asm-generic/bitops/fls.h> |
| 242 | #include <asm-generic/bitops/ffs.h> | 243 | #include <asm-generic/bitops/ffs.h> |
| @@ -277,16 +278,19 @@ static inline int constant_fls(int x) | |||
| 277 | * the clz instruction for much better code efficiency. | 278 | * the clz instruction for much better code efficiency. |
| 278 | */ | 279 | */ |
| 279 | 280 | ||
| 280 | #define __fls(x) \ | ||
| 281 | ( __builtin_constant_p(x) ? constant_fls(x) : \ | ||
| 282 | ({ int __r; asm("clz\t%0, %1" : "=r"(__r) : "r"(x) : "cc"); 32-__r; }) ) | ||
| 283 | |||
| 284 | /* Implement fls() in C so that 64-bit args are suitably truncated */ | ||
| 285 | static inline int fls(int x) | 281 | static inline int fls(int x) |
| 286 | { | 282 | { |
| 287 | return __fls(x); | 283 | int ret; |
| 284 | |||
| 285 | if (__builtin_constant_p(x)) | ||
| 286 | return constant_fls(x); | ||
| 287 | |||
| 288 | asm("clz\t%0, %1" : "=r" (ret) : "r" (x) : "cc"); | ||
| 289 | ret = 32 - ret; | ||
| 290 | return ret; | ||
| 288 | } | 291 | } |
| 289 | 292 | ||
| 293 | #define __fls(x) (fls(x) - 1) | ||
| 290 | #define ffs(x) ({ unsigned long __t = (x); fls(__t & -__t); }) | 294 | #define ffs(x) ({ unsigned long __t = (x); fls(__t & -__t); }) |
| 291 | #define __ffs(x) (ffs(x) - 1) | 295 | #define __ffs(x) (ffs(x) - 1) |
| 292 | #define ffz(x) __ffs( ~(x) ) | 296 | #define ffz(x) __ffs( ~(x) ) |
diff --git a/arch/arm/include/asm/processor.h b/arch/arm/include/asm/processor.h index 517a4d6ffc7..6ff33790f47 100644 --- a/arch/arm/include/asm/processor.h +++ b/arch/arm/include/asm/processor.h | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | #include <asm/types.h> | 23 | #include <asm/types.h> |
| 24 | 24 | ||
| 25 | #ifdef __KERNEL__ | 25 | #ifdef __KERNEL__ |
| 26 | #define STACK_TOP ((current->personality == PER_LINUX_32BIT) ? \ | 26 | #define STACK_TOP ((current->personality & ADDR_LIMIT_32BIT) ? \ |
| 27 | TASK_SIZE : TASK_SIZE_26) | 27 | TASK_SIZE : TASK_SIZE_26) |
| 28 | #define STACK_TOP_MAX TASK_SIZE | 28 | #define STACK_TOP_MAX TASK_SIZE |
| 29 | #endif | 29 | #endif |
diff --git a/arch/arm/mach-omap1/io.c b/arch/arm/mach-omap1/io.c index b3bd8ca8511..4c3e582f3d3 100644 --- a/arch/arm/mach-omap1/io.c +++ b/arch/arm/mach-omap1/io.c | |||
| @@ -128,7 +128,7 @@ void __init omap1_map_common_io(void) | |||
| 128 | * Common low-level hardware init for omap1. This should only get called from | 128 | * Common low-level hardware init for omap1. This should only get called from |
| 129 | * board specific init. | 129 | * board specific init. |
| 130 | */ | 130 | */ |
| 131 | void __init omap1_init_common_hw() | 131 | void __init omap1_init_common_hw(void) |
| 132 | { | 132 | { |
| 133 | /* REVISIT: Refer to OMAP5910 Errata, Advisory SYS_1: "Timeout Abort | 133 | /* REVISIT: Refer to OMAP5910 Errata, Advisory SYS_1: "Timeout Abort |
| 134 | * on a Posted Write in the TIPB Bridge". | 134 | * on a Posted Write in the TIPB Bridge". |
diff --git a/arch/arm/mm/alignment.c b/arch/arm/mm/alignment.c index 133e65d166b..2d5884ce043 100644 --- a/arch/arm/mm/alignment.c +++ b/arch/arm/mm/alignment.c | |||
| @@ -70,6 +70,10 @@ static unsigned long ai_dword; | |||
| 70 | static unsigned long ai_multi; | 70 | static unsigned long ai_multi; |
| 71 | static int ai_usermode; | 71 | static int ai_usermode; |
| 72 | 72 | ||
| 73 | #define UM_WARN (1 << 0) | ||
| 74 | #define UM_FIXUP (1 << 1) | ||
| 75 | #define UM_SIGNAL (1 << 2) | ||
| 76 | |||
| 73 | #ifdef CONFIG_PROC_FS | 77 | #ifdef CONFIG_PROC_FS |
| 74 | static const char *usermode_action[] = { | 78 | static const char *usermode_action[] = { |
| 75 | "ignored", | 79 | "ignored", |
| @@ -754,7 +758,7 @@ do_alignment(unsigned long addr, unsigned int fsr, struct pt_regs *regs) | |||
| 754 | user: | 758 | user: |
| 755 | ai_user += 1; | 759 | ai_user += 1; |
| 756 | 760 | ||
| 757 | if (ai_usermode & 1) | 761 | if (ai_usermode & UM_WARN) |
| 758 | printk("Alignment trap: %s (%d) PC=0x%08lx Instr=0x%0*lx " | 762 | printk("Alignment trap: %s (%d) PC=0x%08lx Instr=0x%0*lx " |
| 759 | "Address=0x%08lx FSR 0x%03x\n", current->comm, | 763 | "Address=0x%08lx FSR 0x%03x\n", current->comm, |
| 760 | task_pid_nr(current), instrptr, | 764 | task_pid_nr(current), instrptr, |
| @@ -762,10 +766,10 @@ do_alignment(unsigned long addr, unsigned int fsr, struct pt_regs *regs) | |||
| 762 | thumb_mode(regs) ? tinstr : instr, | 766 | thumb_mode(regs) ? tinstr : instr, |
| 763 | addr, fsr); | 767 | addr, fsr); |
| 764 | 768 | ||
| 765 | if (ai_usermode & 2) | 769 | if (ai_usermode & UM_FIXUP) |
| 766 | goto fixup; | 770 | goto fixup; |
| 767 | 771 | ||
| 768 | if (ai_usermode & 4) | 772 | if (ai_usermode & UM_SIGNAL) |
| 769 | force_sig(SIGBUS, current); | 773 | force_sig(SIGBUS, current); |
| 770 | else | 774 | else |
| 771 | set_cr(cr_no_alignment); | 775 | set_cr(cr_no_alignment); |
| @@ -796,6 +800,22 @@ static int __init alignment_init(void) | |||
| 796 | res->write_proc = proc_alignment_write; | 800 | res->write_proc = proc_alignment_write; |
| 797 | #endif | 801 | #endif |
| 798 | 802 | ||
| 803 | /* | ||
| 804 | * ARMv6 and later CPUs can perform unaligned accesses for | ||
| 805 | * most single load and store instructions up to word size. | ||
| 806 | * LDM, STM, LDRD and STRD still need to be handled. | ||
| 807 | * | ||
| 808 | * Ignoring the alignment fault is not an option on these | ||
| 809 | * CPUs since we spin re-faulting the instruction without | ||
| 810 | * making any progress. | ||
| 811 | */ | ||
| 812 | if (cpu_architecture() >= CPU_ARCH_ARMv6 && (cr_alignment & CR_U)) { | ||
| 813 | cr_alignment &= ~CR_A; | ||
| 814 | cr_no_alignment &= ~CR_A; | ||
| 815 | set_cr(cr_alignment); | ||
| 816 | ai_usermode = UM_FIXUP; | ||
| 817 | } | ||
| 818 | |||
| 799 | hook_fault_code(1, do_alignment, SIGILL, "alignment exception"); | 819 | hook_fault_code(1, do_alignment, SIGILL, "alignment exception"); |
| 800 | hook_fault_code(3, do_alignment, SIGILL, "alignment exception"); | 820 | hook_fault_code(3, do_alignment, SIGILL, "alignment exception"); |
| 801 | 821 | ||
diff --git a/arch/arm/plat-omap/include/mach/omapfb.h b/arch/arm/plat-omap/include/mach/omapfb.h index ec67fb42860..7b74d1255e0 100644 --- a/arch/arm/plat-omap/include/mach/omapfb.h +++ b/arch/arm/plat-omap/include/mach/omapfb.h | |||
| @@ -353,8 +353,8 @@ struct omapfb_device { | |||
| 353 | u32 pseudo_palette[17]; | 353 | u32 pseudo_palette[17]; |
| 354 | 354 | ||
| 355 | struct lcd_panel *panel; /* LCD panel */ | 355 | struct lcd_panel *panel; /* LCD panel */ |
| 356 | struct lcd_ctrl *ctrl; /* LCD controller */ | 356 | const struct lcd_ctrl *ctrl; /* LCD controller */ |
| 357 | struct lcd_ctrl *int_ctrl; /* internal LCD ctrl */ | 357 | const struct lcd_ctrl *int_ctrl; /* internal LCD ctrl */ |
| 358 | struct lcd_ctrl_extif *ext_if; /* LCD ctrl external | 358 | struct lcd_ctrl_extif *ext_if; /* LCD ctrl external |
| 359 | interface */ | 359 | interface */ |
| 360 | struct device *dev; | 360 | struct device *dev; |
diff --git a/arch/arm/plat-omap/sram.c b/arch/arm/plat-omap/sram.c index 9f9a921829c..dcd9d16da2e 100644 --- a/arch/arm/plat-omap/sram.c +++ b/arch/arm/plat-omap/sram.c | |||
| @@ -255,7 +255,7 @@ void omap_sram_reprogram_clock(u32 dpllctl, u32 ckctl) | |||
| 255 | if (!_omap_sram_reprogram_clock) | 255 | if (!_omap_sram_reprogram_clock) |
| 256 | omap_sram_error(); | 256 | omap_sram_error(); |
| 257 | 257 | ||
| 258 | return _omap_sram_reprogram_clock(dpllctl, ckctl); | 258 | _omap_sram_reprogram_clock(dpllctl, ckctl); |
| 259 | } | 259 | } |
| 260 | 260 | ||
| 261 | int __init omap1_sram_init(void) | 261 | int __init omap1_sram_init(void) |
| @@ -282,8 +282,8 @@ void omap2_sram_ddr_init(u32 *slow_dll_ctrl, u32 fast_dll_ctrl, | |||
| 282 | if (!_omap2_sram_ddr_init) | 282 | if (!_omap2_sram_ddr_init) |
| 283 | omap_sram_error(); | 283 | omap_sram_error(); |
| 284 | 284 | ||
| 285 | return _omap2_sram_ddr_init(slow_dll_ctrl, fast_dll_ctrl, | 285 | _omap2_sram_ddr_init(slow_dll_ctrl, fast_dll_ctrl, |
| 286 | base_cs, force_unlock); | 286 | base_cs, force_unlock); |
| 287 | } | 287 | } |
| 288 | 288 | ||
| 289 | static void (*_omap2_sram_reprogram_sdrc)(u32 perf_level, u32 dll_val, | 289 | static void (*_omap2_sram_reprogram_sdrc)(u32 perf_level, u32 dll_val, |
| @@ -294,7 +294,7 @@ void omap2_sram_reprogram_sdrc(u32 perf_level, u32 dll_val, u32 mem_type) | |||
| 294 | if (!_omap2_sram_reprogram_sdrc) | 294 | if (!_omap2_sram_reprogram_sdrc) |
| 295 | omap_sram_error(); | 295 | omap_sram_error(); |
| 296 | 296 | ||
| 297 | return _omap2_sram_reprogram_sdrc(perf_level, dll_val, mem_type); | 297 | _omap2_sram_reprogram_sdrc(perf_level, dll_val, mem_type); |
| 298 | } | 298 | } |
| 299 | 299 | ||
| 300 | static u32 (*_omap2_set_prcm)(u32 dpll_ctrl_val, u32 sdrc_rfr_val, int bypass); | 300 | static u32 (*_omap2_set_prcm)(u32 dpll_ctrl_val, u32 sdrc_rfr_val, int bypass); |
diff --git a/arch/arm/plat-orion/pcie.c b/arch/arm/plat-orion/pcie.c index 883902fead8..d41d41d78ad 100644 --- a/arch/arm/plat-orion/pcie.c +++ b/arch/arm/plat-orion/pcie.c | |||
| @@ -35,7 +35,7 @@ | |||
| 35 | #define PCIE_CONF_REG(r) ((((r) & 0xf00) << 16) | ((r) & 0xfc)) | 35 | #define PCIE_CONF_REG(r) ((((r) & 0xf00) << 16) | ((r) & 0xfc)) |
| 36 | #define PCIE_CONF_BUS(b) (((b) & 0xff) << 16) | 36 | #define PCIE_CONF_BUS(b) (((b) & 0xff) << 16) |
| 37 | #define PCIE_CONF_DEV(d) (((d) & 0x1f) << 11) | 37 | #define PCIE_CONF_DEV(d) (((d) & 0x1f) << 11) |
| 38 | #define PCIE_CONF_FUNC(f) (((f) & 0x3) << 8) | 38 | #define PCIE_CONF_FUNC(f) (((f) & 0x7) << 8) |
| 39 | #define PCIE_CONF_DATA_OFF 0x18fc | 39 | #define PCIE_CONF_DATA_OFF 0x18fc |
| 40 | #define PCIE_MASK_OFF 0x1910 | 40 | #define PCIE_MASK_OFF 0x1910 |
| 41 | #define PCIE_CTRL_OFF 0x1a00 | 41 | #define PCIE_CTRL_OFF 0x1a00 |
diff --git a/drivers/video/omap/omapfb_main.c b/drivers/video/omap/omapfb_main.c index 5a5e407dc45..1a49519dafa 100644 --- a/drivers/video/omap/omapfb_main.c +++ b/drivers/video/omap/omapfb_main.c | |||
| @@ -392,7 +392,7 @@ static void set_fb_fix(struct fb_info *fbi) | |||
| 392 | int bpp; | 392 | int bpp; |
| 393 | 393 | ||
| 394 | rg = &plane->fbdev->mem_desc.region[plane->idx]; | 394 | rg = &plane->fbdev->mem_desc.region[plane->idx]; |
| 395 | fbi->screen_base = (char __iomem *)rg->vaddr; | 395 | fbi->screen_base = rg->vaddr; |
| 396 | fix->smem_start = rg->paddr; | 396 | fix->smem_start = rg->paddr; |
| 397 | fix->smem_len = rg->size; | 397 | fix->smem_len = rg->size; |
| 398 | 398 | ||
