diff options
author | David S. Miller <davem@davemloft.net> | 2008-05-15 03:34:44 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-05-15 03:34:44 -0400 |
commit | 63fe46da9c380b3f2bbdf3765044649517cc717c (patch) | |
tree | 9478c1aca1d692b408955aea20c9cd9a37e589c0 /include | |
parent | 99dd1a2b8347ac2ae802300b7862f6f7bcf17139 (diff) | |
parent | 066b2118976e6e7cc50eed39e2747c75343a23c4 (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
Conflicts:
drivers/net/wireless/iwlwifi/iwl-4965-rs.c
drivers/net/wireless/rt2x00/rt61pci.c
Diffstat (limited to 'include')
136 files changed, 2575 insertions, 2592 deletions
diff --git a/include/asm-alpha/barrier.h b/include/asm-alpha/barrier.h index 384dc08d6f53..ac78eba909bc 100644 --- a/include/asm-alpha/barrier.h +++ b/include/asm-alpha/barrier.h | |||
@@ -24,7 +24,7 @@ __asm__ __volatile__("mb": : :"memory") | |||
24 | #define smp_mb() barrier() | 24 | #define smp_mb() barrier() |
25 | #define smp_rmb() barrier() | 25 | #define smp_rmb() barrier() |
26 | #define smp_wmb() barrier() | 26 | #define smp_wmb() barrier() |
27 | #define smp_read_barrier_depends() barrier() | 27 | #define smp_read_barrier_depends() do { } while (0) |
28 | #endif | 28 | #endif |
29 | 29 | ||
30 | #define set_mb(var, value) \ | 30 | #define set_mb(var, value) \ |
diff --git a/include/asm-alpha/param.h b/include/asm-alpha/param.h index 0982f1d39499..e691ecfedb2c 100644 --- a/include/asm-alpha/param.h +++ b/include/asm-alpha/param.h | |||
@@ -5,8 +5,12 @@ | |||
5 | hardware ignores reprogramming. We also need userland buy-in to the | 5 | hardware ignores reprogramming. We also need userland buy-in to the |
6 | change in HZ, since this is visible in the wait4 resources etc. */ | 6 | change in HZ, since this is visible in the wait4 resources etc. */ |
7 | 7 | ||
8 | #ifdef __KERNEL__ | ||
8 | #define HZ CONFIG_HZ | 9 | #define HZ CONFIG_HZ |
9 | #define USER_HZ HZ | 10 | #define USER_HZ HZ |
11 | #else | ||
12 | #define HZ 1024 | ||
13 | #endif | ||
10 | 14 | ||
11 | #define EXEC_PAGESIZE 8192 | 15 | #define EXEC_PAGESIZE 8192 |
12 | 16 | ||
diff --git a/include/asm-alpha/pgtable.h b/include/asm-alpha/pgtable.h index 05ce5fba43e3..3f0c59f6d8aa 100644 --- a/include/asm-alpha/pgtable.h +++ b/include/asm-alpha/pgtable.h | |||
@@ -287,17 +287,34 @@ extern inline pte_t pte_mkspecial(pte_t pte) { return pte; } | |||
287 | #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1)) | 287 | #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1)) |
288 | #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address)) | 288 | #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address)) |
289 | 289 | ||
290 | /* | ||
291 | * The smp_read_barrier_depends() in the following functions are required to | ||
292 | * order the load of *dir (the pointer in the top level page table) with any | ||
293 | * subsequent load of the returned pmd_t *ret (ret is data dependent on *dir). | ||
294 | * | ||
295 | * If this ordering is not enforced, the CPU might load an older value of | ||
296 | * *ret, which may be uninitialized data. See mm/memory.c:__pte_alloc for | ||
297 | * more details. | ||
298 | * | ||
299 | * Note that we never change the mm->pgd pointer after the task is running, so | ||
300 | * pgd_offset does not require such a barrier. | ||
301 | */ | ||
302 | |||
290 | /* Find an entry in the second-level page table.. */ | 303 | /* Find an entry in the second-level page table.. */ |
291 | extern inline pmd_t * pmd_offset(pgd_t * dir, unsigned long address) | 304 | extern inline pmd_t * pmd_offset(pgd_t * dir, unsigned long address) |
292 | { | 305 | { |
293 | return (pmd_t *) pgd_page_vaddr(*dir) + ((address >> PMD_SHIFT) & (PTRS_PER_PAGE - 1)); | 306 | pmd_t *ret = (pmd_t *) pgd_page_vaddr(*dir) + ((address >> PMD_SHIFT) & (PTRS_PER_PAGE - 1)); |
307 | smp_read_barrier_depends(); /* see above */ | ||
308 | return ret; | ||
294 | } | 309 | } |
295 | 310 | ||
296 | /* Find an entry in the third-level page table.. */ | 311 | /* Find an entry in the third-level page table.. */ |
297 | extern inline pte_t * pte_offset_kernel(pmd_t * dir, unsigned long address) | 312 | extern inline pte_t * pte_offset_kernel(pmd_t * dir, unsigned long address) |
298 | { | 313 | { |
299 | return (pte_t *) pmd_page_vaddr(*dir) | 314 | pte_t *ret = (pte_t *) pmd_page_vaddr(*dir) |
300 | + ((address >> PAGE_SHIFT) & (PTRS_PER_PAGE - 1)); | 315 | + ((address >> PAGE_SHIFT) & (PTRS_PER_PAGE - 1)); |
316 | smp_read_barrier_depends(); /* see above */ | ||
317 | return ret; | ||
301 | } | 318 | } |
302 | 319 | ||
303 | #define pte_offset_map(dir,addr) pte_offset_kernel((dir),(addr)) | 320 | #define pte_offset_map(dir,addr) pte_offset_kernel((dir),(addr)) |
diff --git a/include/asm-arm/arch-pxa/pm.h b/include/asm-arm/arch-pxa/pm.h index 9d9f4b54b2ce..261e5bc958db 100644 --- a/include/asm-arm/arch-pxa/pm.h +++ b/include/asm-arm/arch-pxa/pm.h | |||
@@ -10,7 +10,7 @@ | |||
10 | #include <linux/suspend.h> | 10 | #include <linux/suspend.h> |
11 | 11 | ||
12 | struct pxa_cpu_pm_fns { | 12 | struct pxa_cpu_pm_fns { |
13 | int save_size; | 13 | int save_count; |
14 | void (*save)(unsigned long *); | 14 | void (*save)(unsigned long *); |
15 | void (*restore)(unsigned long *); | 15 | void (*restore)(unsigned long *); |
16 | int (*valid)(suspend_state_t state); | 16 | int (*valid)(suspend_state_t state); |
diff --git a/include/asm-arm/arch-pxa/system.h b/include/asm-arm/arch-pxa/system.h index a758a719180f..9aa6c2e939e8 100644 --- a/include/asm-arm/arch-pxa/system.h +++ b/include/asm-arm/arch-pxa/system.h | |||
@@ -22,7 +22,8 @@ static inline void arch_idle(void) | |||
22 | 22 | ||
23 | static inline void arch_reset(char mode) | 23 | static inline void arch_reset(char mode) |
24 | { | 24 | { |
25 | RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR; | 25 | if (cpu_is_pxa2xx()) |
26 | RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR; | ||
26 | 27 | ||
27 | if (mode == 's') { | 28 | if (mode == 's') { |
28 | /* Jump into ROM at address 0 */ | 29 | /* Jump into ROM at address 0 */ |
diff --git a/include/asm-blackfin/dpmc.h b/include/asm-blackfin/dpmc.h index 686cf83a5269..7f34cd384f12 100644 --- a/include/asm-blackfin/dpmc.h +++ b/include/asm-blackfin/dpmc.h | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * include/asm-blackfin/dpmc.h - Miscellaneous IOCTL commands for Dynamic Power | 2 | * include/asm-blackfin/dpmc.h - Miscellaneous IOCTL commands for Dynamic Power |
3 | * Management Controller Driver. | 3 | * Management Controller Driver. |
4 | * Copyright (C) 2004 Analog Device Inc. | 4 | * Copyright (C) 2004-2008 Analog Device Inc. |
5 | * | 5 | * |
6 | */ | 6 | */ |
7 | #ifndef _BLACKFIN_DPMC_H_ | 7 | #ifndef _BLACKFIN_DPMC_H_ |
@@ -65,6 +65,14 @@ void disable_wdog_timer(void); | |||
65 | extern unsigned long get_cclk(void); | 65 | extern unsigned long get_cclk(void); |
66 | extern unsigned long get_sclk(void); | 66 | extern unsigned long get_sclk(void); |
67 | 67 | ||
68 | struct bfin_dpmc_platform_data { | ||
69 | const unsigned int *tuple_tab; | ||
70 | unsigned short tabsize; | ||
71 | unsigned short vr_settling_time; /* in us */ | ||
72 | }; | ||
73 | |||
74 | #define VRPAIR(vlev, freq) (((vlev) << 16) | ((freq) >> 16)) | ||
75 | |||
68 | #endif /* __KERNEL__ */ | 76 | #endif /* __KERNEL__ */ |
69 | 77 | ||
70 | #endif /*_BLACKFIN_DPMC_H_*/ | 78 | #endif /*_BLACKFIN_DPMC_H_*/ |
diff --git a/include/asm-blackfin/entry.h b/include/asm-blackfin/entry.h index 562c6d3a3232..c4f721e0d00d 100644 --- a/include/asm-blackfin/entry.h +++ b/include/asm-blackfin/entry.h | |||
@@ -17,6 +17,11 @@ | |||
17 | #define PF_DTRACE_OFF 1 | 17 | #define PF_DTRACE_OFF 1 |
18 | #define PF_DTRACE_BIT 5 | 18 | #define PF_DTRACE_BIT 5 |
19 | 19 | ||
20 | /* | ||
21 | * NOTE! The single-stepping code assumes that all interrupt handlers | ||
22 | * start by saving SYSCFG on the stack with their first instruction. | ||
23 | */ | ||
24 | |||
20 | /* This one is used for exceptions, emulation, and NMI. It doesn't push | 25 | /* This one is used for exceptions, emulation, and NMI. It doesn't push |
21 | RETI and doesn't do cli. */ | 26 | RETI and doesn't do cli. */ |
22 | #define SAVE_ALL_SYS save_context_no_interrupts | 27 | #define SAVE_ALL_SYS save_context_no_interrupts |
diff --git a/include/asm-blackfin/mach-bf527/bfin_serial_5xx.h b/include/asm-blackfin/mach-bf527/bfin_serial_5xx.h index f0ab2736a680..26e3c8076b4e 100644 --- a/include/asm-blackfin/mach-bf527/bfin_serial_5xx.h +++ b/include/asm-blackfin/mach-bf527/bfin_serial_5xx.h | |||
@@ -44,10 +44,15 @@ | |||
44 | #define UART_PUT_CHAR(uart, v) bfin_write16(((uart)->port.membase + OFFSET_THR), v) | 44 | #define UART_PUT_CHAR(uart, v) bfin_write16(((uart)->port.membase + OFFSET_THR), v) |
45 | #define UART_PUT_DLL(uart, v) bfin_write16(((uart)->port.membase + OFFSET_DLL), v) | 45 | #define UART_PUT_DLL(uart, v) bfin_write16(((uart)->port.membase + OFFSET_DLL), v) |
46 | #define UART_PUT_IER(uart, v) bfin_write16(((uart)->port.membase + OFFSET_IER), v) | 46 | #define UART_PUT_IER(uart, v) bfin_write16(((uart)->port.membase + OFFSET_IER), v) |
47 | #define UART_SET_IER(uart, v) UART_PUT_IER(uart, UART_GET_IER(uart) | (v)) | ||
48 | #define UART_CLEAR_IER(uart, v) UART_PUT_IER(uart, UART_GET_IER(uart) & ~(v)) | ||
47 | #define UART_PUT_DLH(uart, v) bfin_write16(((uart)->port.membase + OFFSET_DLH), v) | 49 | #define UART_PUT_DLH(uart, v) bfin_write16(((uart)->port.membase + OFFSET_DLH), v) |
48 | #define UART_PUT_LCR(uart, v) bfin_write16(((uart)->port.membase + OFFSET_LCR), v) | 50 | #define UART_PUT_LCR(uart, v) bfin_write16(((uart)->port.membase + OFFSET_LCR), v) |
49 | #define UART_PUT_GCTL(uart, v) bfin_write16(((uart)->port.membase + OFFSET_GCTL), v) | 51 | #define UART_PUT_GCTL(uart, v) bfin_write16(((uart)->port.membase + OFFSET_GCTL), v) |
50 | 52 | ||
53 | #define UART_SET_DLAB(uart) do { UART_PUT_LCR(uart, UART_GET_LCR(uart) | DLAB); SSYNC(); } while (0) | ||
54 | #define UART_CLEAR_DLAB(uart) do { UART_PUT_LCR(uart, UART_GET_LCR(uart) & ~DLAB); SSYNC(); } while (0) | ||
55 | |||
51 | #if defined(CONFIG_BFIN_UART0_CTSRTS) || defined(CONFIG_BFIN_UART1_CTSRTS) | 56 | #if defined(CONFIG_BFIN_UART0_CTSRTS) || defined(CONFIG_BFIN_UART1_CTSRTS) |
52 | # define CONFIG_SERIAL_BFIN_CTSRTS | 57 | # define CONFIG_SERIAL_BFIN_CTSRTS |
53 | 58 | ||
diff --git a/include/asm-blackfin/mach-bf533/bfin_serial_5xx.h b/include/asm-blackfin/mach-bf533/bfin_serial_5xx.h index fbe88dee3e2d..d016603b6615 100644 --- a/include/asm-blackfin/mach-bf533/bfin_serial_5xx.h +++ b/include/asm-blackfin/mach-bf533/bfin_serial_5xx.h | |||
@@ -44,10 +44,15 @@ | |||
44 | #define UART_PUT_CHAR(uart,v) bfin_write16(((uart)->port.membase + OFFSET_THR),v) | 44 | #define UART_PUT_CHAR(uart,v) bfin_write16(((uart)->port.membase + OFFSET_THR),v) |
45 | #define UART_PUT_DLL(uart,v) bfin_write16(((uart)->port.membase + OFFSET_DLL),v) | 45 | #define UART_PUT_DLL(uart,v) bfin_write16(((uart)->port.membase + OFFSET_DLL),v) |
46 | #define UART_PUT_IER(uart,v) bfin_write16(((uart)->port.membase + OFFSET_IER),v) | 46 | #define UART_PUT_IER(uart,v) bfin_write16(((uart)->port.membase + OFFSET_IER),v) |
47 | #define UART_SET_IER(uart,v) UART_PUT_IER(uart, UART_GET_IER(uart) | (v)) | ||
48 | #define UART_CLEAR_IER(uart,v) UART_PUT_IER(uart, UART_GET_IER(uart) & ~(v)) | ||
47 | #define UART_PUT_DLH(uart,v) bfin_write16(((uart)->port.membase + OFFSET_DLH),v) | 49 | #define UART_PUT_DLH(uart,v) bfin_write16(((uart)->port.membase + OFFSET_DLH),v) |
48 | #define UART_PUT_LCR(uart,v) bfin_write16(((uart)->port.membase + OFFSET_LCR),v) | 50 | #define UART_PUT_LCR(uart,v) bfin_write16(((uart)->port.membase + OFFSET_LCR),v) |
49 | #define UART_PUT_GCTL(uart,v) bfin_write16(((uart)->port.membase + OFFSET_GCTL),v) | 51 | #define UART_PUT_GCTL(uart,v) bfin_write16(((uart)->port.membase + OFFSET_GCTL),v) |
50 | 52 | ||
53 | #define UART_SET_DLAB(uart) do { UART_PUT_LCR(uart, UART_GET_LCR(uart) | DLAB); SSYNC(); } while (0) | ||
54 | #define UART_CLEAR_DLAB(uart) do { UART_PUT_LCR(uart, UART_GET_LCR(uart) & ~DLAB); SSYNC(); } while (0) | ||
55 | |||
51 | #ifdef CONFIG_BFIN_UART0_CTSRTS | 56 | #ifdef CONFIG_BFIN_UART0_CTSRTS |
52 | # define CONFIG_SERIAL_BFIN_CTSRTS | 57 | # define CONFIG_SERIAL_BFIN_CTSRTS |
53 | # ifndef CONFIG_UART0_CTS_PIN | 58 | # ifndef CONFIG_UART0_CTS_PIN |
diff --git a/include/asm-blackfin/mach-bf533/defBF532.h b/include/asm-blackfin/mach-bf533/defBF532.h index 17e1548cec08..0ab4dd7494cf 100644 --- a/include/asm-blackfin/mach-bf533/defBF532.h +++ b/include/asm-blackfin/mach-bf533/defBF532.h | |||
@@ -468,6 +468,8 @@ | |||
468 | #define VLEV_110 0x00B0 /* VLEV = 1.10 V (-5% - +10% Accuracy) */ | 468 | #define VLEV_110 0x00B0 /* VLEV = 1.10 V (-5% - +10% Accuracy) */ |
469 | #define VLEV_115 0x00C0 /* VLEV = 1.15 V (-5% - +10% Accuracy) */ | 469 | #define VLEV_115 0x00C0 /* VLEV = 1.15 V (-5% - +10% Accuracy) */ |
470 | #define VLEV_120 0x00D0 /* VLEV = 1.20 V (-5% - +10% Accuracy) */ | 470 | #define VLEV_120 0x00D0 /* VLEV = 1.20 V (-5% - +10% Accuracy) */ |
471 | #define VLEV_125 0x00E0 /* VLEV = 1.25 V (-5% - +10% Accuracy) */ | ||
472 | #define VLEV_130 0x00F0 /* VLEV = 1.30 V (-5% - +10% Accuracy) */ | ||
471 | 473 | ||
472 | #define WAKE 0x0100 /* Enable RTC/Reset Wakeup From Hibernate */ | 474 | #define WAKE 0x0100 /* Enable RTC/Reset Wakeup From Hibernate */ |
473 | #define SCKELOW 0x8000 /* Do Not Drive SCKE High During Reset After Hibernate */ | 475 | #define SCKELOW 0x8000 /* Do Not Drive SCKE High During Reset After Hibernate */ |
diff --git a/include/asm-blackfin/mach-bf533/irq.h b/include/asm-blackfin/mach-bf533/irq.h index 832e6f6122da..5aa38e5da6b7 100644 --- a/include/asm-blackfin/mach-bf533/irq.h +++ b/include/asm-blackfin/mach-bf533/irq.h | |||
@@ -66,12 +66,13 @@ Core Emulation ** | |||
66 | DMA8/9 Interrupt IVG13 28 | 66 | DMA8/9 Interrupt IVG13 28 |
67 | DMA10/11 Interrupt IVG13 29 | 67 | DMA10/11 Interrupt IVG13 29 |
68 | Watchdog Timer IVG13 30 | 68 | Watchdog Timer IVG13 30 |
69 | Software Interrupt 1 IVG14 31 | 69 | |
70 | Software Interrupt 2 -- | 70 | Softirq IVG14 31 |
71 | System Call -- | ||
71 | (lowest priority) IVG15 32 * | 72 | (lowest priority) IVG15 32 * |
72 | */ | 73 | */ |
73 | #define SYS_IRQS 32 | 74 | #define SYS_IRQS 31 |
74 | #define NR_PERI_INTS 24 | 75 | #define NR_PERI_INTS 24 |
75 | 76 | ||
76 | /* The ABSTRACT IRQ definitions */ | 77 | /* The ABSTRACT IRQ definitions */ |
77 | /** the first seven of the following are fixed, the rest you change if you need to **/ | 78 | /** the first seven of the following are fixed, the rest you change if you need to **/ |
@@ -96,7 +97,7 @@ Core Emulation ** | |||
96 | #define IRQ_SPORT0_TX 17 /*DMA2 Interrupt (SPORT0 TX) */ | 97 | #define IRQ_SPORT0_TX 17 /*DMA2 Interrupt (SPORT0 TX) */ |
97 | #define IRQ_SPORT1_RX 18 /*DMA3 Interrupt (SPORT1 RX) */ | 98 | #define IRQ_SPORT1_RX 18 /*DMA3 Interrupt (SPORT1 RX) */ |
98 | #define IRQ_SPORT1_TX 19 /*DMA4 Interrupt (SPORT1 TX) */ | 99 | #define IRQ_SPORT1_TX 19 /*DMA4 Interrupt (SPORT1 TX) */ |
99 | #define IRQ_SPI 20 /*DMA5 Interrupt (SPI) */ | 100 | #define IRQ_SPI 20 /*DMA5 Interrupt (SPI) */ |
100 | #define IRQ_UART_RX 21 /*DMA6 Interrupt (UART RX) */ | 101 | #define IRQ_UART_RX 21 /*DMA6 Interrupt (UART RX) */ |
101 | #define IRQ_UART_TX 22 /*DMA7 Interrupt (UART TX) */ | 102 | #define IRQ_UART_TX 22 /*DMA7 Interrupt (UART TX) */ |
102 | #define IRQ_TMR0 23 /*Timer 0 */ | 103 | #define IRQ_TMR0 23 /*Timer 0 */ |
@@ -108,9 +109,6 @@ Core Emulation ** | |||
108 | #define IRQ_MEM_DMA1 29 /*DMA10/11 Interrupt (Memory DMA Stream 1) */ | 109 | #define IRQ_MEM_DMA1 29 /*DMA10/11 Interrupt (Memory DMA Stream 1) */ |
109 | #define IRQ_WATCH 30 /*Watch Dog Timer */ | 110 | #define IRQ_WATCH 30 /*Watch Dog Timer */ |
110 | 111 | ||
111 | #define IRQ_SW_INT1 31 /*Software Int 1 */ | ||
112 | #define IRQ_SW_INT2 32 /*Software Int 2 (reserved for SYSCALL) */ | ||
113 | |||
114 | #define IRQ_PF0 33 | 112 | #define IRQ_PF0 33 |
115 | #define IRQ_PF1 34 | 113 | #define IRQ_PF1 34 |
116 | #define IRQ_PF2 35 | 114 | #define IRQ_PF2 35 |
diff --git a/include/asm-blackfin/mach-bf537/bfin_serial_5xx.h b/include/asm-blackfin/mach-bf537/bfin_serial_5xx.h index fd100a415b98..f79d1a0e9129 100644 --- a/include/asm-blackfin/mach-bf537/bfin_serial_5xx.h +++ b/include/asm-blackfin/mach-bf537/bfin_serial_5xx.h | |||
@@ -44,10 +44,15 @@ | |||
44 | #define UART_PUT_CHAR(uart,v) bfin_write16(((uart)->port.membase + OFFSET_THR),v) | 44 | #define UART_PUT_CHAR(uart,v) bfin_write16(((uart)->port.membase + OFFSET_THR),v) |
45 | #define UART_PUT_DLL(uart,v) bfin_write16(((uart)->port.membase + OFFSET_DLL),v) | 45 | #define UART_PUT_DLL(uart,v) bfin_write16(((uart)->port.membase + OFFSET_DLL),v) |
46 | #define UART_PUT_IER(uart,v) bfin_write16(((uart)->port.membase + OFFSET_IER),v) | 46 | #define UART_PUT_IER(uart,v) bfin_write16(((uart)->port.membase + OFFSET_IER),v) |
47 | #define UART_SET_IER(uart,v) UART_PUT_IER(uart, UART_GET_IER(uart) | (v)) | ||
48 | #define UART_CLEAR_IER(uart,v) UART_PUT_IER(uart, UART_GET_IER(uart) & ~(v)) | ||
47 | #define UART_PUT_DLH(uart,v) bfin_write16(((uart)->port.membase + OFFSET_DLH),v) | 49 | #define UART_PUT_DLH(uart,v) bfin_write16(((uart)->port.membase + OFFSET_DLH),v) |
48 | #define UART_PUT_LCR(uart,v) bfin_write16(((uart)->port.membase + OFFSET_LCR),v) | 50 | #define UART_PUT_LCR(uart,v) bfin_write16(((uart)->port.membase + OFFSET_LCR),v) |
49 | #define UART_PUT_GCTL(uart,v) bfin_write16(((uart)->port.membase + OFFSET_GCTL),v) | 51 | #define UART_PUT_GCTL(uart,v) bfin_write16(((uart)->port.membase + OFFSET_GCTL),v) |
50 | 52 | ||
53 | #define UART_SET_DLAB(uart) do { UART_PUT_LCR(uart, UART_GET_LCR(uart) | DLAB); SSYNC(); } while (0) | ||
54 | #define UART_CLEAR_DLAB(uart) do { UART_PUT_LCR(uart, UART_GET_LCR(uart) & ~DLAB); SSYNC(); } while (0) | ||
55 | |||
51 | #if defined(CONFIG_BFIN_UART0_CTSRTS) || defined(CONFIG_BFIN_UART1_CTSRTS) | 56 | #if defined(CONFIG_BFIN_UART0_CTSRTS) || defined(CONFIG_BFIN_UART1_CTSRTS) |
52 | # define CONFIG_SERIAL_BFIN_CTSRTS | 57 | # define CONFIG_SERIAL_BFIN_CTSRTS |
53 | 58 | ||
diff --git a/include/asm-blackfin/mach-bf537/irq.h b/include/asm-blackfin/mach-bf537/irq.h index be6f2ff77f31..2e68a8a1e730 100644 --- a/include/asm-blackfin/mach-bf537/irq.h +++ b/include/asm-blackfin/mach-bf537/irq.h | |||
@@ -34,24 +34,23 @@ | |||
34 | 34 | ||
35 | /* | 35 | /* |
36 | * Interrupt source definitions | 36 | * Interrupt source definitions |
37 | Event Source Core Event Name | 37 | * Event Source Core Event Name |
38 | Core Emulation ** | 38 | * Core Emulation ** |
39 | Events (highest priority) EMU 0 | 39 | * Events (highest priority) EMU 0 |
40 | Reset RST 1 | 40 | * Reset RST 1 |
41 | NMI NMI 2 | 41 | * NMI NMI 2 |
42 | Exception EVX 3 | 42 | * Exception EVX 3 |
43 | Reserved -- 4 | 43 | * Reserved -- 4 |
44 | Hardware Error IVHW 5 | 44 | * Hardware Error IVHW 5 |
45 | Core Timer IVTMR 6 * | 45 | * Core Timer IVTMR 6 |
46 | 46 | * ..... | |
47 | ..... | 47 | * |
48 | 48 | * Softirq IVG14 | |
49 | Software Interrupt 1 IVG14 31 | 49 | * System Call -- |
50 | Software Interrupt 2 -- | 50 | * (lowest priority) IVG15 |
51 | (lowest priority) IVG15 32 * | ||
52 | */ | 51 | */ |
53 | 52 | ||
54 | #define SYS_IRQS 41 | 53 | #define SYS_IRQS 39 |
55 | #define NR_PERI_INTS 32 | 54 | #define NR_PERI_INTS 32 |
56 | 55 | ||
57 | /* The ABSTRACT IRQ definitions */ | 56 | /* The ABSTRACT IRQ definitions */ |
@@ -95,10 +94,8 @@ Core Emulation ** | |||
95 | #define IRQ_PORTG_INTB 35 /* PF Port G (PF15:0) Interrupt B */ | 94 | #define IRQ_PORTG_INTB 35 /* PF Port G (PF15:0) Interrupt B */ |
96 | #define IRQ_MEM_DMA0 36 /*(Memory DMA Stream 0) */ | 95 | #define IRQ_MEM_DMA0 36 /*(Memory DMA Stream 0) */ |
97 | #define IRQ_MEM_DMA1 37 /*(Memory DMA Stream 1) */ | 96 | #define IRQ_MEM_DMA1 37 /*(Memory DMA Stream 1) */ |
98 | #define IRQ_PROG_INTB 38 /* PF Ports F (PF15:0) Interrupt B */ | 97 | #define IRQ_PROG_INTB 38 /* PF Ports F (PF15:0) Interrupt B */ |
99 | #define IRQ_WATCH 38 /*Watch Dog Timer */ | 98 | #define IRQ_WATCH 38 /*Watch Dog Timer */ |
100 | #define IRQ_SW_INT1 40 /*Software Int 1 */ | ||
101 | #define IRQ_SW_INT2 41 /*Software Int 2 (reserved for SYSCALL) */ | ||
102 | 99 | ||
103 | #define IRQ_PPI_ERROR 42 /*PPI Error Interrupt */ | 100 | #define IRQ_PPI_ERROR 42 /*PPI Error Interrupt */ |
104 | #define IRQ_CAN_ERROR 43 /*CAN Error Interrupt */ | 101 | #define IRQ_CAN_ERROR 43 /*CAN Error Interrupt */ |
diff --git a/include/asm-blackfin/mach-bf548/bfin_serial_5xx.h b/include/asm-blackfin/mach-bf548/bfin_serial_5xx.h index 6547027cd3e6..5eb46a77d919 100644 --- a/include/asm-blackfin/mach-bf548/bfin_serial_5xx.h +++ b/include/asm-blackfin/mach-bf548/bfin_serial_5xx.h | |||
@@ -54,6 +54,9 @@ | |||
54 | #define UART_PUT_GCTL(uart,v) bfin_write16(((uart)->port.membase + OFFSET_GCTL),v) | 54 | #define UART_PUT_GCTL(uart,v) bfin_write16(((uart)->port.membase + OFFSET_GCTL),v) |
55 | #define UART_PUT_MCR(uart,v) bfin_write16(((uart)->port.membase + OFFSET_MCR),v) | 55 | #define UART_PUT_MCR(uart,v) bfin_write16(((uart)->port.membase + OFFSET_MCR),v) |
56 | 56 | ||
57 | #define UART_SET_DLAB(uart) /* MMRs not muxed on BF54x */ | ||
58 | #define UART_CLEAR_DLAB(uart) /* MMRs not muxed on BF54x */ | ||
59 | |||
57 | #if defined(CONFIG_BFIN_UART0_CTSRTS) || defined(CONFIG_BFIN_UART1_CTSRTS) | 60 | #if defined(CONFIG_BFIN_UART0_CTSRTS) || defined(CONFIG_BFIN_UART1_CTSRTS) |
58 | # define CONFIG_SERIAL_BFIN_CTSRTS | 61 | # define CONFIG_SERIAL_BFIN_CTSRTS |
59 | 62 | ||
diff --git a/include/asm-blackfin/mach-bf548/defBF54x_base.h b/include/asm-blackfin/mach-bf548/defBF54x_base.h index 08f90c21fe8a..e022e896cb18 100644 --- a/include/asm-blackfin/mach-bf548/defBF54x_base.h +++ b/include/asm-blackfin/mach-bf548/defBF54x_base.h | |||
@@ -2329,6 +2329,26 @@ | |||
2329 | #define KPADWE 0x1000 /* Keypad Wake-Up Enable */ | 2329 | #define KPADWE 0x1000 /* Keypad Wake-Up Enable */ |
2330 | #define ROTWE 0x2000 /* Rotary Wake-Up Enable */ | 2330 | #define ROTWE 0x2000 /* Rotary Wake-Up Enable */ |
2331 | 2331 | ||
2332 | #define FREQ_333 0x0001 /* Switching Frequency Is 333 kHz */ | ||
2333 | #define FREQ_667 0x0002 /* Switching Frequency Is 667 kHz */ | ||
2334 | #define FREQ_1000 0x0003 /* Switching Frequency Is 1 MHz */ | ||
2335 | |||
2336 | #define GAIN_5 0x0000 /* GAIN = 5*/ | ||
2337 | #define GAIN_10 0x0004 /* GAIN = 1*/ | ||
2338 | #define GAIN_20 0x0008 /* GAIN = 2*/ | ||
2339 | #define GAIN_50 0x000C /* GAIN = 5*/ | ||
2340 | |||
2341 | #define VLEV_085 0x0060 /* VLEV = 0.85 V (-5% - +10% Accuracy) */ | ||
2342 | #define VLEV_090 0x0070 /* VLEV = 0.90 V (-5% - +10% Accuracy) */ | ||
2343 | #define VLEV_095 0x0080 /* VLEV = 0.95 V (-5% - +10% Accuracy) */ | ||
2344 | #define VLEV_100 0x0090 /* VLEV = 1.00 V (-5% - +10% Accuracy) */ | ||
2345 | #define VLEV_105 0x00A0 /* VLEV = 1.05 V (-5% - +10% Accuracy) */ | ||
2346 | #define VLEV_110 0x00B0 /* VLEV = 1.10 V (-5% - +10% Accuracy) */ | ||
2347 | #define VLEV_115 0x00C0 /* VLEV = 1.15 V (-5% - +10% Accuracy) */ | ||
2348 | #define VLEV_120 0x00D0 /* VLEV = 1.20 V (-5% - +10% Accuracy) */ | ||
2349 | #define VLEV_125 0x00E0 /* VLEV = 1.25 V (-5% - +10% Accuracy) */ | ||
2350 | #define VLEV_130 0x00F0 /* VLEV = 1.30 V (-5% - +10% Accuracy) */ | ||
2351 | |||
2332 | /* Bit masks for NFC_CTL */ | 2352 | /* Bit masks for NFC_CTL */ |
2333 | 2353 | ||
2334 | #define WR_DLY 0xf /* Write Strobe Delay */ | 2354 | #define WR_DLY 0xf /* Write Strobe Delay */ |
diff --git a/include/asm-blackfin/mach-bf561/bfin_serial_5xx.h b/include/asm-blackfin/mach-bf561/bfin_serial_5xx.h index 8a4e66d1db37..7a9628769296 100644 --- a/include/asm-blackfin/mach-bf561/bfin_serial_5xx.h +++ b/include/asm-blackfin/mach-bf561/bfin_serial_5xx.h | |||
@@ -44,10 +44,15 @@ | |||
44 | #define UART_PUT_CHAR(uart,v) bfin_write16(((uart)->port.membase + OFFSET_THR),v) | 44 | #define UART_PUT_CHAR(uart,v) bfin_write16(((uart)->port.membase + OFFSET_THR),v) |
45 | #define UART_PUT_DLL(uart,v) bfin_write16(((uart)->port.membase + OFFSET_DLL),v) | 45 | #define UART_PUT_DLL(uart,v) bfin_write16(((uart)->port.membase + OFFSET_DLL),v) |
46 | #define UART_PUT_IER(uart,v) bfin_write16(((uart)->port.membase + OFFSET_IER),v) | 46 | #define UART_PUT_IER(uart,v) bfin_write16(((uart)->port.membase + OFFSET_IER),v) |
47 | #define UART_SET_IER(uart,v) UART_PUT_IER(uart, UART_GET_IER(uart) | (v)) | ||
48 | #define UART_CLEAR_IER(uart,v) UART_PUT_IER(uart, UART_GET_IER(uart) & ~(v)) | ||
47 | #define UART_PUT_DLH(uart,v) bfin_write16(((uart)->port.membase + OFFSET_DLH),v) | 49 | #define UART_PUT_DLH(uart,v) bfin_write16(((uart)->port.membase + OFFSET_DLH),v) |
48 | #define UART_PUT_LCR(uart,v) bfin_write16(((uart)->port.membase + OFFSET_LCR),v) | 50 | #define UART_PUT_LCR(uart,v) bfin_write16(((uart)->port.membase + OFFSET_LCR),v) |
49 | #define UART_PUT_GCTL(uart,v) bfin_write16(((uart)->port.membase + OFFSET_GCTL),v) | 51 | #define UART_PUT_GCTL(uart,v) bfin_write16(((uart)->port.membase + OFFSET_GCTL),v) |
50 | 52 | ||
53 | #define UART_SET_DLAB(uart) do { UART_PUT_LCR(uart, UART_GET_LCR(uart) | DLAB); SSYNC(); } while (0) | ||
54 | #define UART_CLEAR_DLAB(uart) do { UART_PUT_LCR(uart, UART_GET_LCR(uart) & ~DLAB); SSYNC(); } while (0) | ||
55 | |||
51 | #ifdef CONFIG_BFIN_UART0_CTSRTS | 56 | #ifdef CONFIG_BFIN_UART0_CTSRTS |
52 | # define CONFIG_SERIAL_BFIN_CTSRTS | 57 | # define CONFIG_SERIAL_BFIN_CTSRTS |
53 | # ifndef CONFIG_UART0_CTS_PIN | 58 | # ifndef CONFIG_UART0_CTS_PIN |
diff --git a/include/asm-blackfin/mach-bf561/defBF561.h b/include/asm-blackfin/mach-bf561/defBF561.h index 366c9b9a0cb7..1ab50e906fe7 100644 --- a/include/asm-blackfin/mach-bf561/defBF561.h +++ b/include/asm-blackfin/mach-bf561/defBF561.h | |||
@@ -868,6 +868,34 @@ | |||
868 | #define CHIPID_FAMILY 0x0FFFF000 | 868 | #define CHIPID_FAMILY 0x0FFFF000 |
869 | #define CHIPID_MANUFACTURE 0x00000FFE | 869 | #define CHIPID_MANUFACTURE 0x00000FFE |
870 | 870 | ||
871 | /* VR_CTL Masks */ | ||
872 | #define FREQ 0x0003 /* Switching Oscillator Frequency For Regulator */ | ||
873 | #define HIBERNATE 0x0000 /* Powerdown/Bypass On-Board Regulation */ | ||
874 | #define FREQ_333 0x0001 /* Switching Frequency Is 333 kHz */ | ||
875 | #define FREQ_667 0x0002 /* Switching Frequency Is 667 kHz */ | ||
876 | #define FREQ_1000 0x0003 /* Switching Frequency Is 1 MHz */ | ||
877 | |||
878 | #define GAIN 0x000C /* Voltage Level Gain */ | ||
879 | #define GAIN_5 0x0000 /* GAIN = 5*/ | ||
880 | #define GAIN_10 0x0004 /* GAIN = 1*/ | ||
881 | #define GAIN_20 0x0008 /* GAIN = 2*/ | ||
882 | #define GAIN_50 0x000C /* GAIN = 5*/ | ||
883 | |||
884 | #define VLEV 0x00F0 /* Internal Voltage Level */ | ||
885 | #define VLEV_085 0x0060 /* VLEV = 0.85 V (-5% - +10% Accuracy) */ | ||
886 | #define VLEV_090 0x0070 /* VLEV = 0.90 V (-5% - +10% Accuracy) */ | ||
887 | #define VLEV_095 0x0080 /* VLEV = 0.95 V (-5% - +10% Accuracy) */ | ||
888 | #define VLEV_100 0x0090 /* VLEV = 1.00 V (-5% - +10% Accuracy) */ | ||
889 | #define VLEV_105 0x00A0 /* VLEV = 1.05 V (-5% - +10% Accuracy) */ | ||
890 | #define VLEV_110 0x00B0 /* VLEV = 1.10 V (-5% - +10% Accuracy) */ | ||
891 | #define VLEV_115 0x00C0 /* VLEV = 1.15 V (-5% - +10% Accuracy) */ | ||
892 | #define VLEV_120 0x00D0 /* VLEV = 1.20 V (-5% - +10% Accuracy) */ | ||
893 | #define VLEV_125 0x00E0 /* VLEV = 1.25 V (-5% - +10% Accuracy) */ | ||
894 | #define VLEV_130 0x00F0 /* VLEV = 1.30 V (-5% - +10% Accuracy) */ | ||
895 | |||
896 | #define WAKE 0x0100 /* Enable RTC/Reset Wakeup From Hibernate */ | ||
897 | #define SCKELOW 0x8000 /* Do Not Drive SCKE High During Reset After Hibernate */ | ||
898 | |||
871 | /* PLL_DIV Masks */ | 899 | /* PLL_DIV Masks */ |
872 | #define SCLK_DIV(x) (x) /* SCLK = VCO / x */ | 900 | #define SCLK_DIV(x) (x) /* SCLK = VCO / x */ |
873 | 901 | ||
diff --git a/include/asm-blackfin/mach-bf561/irq.h b/include/asm-blackfin/mach-bf561/irq.h index 83f0383957d2..6698389c5564 100644 --- a/include/asm-blackfin/mach-bf561/irq.h +++ b/include/asm-blackfin/mach-bf561/irq.h | |||
@@ -118,12 +118,13 @@ | |||
118 | Supplemental interrupt 0 IVG7 69 | 118 | Supplemental interrupt 0 IVG7 69 |
119 | supplemental interrupt 1 IVG7 70 | 119 | supplemental interrupt 1 IVG7 70 |
120 | 120 | ||
121 | Software Interrupt 1 IVG14 71 | 121 | Softirq IVG14 |
122 | Software Interrupt 2 IVG15 72 * | 122 | System Call -- |
123 | (lowest priority) | 123 | (lowest priority) IVG15 |
124 | |||
124 | **********************************************************************/ | 125 | **********************************************************************/ |
125 | 126 | ||
126 | #define SYS_IRQS 72 | 127 | #define SYS_IRQS 71 |
127 | #define NR_PERI_INTS 64 | 128 | #define NR_PERI_INTS 64 |
128 | 129 | ||
129 | /* | 130 | /* |
@@ -237,9 +238,7 @@ | |||
237 | #define IRQ_RESERVED_2 (IVG_BASE + 61) /* Reserved interrupt */ | 238 | #define IRQ_RESERVED_2 (IVG_BASE + 61) /* Reserved interrupt */ |
238 | #define IRQ_SUPPLE_0 (IVG_BASE + 62) /* Supplemental interrupt 0 */ | 239 | #define IRQ_SUPPLE_0 (IVG_BASE + 62) /* Supplemental interrupt 0 */ |
239 | #define IRQ_SUPPLE_1 (IVG_BASE + 63) /* supplemental interrupt 1 */ | 240 | #define IRQ_SUPPLE_1 (IVG_BASE + 63) /* supplemental interrupt 1 */ |
240 | #define IRQ_SW_INT1 71 /* Software Interrupt 1 */ | 241 | |
241 | #define IRQ_SW_INT2 72 /* Software Interrupt 2 */ | ||
242 | /* reserved for SYSCALL */ | ||
243 | #define IRQ_PF0 73 | 242 | #define IRQ_PF0 73 |
244 | #define IRQ_PF1 74 | 243 | #define IRQ_PF1 74 |
245 | #define IRQ_PF2 75 | 244 | #define IRQ_PF2 75 |
diff --git a/include/asm-blackfin/mach-common/context.S b/include/asm-blackfin/mach-common/context.S index fd0ebe1862b8..c0e630edfb9a 100644 --- a/include/asm-blackfin/mach-common/context.S +++ b/include/asm-blackfin/mach-common/context.S | |||
@@ -28,6 +28,11 @@ | |||
28 | */ | 28 | */ |
29 | 29 | ||
30 | /* | 30 | /* |
31 | * NOTE! The single-stepping code assumes that all interrupt handlers | ||
32 | * start by saving SYSCFG on the stack with their first instruction. | ||
33 | */ | ||
34 | |||
35 | /* | ||
31 | * Code to save processor context. | 36 | * Code to save processor context. |
32 | * We even save the register which are preserved by a function call | 37 | * We even save the register which are preserved by a function call |
33 | * - r4, r5, r6, r7, p3, p4, p5 | 38 | * - r4, r5, r6, r7, p3, p4, p5 |
diff --git a/include/asm-blackfin/time.h b/include/asm-blackfin/time.h index 6e5859b6ea32..ddc43ce38533 100644 --- a/include/asm-blackfin/time.h +++ b/include/asm-blackfin/time.h | |||
@@ -24,6 +24,8 @@ | |||
24 | 24 | ||
25 | #ifndef CONFIG_CPU_FREQ | 25 | #ifndef CONFIG_CPU_FREQ |
26 | #define TIME_SCALE 1 | 26 | #define TIME_SCALE 1 |
27 | #define __bfin_cycles_off (0) | ||
28 | #define __bfin_cycles_mod (0) | ||
27 | #else | 29 | #else |
28 | /* | 30 | /* |
29 | * Blackfin CPU frequency scaling supports max Core Clock 1, 1/2 and 1/4 . | 31 | * Blackfin CPU frequency scaling supports max Core Clock 1, 1/2 and 1/4 . |
@@ -31,6 +33,8 @@ | |||
31 | * adjust the Core Timer Presale Register. This way we don't lose time. | 33 | * adjust the Core Timer Presale Register. This way we don't lose time. |
32 | */ | 34 | */ |
33 | #define TIME_SCALE 4 | 35 | #define TIME_SCALE 4 |
36 | extern unsigned long long __bfin_cycles_off; | ||
37 | extern unsigned int __bfin_cycles_mod; | ||
34 | #endif | 38 | #endif |
35 | 39 | ||
36 | #endif | 40 | #endif |
diff --git a/include/asm-frv/system.h b/include/asm-frv/system.h index cb307f8a6b48..d3a12a9079f7 100644 --- a/include/asm-frv/system.h +++ b/include/asm-frv/system.h | |||
@@ -179,7 +179,7 @@ do { \ | |||
179 | #define mb() asm volatile ("membar" : : :"memory") | 179 | #define mb() asm volatile ("membar" : : :"memory") |
180 | #define rmb() asm volatile ("membar" : : :"memory") | 180 | #define rmb() asm volatile ("membar" : : :"memory") |
181 | #define wmb() asm volatile ("membar" : : :"memory") | 181 | #define wmb() asm volatile ("membar" : : :"memory") |
182 | #define read_barrier_depends() barrier() | 182 | #define read_barrier_depends() do { } while (0) |
183 | 183 | ||
184 | #ifdef CONFIG_SMP | 184 | #ifdef CONFIG_SMP |
185 | #define smp_mb() mb() | 185 | #define smp_mb() mb() |
diff --git a/include/asm-h8300/param.h b/include/asm-h8300/param.h index 04f64f100379..1c72fb8080ff 100644 --- a/include/asm-h8300/param.h +++ b/include/asm-h8300/param.h | |||
@@ -1,14 +1,12 @@ | |||
1 | #ifndef _H8300_PARAM_H | 1 | #ifndef _H8300_PARAM_H |
2 | #define _H8300_PARAM_H | 2 | #define _H8300_PARAM_H |
3 | 3 | ||
4 | |||
5 | #ifndef HZ | ||
6 | #define HZ CONFIG_HZ | ||
7 | #endif | ||
8 | |||
9 | #ifdef __KERNEL__ | 4 | #ifdef __KERNEL__ |
5 | #define HZ CONFIG_HZ | ||
10 | #define USER_HZ HZ | 6 | #define USER_HZ HZ |
11 | #define CLOCKS_PER_SEC (USER_HZ) | 7 | #define CLOCKS_PER_SEC (USER_HZ) |
8 | #else | ||
9 | #define HZ 100 | ||
12 | #endif | 10 | #endif |
13 | 11 | ||
14 | #define EXEC_PAGESIZE 4096 | 12 | #define EXEC_PAGESIZE 4096 |
diff --git a/include/asm-m68k/machw.h b/include/asm-m68k/machw.h index d2e0e25d5c90..35624998291c 100644 --- a/include/asm-m68k/machw.h +++ b/include/asm-m68k/machw.h | |||
@@ -66,36 +66,6 @@ struct MAC_SCC | |||
66 | # define mac_scc ((*(volatile struct SCC*)MAC_SCC_BAS)) | 66 | # define mac_scc ((*(volatile struct SCC*)MAC_SCC_BAS)) |
67 | #endif | 67 | #endif |
68 | 68 | ||
69 | /* hardware stuff */ | ||
70 | |||
71 | #define MACHW_DECLARE(name) unsigned name : 1 | ||
72 | #define MACHW_SET(name) (mac_hw_present.name = 1) | ||
73 | #define MACHW_PRESENT(name) (mac_hw_present.name) | ||
74 | |||
75 | struct mac_hw_present { | ||
76 | /* video hardware */ | ||
77 | /* sound hardware */ | ||
78 | /* disk storage interfaces */ | ||
79 | MACHW_DECLARE(MAC_SCSI_80); /* Directly mapped NCR5380 */ | ||
80 | MACHW_DECLARE(MAC_SCSI_96); /* 53c9[46] */ | ||
81 | MACHW_DECLARE(MAC_SCSI_96_2); /* 2nd 53c9[46] Q900 and Q950 */ | ||
82 | MACHW_DECLARE(IDE); /* IDE Interface */ | ||
83 | /* other I/O hardware */ | ||
84 | MACHW_DECLARE(SCC); /* Serial Communications Contr. */ | ||
85 | /* DMA */ | ||
86 | MACHW_DECLARE(SCSI_DMA); /* DMA for the NCR5380 */ | ||
87 | /* real time clocks */ | ||
88 | MACHW_DECLARE(RTC_CLK); /* clock chip */ | ||
89 | /* supporting hardware */ | ||
90 | MACHW_DECLARE(VIA1); /* Versatile Interface Ad. 1 */ | ||
91 | MACHW_DECLARE(VIA2); /* Versatile Interface Ad. 2 */ | ||
92 | MACHW_DECLARE(RBV); /* Versatile Interface Ad. 2+ */ | ||
93 | /* NUBUS */ | ||
94 | MACHW_DECLARE(NUBUS); /* NUBUS */ | ||
95 | }; | ||
96 | |||
97 | extern struct mac_hw_present mac_hw_present; | ||
98 | |||
99 | #endif /* __ASSEMBLY__ */ | 69 | #endif /* __ASSEMBLY__ */ |
100 | 70 | ||
101 | #endif /* linux/machw.h */ | 71 | #endif /* linux/machw.h */ |
diff --git a/include/asm-mips/bitops.h b/include/asm-mips/bitops.h index c2bd126c3b4e..642724734eba 100644 --- a/include/asm-mips/bitops.h +++ b/include/asm-mips/bitops.h | |||
@@ -558,11 +558,13 @@ static inline void __clear_bit_unlock(unsigned long nr, volatile unsigned long * | |||
558 | __clear_bit(nr, addr); | 558 | __clear_bit(nr, addr); |
559 | } | 559 | } |
560 | 560 | ||
561 | #if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64) | ||
562 | |||
561 | /* | 563 | /* |
562 | * Return the bit position (0..63) of the most significant 1 bit in a word | 564 | * Return the bit position (0..63) of the most significant 1 bit in a word |
563 | * Returns -1 if no 1 bit exists | 565 | * Returns -1 if no 1 bit exists |
564 | */ | 566 | */ |
565 | static inline int __ilog2(unsigned long x) | 567 | static inline unsigned long __fls(unsigned long x) |
566 | { | 568 | { |
567 | int lz; | 569 | int lz; |
568 | 570 | ||
@@ -591,13 +593,6 @@ static inline int __ilog2(unsigned long x) | |||
591 | return 63 - lz; | 593 | return 63 - lz; |
592 | } | 594 | } |
593 | 595 | ||
594 | static inline unsigned long __fls(unsigned long x) | ||
595 | { | ||
596 | return __ilog2(x); | ||
597 | } | ||
598 | |||
599 | #if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64) | ||
600 | |||
601 | /* | 596 | /* |
602 | * __ffs - find first bit in word. | 597 | * __ffs - find first bit in word. |
603 | * @word: The word to search | 598 | * @word: The word to search |
@@ -607,7 +602,7 @@ static inline unsigned long __fls(unsigned long x) | |||
607 | */ | 602 | */ |
608 | static inline unsigned long __ffs(unsigned long word) | 603 | static inline unsigned long __ffs(unsigned long word) |
609 | { | 604 | { |
610 | return __ilog2(word & -word); | 605 | return __fls(word & -word); |
611 | } | 606 | } |
612 | 607 | ||
613 | /* | 608 | /* |
@@ -654,6 +649,7 @@ static inline int ffs(int word) | |||
654 | #else | 649 | #else |
655 | 650 | ||
656 | #include <asm-generic/bitops/__ffs.h> | 651 | #include <asm-generic/bitops/__ffs.h> |
652 | #include <asm-generic/bitops/__fls.h> | ||
657 | #include <asm-generic/bitops/ffs.h> | 653 | #include <asm-generic/bitops/ffs.h> |
658 | #include <asm-generic/bitops/fls.h> | 654 | #include <asm-generic/bitops/fls.h> |
659 | #include <asm-generic/bitops/fls64.h> | 655 | #include <asm-generic/bitops/fls64.h> |
diff --git a/include/asm-mips/compiler.h b/include/asm-mips/compiler.h index aa6b876bbd78..71f5c5cfc58a 100644 --- a/include/asm-mips/compiler.h +++ b/include/asm-mips/compiler.h | |||
@@ -9,10 +9,10 @@ | |||
9 | #define _ASM_COMPILER_H | 9 | #define _ASM_COMPILER_H |
10 | 10 | ||
11 | #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) | 11 | #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) |
12 | #define GCC_IMM_ASM "n" | 12 | #define GCC_IMM_ASM() "n" |
13 | #define GCC_REG_ACCUM "$0" | 13 | #define GCC_REG_ACCUM "$0" |
14 | #else | 14 | #else |
15 | #define GCC_IMM_ASM "rn" | 15 | #define GCC_IMM_ASM() "rn" |
16 | #define GCC_REG_ACCUM "accum" | 16 | #define GCC_REG_ACCUM "accum" |
17 | #endif | 17 | #endif |
18 | 18 | ||
diff --git a/include/asm-mips/mach-au1x00/au1000.h b/include/asm-mips/mach-au1x00/au1000.h index a05555165d05..363a14ee0ae5 100644 --- a/include/asm-mips/mach-au1x00/au1000.h +++ b/include/asm-mips/mach-au1x00/au1000.h | |||
@@ -40,8 +40,8 @@ | |||
40 | #include <linux/delay.h> | 40 | #include <linux/delay.h> |
41 | #include <linux/types.h> | 41 | #include <linux/types.h> |
42 | 42 | ||
43 | #include <asm/io.h> | 43 | #include <linux/io.h> |
44 | #include <asm/irq.h> | 44 | #include <linux/irq.h> |
45 | 45 | ||
46 | /* cpu pipeline flush */ | 46 | /* cpu pipeline flush */ |
47 | void static inline au_sync(void) | 47 | void static inline au_sync(void) |
@@ -63,32 +63,32 @@ void static inline au_sync_delay(int ms) | |||
63 | 63 | ||
64 | void static inline au_writeb(u8 val, unsigned long reg) | 64 | void static inline au_writeb(u8 val, unsigned long reg) |
65 | { | 65 | { |
66 | *(volatile u8 *)(reg) = val; | 66 | *(volatile u8 *)reg = val; |
67 | } | 67 | } |
68 | 68 | ||
69 | void static inline au_writew(u16 val, unsigned long reg) | 69 | void static inline au_writew(u16 val, unsigned long reg) |
70 | { | 70 | { |
71 | *(volatile u16 *)(reg) = val; | 71 | *(volatile u16 *)reg = val; |
72 | } | 72 | } |
73 | 73 | ||
74 | void static inline au_writel(u32 val, unsigned long reg) | 74 | void static inline au_writel(u32 val, unsigned long reg) |
75 | { | 75 | { |
76 | *(volatile u32 *)(reg) = val; | 76 | *(volatile u32 *)reg = val; |
77 | } | 77 | } |
78 | 78 | ||
79 | static inline u8 au_readb(unsigned long reg) | 79 | static inline u8 au_readb(unsigned long reg) |
80 | { | 80 | { |
81 | return (*(volatile u8 *)reg); | 81 | return *(volatile u8 *)reg; |
82 | } | 82 | } |
83 | 83 | ||
84 | static inline u16 au_readw(unsigned long reg) | 84 | static inline u16 au_readw(unsigned long reg) |
85 | { | 85 | { |
86 | return (*(volatile u16 *)reg); | 86 | return *(volatile u16 *)reg; |
87 | } | 87 | } |
88 | 88 | ||
89 | static inline u32 au_readl(unsigned long reg) | 89 | static inline u32 au_readl(unsigned long reg) |
90 | { | 90 | { |
91 | return (*(volatile u32 *)reg); | 91 | return *(volatile u32 *)reg; |
92 | } | 92 | } |
93 | 93 | ||
94 | 94 | ||
@@ -117,76 +117,77 @@ extern struct au1xxx_irqmap au1xxx_irq_map[]; | |||
117 | #endif /* !defined (_LANGUAGE_ASSEMBLY) */ | 117 | #endif /* !defined (_LANGUAGE_ASSEMBLY) */ |
118 | 118 | ||
119 | /* | 119 | /* |
120 | * SDRAM Register Offsets | 120 | * SDRAM register offsets |
121 | */ | 121 | */ |
122 | #if defined(CONFIG_SOC_AU1000) || defined(CONFIG_SOC_AU1500) || defined(CONFIG_SOC_AU1100) | 122 | #if defined(CONFIG_SOC_AU1000) || defined(CONFIG_SOC_AU1500) || \ |
123 | #define MEM_SDMODE0 (0x0000) | 123 | defined(CONFIG_SOC_AU1100) |
124 | #define MEM_SDMODE1 (0x0004) | 124 | #define MEM_SDMODE0 0x0000 |
125 | #define MEM_SDMODE2 (0x0008) | 125 | #define MEM_SDMODE1 0x0004 |
126 | #define MEM_SDADDR0 (0x000C) | 126 | #define MEM_SDMODE2 0x0008 |
127 | #define MEM_SDADDR1 (0x0010) | 127 | #define MEM_SDADDR0 0x000C |
128 | #define MEM_SDADDR2 (0x0014) | 128 | #define MEM_SDADDR1 0x0010 |
129 | #define MEM_SDREFCFG (0x0018) | 129 | #define MEM_SDADDR2 0x0014 |
130 | #define MEM_SDPRECMD (0x001C) | 130 | #define MEM_SDREFCFG 0x0018 |
131 | #define MEM_SDAUTOREF (0x0020) | 131 | #define MEM_SDPRECMD 0x001C |
132 | #define MEM_SDWRMD0 (0x0024) | 132 | #define MEM_SDAUTOREF 0x0020 |
133 | #define MEM_SDWRMD1 (0x0028) | 133 | #define MEM_SDWRMD0 0x0024 |
134 | #define MEM_SDWRMD2 (0x002C) | 134 | #define MEM_SDWRMD1 0x0028 |
135 | #define MEM_SDSLEEP (0x0030) | 135 | #define MEM_SDWRMD2 0x002C |
136 | #define MEM_SDSMCKE (0x0034) | 136 | #define MEM_SDSLEEP 0x0030 |
137 | #define MEM_SDSMCKE 0x0034 | ||
137 | 138 | ||
138 | /* | 139 | /* |
139 | * MEM_SDMODE register content definitions | 140 | * MEM_SDMODE register content definitions |
140 | */ | 141 | */ |
141 | #define MEM_SDMODE_F (1<<22) | 142 | #define MEM_SDMODE_F (1 << 22) |
142 | #define MEM_SDMODE_SR (1<<21) | 143 | #define MEM_SDMODE_SR (1 << 21) |
143 | #define MEM_SDMODE_BS (1<<20) | 144 | #define MEM_SDMODE_BS (1 << 20) |
144 | #define MEM_SDMODE_RS (3<<18) | 145 | #define MEM_SDMODE_RS (3 << 18) |
145 | #define MEM_SDMODE_CS (7<<15) | 146 | #define MEM_SDMODE_CS (7 << 15) |
146 | #define MEM_SDMODE_TRAS (15<<11) | 147 | #define MEM_SDMODE_TRAS (15 << 11) |
147 | #define MEM_SDMODE_TMRD (3<<9) | 148 | #define MEM_SDMODE_TMRD (3 << 9) |
148 | #define MEM_SDMODE_TWR (3<<7) | 149 | #define MEM_SDMODE_TWR (3 << 7) |
149 | #define MEM_SDMODE_TRP (3<<5) | 150 | #define MEM_SDMODE_TRP (3 << 5) |
150 | #define MEM_SDMODE_TRCD (3<<3) | 151 | #define MEM_SDMODE_TRCD (3 << 3) |
151 | #define MEM_SDMODE_TCL (7<<0) | 152 | #define MEM_SDMODE_TCL (7 << 0) |
152 | 153 | ||
153 | #define MEM_SDMODE_BS_2Bank (0<<20) | 154 | #define MEM_SDMODE_BS_2Bank (0 << 20) |
154 | #define MEM_SDMODE_BS_4Bank (1<<20) | 155 | #define MEM_SDMODE_BS_4Bank (1 << 20) |
155 | #define MEM_SDMODE_RS_11Row (0<<18) | 156 | #define MEM_SDMODE_RS_11Row (0 << 18) |
156 | #define MEM_SDMODE_RS_12Row (1<<18) | 157 | #define MEM_SDMODE_RS_12Row (1 << 18) |
157 | #define MEM_SDMODE_RS_13Row (2<<18) | 158 | #define MEM_SDMODE_RS_13Row (2 << 18) |
158 | #define MEM_SDMODE_RS_N(N) ((N)<<18) | 159 | #define MEM_SDMODE_RS_N(N) ((N) << 18) |
159 | #define MEM_SDMODE_CS_7Col (0<<15) | 160 | #define MEM_SDMODE_CS_7Col (0 << 15) |
160 | #define MEM_SDMODE_CS_8Col (1<<15) | 161 | #define MEM_SDMODE_CS_8Col (1 << 15) |
161 | #define MEM_SDMODE_CS_9Col (2<<15) | 162 | #define MEM_SDMODE_CS_9Col (2 << 15) |
162 | #define MEM_SDMODE_CS_10Col (3<<15) | 163 | #define MEM_SDMODE_CS_10Col (3 << 15) |
163 | #define MEM_SDMODE_CS_11Col (4<<15) | 164 | #define MEM_SDMODE_CS_11Col (4 << 15) |
164 | #define MEM_SDMODE_CS_N(N) ((N)<<15) | 165 | #define MEM_SDMODE_CS_N(N) ((N) << 15) |
165 | #define MEM_SDMODE_TRAS_N(N) ((N)<<11) | 166 | #define MEM_SDMODE_TRAS_N(N) ((N) << 11) |
166 | #define MEM_SDMODE_TMRD_N(N) ((N)<<9) | 167 | #define MEM_SDMODE_TMRD_N(N) ((N) << 9) |
167 | #define MEM_SDMODE_TWR_N(N) ((N)<<7) | 168 | #define MEM_SDMODE_TWR_N(N) ((N) << 7) |
168 | #define MEM_SDMODE_TRP_N(N) ((N)<<5) | 169 | #define MEM_SDMODE_TRP_N(N) ((N) << 5) |
169 | #define MEM_SDMODE_TRCD_N(N) ((N)<<3) | 170 | #define MEM_SDMODE_TRCD_N(N) ((N) << 3) |
170 | #define MEM_SDMODE_TCL_N(N) ((N)<<0) | 171 | #define MEM_SDMODE_TCL_N(N) ((N) << 0) |
171 | 172 | ||
172 | /* | 173 | /* |
173 | * MEM_SDADDR register contents definitions | 174 | * MEM_SDADDR register contents definitions |
174 | */ | 175 | */ |
175 | #define MEM_SDADDR_E (1<<20) | 176 | #define MEM_SDADDR_E (1 << 20) |
176 | #define MEM_SDADDR_CSBA (0x03FF<<10) | 177 | #define MEM_SDADDR_CSBA (0x03FF << 10) |
177 | #define MEM_SDADDR_CSMASK (0x03FF<<0) | 178 | #define MEM_SDADDR_CSMASK (0x03FF << 0) |
178 | #define MEM_SDADDR_CSBA_N(N) ((N)&(0x03FF<<22)>>12) | 179 | #define MEM_SDADDR_CSBA_N(N) ((N) & (0x03FF << 22) >> 12) |
179 | #define MEM_SDADDR_CSMASK_N(N) ((N)&(0x03FF<<22)>>22) | 180 | #define MEM_SDADDR_CSMASK_N(N) ((N)&(0x03FF << 22) >> 22) |
180 | 181 | ||
181 | /* | 182 | /* |
182 | * MEM_SDREFCFG register content definitions | 183 | * MEM_SDREFCFG register content definitions |
183 | */ | 184 | */ |
184 | #define MEM_SDREFCFG_TRC (15<<28) | 185 | #define MEM_SDREFCFG_TRC (15 << 28) |
185 | #define MEM_SDREFCFG_TRPM (3<<26) | 186 | #define MEM_SDREFCFG_TRPM (3 << 26) |
186 | #define MEM_SDREFCFG_E (1<<25) | 187 | #define MEM_SDREFCFG_E (1 << 25) |
187 | #define MEM_SDREFCFG_RE (0x1ffffff<<0) | 188 | #define MEM_SDREFCFG_RE (0x1ffffff << 0) |
188 | #define MEM_SDREFCFG_TRC_N(N) ((N)<<MEM_SDREFCFG_TRC) | 189 | #define MEM_SDREFCFG_TRC_N(N) ((N) << MEM_SDREFCFG_TRC) |
189 | #define MEM_SDREFCFG_TRPM_N(N) ((N)<<MEM_SDREFCFG_TRPM) | 190 | #define MEM_SDREFCFG_TRPM_N(N) ((N) << MEM_SDREFCFG_TRPM) |
190 | #define MEM_SDREFCFG_REF_N(N) (N) | 191 | #define MEM_SDREFCFG_REF_N(N) (N) |
191 | #endif | 192 | #endif |
192 | 193 | ||
@@ -199,25 +200,25 @@ extern struct au1xxx_irqmap au1xxx_irq_map[]; | |||
199 | /***********************************************************************/ | 200 | /***********************************************************************/ |
200 | 201 | ||
201 | #if defined(CONFIG_SOC_AU1550) || defined(CONFIG_SOC_AU1200) | 202 | #if defined(CONFIG_SOC_AU1550) || defined(CONFIG_SOC_AU1200) |
202 | #define MEM_SDMODE0 (0x0800) | 203 | #define MEM_SDMODE0 0x0800 |
203 | #define MEM_SDMODE1 (0x0808) | 204 | #define MEM_SDMODE1 0x0808 |
204 | #define MEM_SDMODE2 (0x0810) | 205 | #define MEM_SDMODE2 0x0810 |
205 | #define MEM_SDADDR0 (0x0820) | 206 | #define MEM_SDADDR0 0x0820 |
206 | #define MEM_SDADDR1 (0x0828) | 207 | #define MEM_SDADDR1 0x0828 |
207 | #define MEM_SDADDR2 (0x0830) | 208 | #define MEM_SDADDR2 0x0830 |
208 | #define MEM_SDCONFIGA (0x0840) | 209 | #define MEM_SDCONFIGA 0x0840 |
209 | #define MEM_SDCONFIGB (0x0848) | 210 | #define MEM_SDCONFIGB 0x0848 |
210 | #define MEM_SDSTAT (0x0850) | 211 | #define MEM_SDSTAT 0x0850 |
211 | #define MEM_SDERRADDR (0x0858) | 212 | #define MEM_SDERRADDR 0x0858 |
212 | #define MEM_SDSTRIDE0 (0x0860) | 213 | #define MEM_SDSTRIDE0 0x0860 |
213 | #define MEM_SDSTRIDE1 (0x0868) | 214 | #define MEM_SDSTRIDE1 0x0868 |
214 | #define MEM_SDSTRIDE2 (0x0870) | 215 | #define MEM_SDSTRIDE2 0x0870 |
215 | #define MEM_SDWRMD0 (0x0880) | 216 | #define MEM_SDWRMD0 0x0880 |
216 | #define MEM_SDWRMD1 (0x0888) | 217 | #define MEM_SDWRMD1 0x0888 |
217 | #define MEM_SDWRMD2 (0x0890) | 218 | #define MEM_SDWRMD2 0x0890 |
218 | #define MEM_SDPRECMD (0x08C0) | 219 | #define MEM_SDPRECMD 0x08C0 |
219 | #define MEM_SDAUTOREF (0x08C8) | 220 | #define MEM_SDAUTOREF 0x08C8 |
220 | #define MEM_SDSREF (0x08D0) | 221 | #define MEM_SDSREF 0x08D0 |
221 | #define MEM_SDSLEEP MEM_SDSREF | 222 | #define MEM_SDSLEEP MEM_SDSREF |
222 | 223 | ||
223 | #endif | 224 | #endif |
@@ -256,9 +257,9 @@ extern struct au1xxx_irqmap au1xxx_irq_map[]; | |||
256 | #define SSI0_PHYS_ADDR 0x11600000 | 257 | #define SSI0_PHYS_ADDR 0x11600000 |
257 | #define SSI1_PHYS_ADDR 0x11680000 | 258 | #define SSI1_PHYS_ADDR 0x11680000 |
258 | #define SYS_PHYS_ADDR 0x11900000 | 259 | #define SYS_PHYS_ADDR 0x11900000 |
259 | #define PCMCIA_IO_PHYS_ADDR 0xF00000000ULL | 260 | #define PCMCIA_IO_PHYS_ADDR 0xF00000000ULL |
260 | #define PCMCIA_ATTR_PHYS_ADDR 0xF40000000ULL | 261 | #define PCMCIA_ATTR_PHYS_ADDR 0xF40000000ULL |
261 | #define PCMCIA_MEM_PHYS_ADDR 0xF80000000ULL | 262 | #define PCMCIA_MEM_PHYS_ADDR 0xF80000000ULL |
262 | #endif | 263 | #endif |
263 | 264 | ||
264 | /********************************************************************/ | 265 | /********************************************************************/ |
@@ -290,13 +291,13 @@ extern struct au1xxx_irqmap au1xxx_irq_map[]; | |||
290 | #define UART3_PHYS_ADDR 0x11400000 | 291 | #define UART3_PHYS_ADDR 0x11400000 |
291 | #define GPIO2_PHYS_ADDR 0x11700000 | 292 | #define GPIO2_PHYS_ADDR 0x11700000 |
292 | #define SYS_PHYS_ADDR 0x11900000 | 293 | #define SYS_PHYS_ADDR 0x11900000 |
293 | #define PCI_MEM_PHYS_ADDR 0x400000000ULL | 294 | #define PCI_MEM_PHYS_ADDR 0x400000000ULL |
294 | #define PCI_IO_PHYS_ADDR 0x500000000ULL | 295 | #define PCI_IO_PHYS_ADDR 0x500000000ULL |
295 | #define PCI_CONFIG0_PHYS_ADDR 0x600000000ULL | 296 | #define PCI_CONFIG0_PHYS_ADDR 0x600000000ULL |
296 | #define PCI_CONFIG1_PHYS_ADDR 0x680000000ULL | 297 | #define PCI_CONFIG1_PHYS_ADDR 0x680000000ULL |
297 | #define PCMCIA_IO_PHYS_ADDR 0xF00000000ULL | 298 | #define PCMCIA_IO_PHYS_ADDR 0xF00000000ULL |
298 | #define PCMCIA_ATTR_PHYS_ADDR 0xF40000000ULL | 299 | #define PCMCIA_ATTR_PHYS_ADDR 0xF40000000ULL |
299 | #define PCMCIA_MEM_PHYS_ADDR 0xF80000000ULL | 300 | #define PCMCIA_MEM_PHYS_ADDR 0xF80000000ULL |
300 | #endif | 301 | #endif |
301 | 302 | ||
302 | /********************************************************************/ | 303 | /********************************************************************/ |
@@ -333,9 +334,9 @@ extern struct au1xxx_irqmap au1xxx_irq_map[]; | |||
333 | #define GPIO2_PHYS_ADDR 0x11700000 | 334 | #define GPIO2_PHYS_ADDR 0x11700000 |
334 | #define SYS_PHYS_ADDR 0x11900000 | 335 | #define SYS_PHYS_ADDR 0x11900000 |
335 | #define LCD_PHYS_ADDR 0x15000000 | 336 | #define LCD_PHYS_ADDR 0x15000000 |
336 | #define PCMCIA_IO_PHYS_ADDR 0xF00000000ULL | 337 | #define PCMCIA_IO_PHYS_ADDR 0xF00000000ULL |
337 | #define PCMCIA_ATTR_PHYS_ADDR 0xF40000000ULL | 338 | #define PCMCIA_ATTR_PHYS_ADDR 0xF40000000ULL |
338 | #define PCMCIA_MEM_PHYS_ADDR 0xF80000000ULL | 339 | #define PCMCIA_MEM_PHYS_ADDR 0xF80000000ULL |
339 | #endif | 340 | #endif |
340 | 341 | ||
341 | /***********************************************************************/ | 342 | /***********************************************************************/ |
@@ -360,17 +361,17 @@ extern struct au1xxx_irqmap au1xxx_irq_map[]; | |||
360 | #define SYS_PHYS_ADDR 0x11900000 | 361 | #define SYS_PHYS_ADDR 0x11900000 |
361 | #define DDMA_PHYS_ADDR 0x14002000 | 362 | #define DDMA_PHYS_ADDR 0x14002000 |
362 | #define PE_PHYS_ADDR 0x14008000 | 363 | #define PE_PHYS_ADDR 0x14008000 |
363 | #define PSC0_PHYS_ADDR 0x11A00000 | 364 | #define PSC0_PHYS_ADDR 0x11A00000 |
364 | #define PSC1_PHYS_ADDR 0x11B00000 | 365 | #define PSC1_PHYS_ADDR 0x11B00000 |
365 | #define PSC2_PHYS_ADDR 0x10A00000 | 366 | #define PSC2_PHYS_ADDR 0x10A00000 |
366 | #define PSC3_PHYS_ADDR 0x10B00000 | 367 | #define PSC3_PHYS_ADDR 0x10B00000 |
367 | #define PCI_MEM_PHYS_ADDR 0x400000000ULL | 368 | #define PCI_MEM_PHYS_ADDR 0x400000000ULL |
368 | #define PCI_IO_PHYS_ADDR 0x500000000ULL | 369 | #define PCI_IO_PHYS_ADDR 0x500000000ULL |
369 | #define PCI_CONFIG0_PHYS_ADDR 0x600000000ULL | 370 | #define PCI_CONFIG0_PHYS_ADDR 0x600000000ULL |
370 | #define PCI_CONFIG1_PHYS_ADDR 0x680000000ULL | 371 | #define PCI_CONFIG1_PHYS_ADDR 0x680000000ULL |
371 | #define PCMCIA_IO_PHYS_ADDR 0xF00000000ULL | 372 | #define PCMCIA_IO_PHYS_ADDR 0xF00000000ULL |
372 | #define PCMCIA_ATTR_PHYS_ADDR 0xF40000000ULL | 373 | #define PCMCIA_ATTR_PHYS_ADDR 0xF40000000ULL |
373 | #define PCMCIA_MEM_PHYS_ADDR 0xF80000000ULL | 374 | #define PCMCIA_MEM_PHYS_ADDR 0xF80000000ULL |
374 | #endif | 375 | #endif |
375 | 376 | ||
376 | /***********************************************************************/ | 377 | /***********************************************************************/ |
@@ -397,122 +398,121 @@ extern struct au1xxx_irqmap au1xxx_irq_map[]; | |||
397 | #define SWCNT_PHYS_ADDR 0x1110010C | 398 | #define SWCNT_PHYS_ADDR 0x1110010C |
398 | #define MAEFE_PHYS_ADDR 0x14012000 | 399 | #define MAEFE_PHYS_ADDR 0x14012000 |
399 | #define MAEBE_PHYS_ADDR 0x14010000 | 400 | #define MAEBE_PHYS_ADDR 0x14010000 |
400 | #define PCMCIA_IO_PHYS_ADDR 0xF00000000ULL | 401 | #define PCMCIA_IO_PHYS_ADDR 0xF00000000ULL |
401 | #define PCMCIA_ATTR_PHYS_ADDR 0xF40000000ULL | 402 | #define PCMCIA_ATTR_PHYS_ADDR 0xF40000000ULL |
402 | #define PCMCIA_MEM_PHYS_ADDR 0xF80000000ULL | 403 | #define PCMCIA_MEM_PHYS_ADDR 0xF80000000ULL |
403 | #endif | 404 | #endif |
404 | 405 | ||
405 | |||
406 | /* Static Bus Controller */ | 406 | /* Static Bus Controller */ |
407 | #define MEM_STCFG0 0xB4001000 | 407 | #define MEM_STCFG0 0xB4001000 |
408 | #define MEM_STTIME0 0xB4001004 | 408 | #define MEM_STTIME0 0xB4001004 |
409 | #define MEM_STADDR0 0xB4001008 | 409 | #define MEM_STADDR0 0xB4001008 |
410 | 410 | ||
411 | #define MEM_STCFG1 0xB4001010 | 411 | #define MEM_STCFG1 0xB4001010 |
412 | #define MEM_STTIME1 0xB4001014 | 412 | #define MEM_STTIME1 0xB4001014 |
413 | #define MEM_STADDR1 0xB4001018 | 413 | #define MEM_STADDR1 0xB4001018 |
414 | 414 | ||
415 | #define MEM_STCFG2 0xB4001020 | 415 | #define MEM_STCFG2 0xB4001020 |
416 | #define MEM_STTIME2 0xB4001024 | 416 | #define MEM_STTIME2 0xB4001024 |
417 | #define MEM_STADDR2 0xB4001028 | 417 | #define MEM_STADDR2 0xB4001028 |
418 | 418 | ||
419 | #define MEM_STCFG3 0xB4001030 | 419 | #define MEM_STCFG3 0xB4001030 |
420 | #define MEM_STTIME3 0xB4001034 | 420 | #define MEM_STTIME3 0xB4001034 |
421 | #define MEM_STADDR3 0xB4001038 | 421 | #define MEM_STADDR3 0xB4001038 |
422 | 422 | ||
423 | #if defined(CONFIG_SOC_AU1550) || defined(CONFIG_SOC_AU1200) | 423 | #if defined(CONFIG_SOC_AU1550) || defined(CONFIG_SOC_AU1200) |
424 | #define MEM_STNDCTL 0xB4001100 | 424 | #define MEM_STNDCTL 0xB4001100 |
425 | #define MEM_STSTAT 0xB4001104 | 425 | #define MEM_STSTAT 0xB4001104 |
426 | 426 | ||
427 | #define MEM_STNAND_CMD (0x0) | 427 | #define MEM_STNAND_CMD 0x0 |
428 | #define MEM_STNAND_ADDR (0x4) | 428 | #define MEM_STNAND_ADDR 0x4 |
429 | #define MEM_STNAND_DATA (0x20) | 429 | #define MEM_STNAND_DATA 0x20 |
430 | #endif | 430 | #endif |
431 | 431 | ||
432 | /* Interrupt Controller 0 */ | 432 | /* Interrupt Controller 0 */ |
433 | #define IC0_CFG0RD 0xB0400040 | 433 | #define IC0_CFG0RD 0xB0400040 |
434 | #define IC0_CFG0SET 0xB0400040 | 434 | #define IC0_CFG0SET 0xB0400040 |
435 | #define IC0_CFG0CLR 0xB0400044 | 435 | #define IC0_CFG0CLR 0xB0400044 |
436 | 436 | ||
437 | #define IC0_CFG1RD 0xB0400048 | 437 | #define IC0_CFG1RD 0xB0400048 |
438 | #define IC0_CFG1SET 0xB0400048 | 438 | #define IC0_CFG1SET 0xB0400048 |
439 | #define IC0_CFG1CLR 0xB040004C | 439 | #define IC0_CFG1CLR 0xB040004C |
440 | 440 | ||
441 | #define IC0_CFG2RD 0xB0400050 | 441 | #define IC0_CFG2RD 0xB0400050 |
442 | #define IC0_CFG2SET 0xB0400050 | 442 | #define IC0_CFG2SET 0xB0400050 |
443 | #define IC0_CFG2CLR 0xB0400054 | 443 | #define IC0_CFG2CLR 0xB0400054 |
444 | 444 | ||
445 | #define IC0_REQ0INT 0xB0400054 | 445 | #define IC0_REQ0INT 0xB0400054 |
446 | #define IC0_SRCRD 0xB0400058 | 446 | #define IC0_SRCRD 0xB0400058 |
447 | #define IC0_SRCSET 0xB0400058 | 447 | #define IC0_SRCSET 0xB0400058 |
448 | #define IC0_SRCCLR 0xB040005C | 448 | #define IC0_SRCCLR 0xB040005C |
449 | #define IC0_REQ1INT 0xB040005C | 449 | #define IC0_REQ1INT 0xB040005C |
450 | 450 | ||
451 | #define IC0_ASSIGNRD 0xB0400060 | 451 | #define IC0_ASSIGNRD 0xB0400060 |
452 | #define IC0_ASSIGNSET 0xB0400060 | 452 | #define IC0_ASSIGNSET 0xB0400060 |
453 | #define IC0_ASSIGNCLR 0xB0400064 | 453 | #define IC0_ASSIGNCLR 0xB0400064 |
454 | 454 | ||
455 | #define IC0_WAKERD 0xB0400068 | 455 | #define IC0_WAKERD 0xB0400068 |
456 | #define IC0_WAKESET 0xB0400068 | 456 | #define IC0_WAKESET 0xB0400068 |
457 | #define IC0_WAKECLR 0xB040006C | 457 | #define IC0_WAKECLR 0xB040006C |
458 | 458 | ||
459 | #define IC0_MASKRD 0xB0400070 | 459 | #define IC0_MASKRD 0xB0400070 |
460 | #define IC0_MASKSET 0xB0400070 | 460 | #define IC0_MASKSET 0xB0400070 |
461 | #define IC0_MASKCLR 0xB0400074 | 461 | #define IC0_MASKCLR 0xB0400074 |
462 | 462 | ||
463 | #define IC0_RISINGRD 0xB0400078 | 463 | #define IC0_RISINGRD 0xB0400078 |
464 | #define IC0_RISINGCLR 0xB0400078 | 464 | #define IC0_RISINGCLR 0xB0400078 |
465 | #define IC0_FALLINGRD 0xB040007C | 465 | #define IC0_FALLINGRD 0xB040007C |
466 | #define IC0_FALLINGCLR 0xB040007C | 466 | #define IC0_FALLINGCLR 0xB040007C |
467 | 467 | ||
468 | #define IC0_TESTBIT 0xB0400080 | 468 | #define IC0_TESTBIT 0xB0400080 |
469 | 469 | ||
470 | /* Interrupt Controller 1 */ | 470 | /* Interrupt Controller 1 */ |
471 | #define IC1_CFG0RD 0xB1800040 | 471 | #define IC1_CFG0RD 0xB1800040 |
472 | #define IC1_CFG0SET 0xB1800040 | 472 | #define IC1_CFG0SET 0xB1800040 |
473 | #define IC1_CFG0CLR 0xB1800044 | 473 | #define IC1_CFG0CLR 0xB1800044 |
474 | 474 | ||
475 | #define IC1_CFG1RD 0xB1800048 | 475 | #define IC1_CFG1RD 0xB1800048 |
476 | #define IC1_CFG1SET 0xB1800048 | 476 | #define IC1_CFG1SET 0xB1800048 |
477 | #define IC1_CFG1CLR 0xB180004C | 477 | #define IC1_CFG1CLR 0xB180004C |
478 | 478 | ||
479 | #define IC1_CFG2RD 0xB1800050 | 479 | #define IC1_CFG2RD 0xB1800050 |
480 | #define IC1_CFG2SET 0xB1800050 | 480 | #define IC1_CFG2SET 0xB1800050 |
481 | #define IC1_CFG2CLR 0xB1800054 | 481 | #define IC1_CFG2CLR 0xB1800054 |
482 | 482 | ||
483 | #define IC1_REQ0INT 0xB1800054 | 483 | #define IC1_REQ0INT 0xB1800054 |
484 | #define IC1_SRCRD 0xB1800058 | 484 | #define IC1_SRCRD 0xB1800058 |
485 | #define IC1_SRCSET 0xB1800058 | 485 | #define IC1_SRCSET 0xB1800058 |
486 | #define IC1_SRCCLR 0xB180005C | 486 | #define IC1_SRCCLR 0xB180005C |
487 | #define IC1_REQ1INT 0xB180005C | 487 | #define IC1_REQ1INT 0xB180005C |
488 | 488 | ||
489 | #define IC1_ASSIGNRD 0xB1800060 | 489 | #define IC1_ASSIGNRD 0xB1800060 |
490 | #define IC1_ASSIGNSET 0xB1800060 | 490 | #define IC1_ASSIGNSET 0xB1800060 |
491 | #define IC1_ASSIGNCLR 0xB1800064 | 491 | #define IC1_ASSIGNCLR 0xB1800064 |
492 | 492 | ||
493 | #define IC1_WAKERD 0xB1800068 | 493 | #define IC1_WAKERD 0xB1800068 |
494 | #define IC1_WAKESET 0xB1800068 | 494 | #define IC1_WAKESET 0xB1800068 |
495 | #define IC1_WAKECLR 0xB180006C | 495 | #define IC1_WAKECLR 0xB180006C |
496 | 496 | ||
497 | #define IC1_MASKRD 0xB1800070 | 497 | #define IC1_MASKRD 0xB1800070 |
498 | #define IC1_MASKSET 0xB1800070 | 498 | #define IC1_MASKSET 0xB1800070 |
499 | #define IC1_MASKCLR 0xB1800074 | 499 | #define IC1_MASKCLR 0xB1800074 |
500 | 500 | ||
501 | #define IC1_RISINGRD 0xB1800078 | 501 | #define IC1_RISINGRD 0xB1800078 |
502 | #define IC1_RISINGCLR 0xB1800078 | 502 | #define IC1_RISINGCLR 0xB1800078 |
503 | #define IC1_FALLINGRD 0xB180007C | 503 | #define IC1_FALLINGRD 0xB180007C |
504 | #define IC1_FALLINGCLR 0xB180007C | 504 | #define IC1_FALLINGCLR 0xB180007C |
505 | 505 | ||
506 | #define IC1_TESTBIT 0xB1800080 | 506 | #define IC1_TESTBIT 0xB1800080 |
507 | 507 | ||
508 | /* Interrupt Configuration Modes */ | 508 | /* Interrupt Configuration Modes */ |
509 | #define INTC_INT_DISABLED 0 | 509 | #define INTC_INT_DISABLED 0x0 |
510 | #define INTC_INT_RISE_EDGE 0x1 | 510 | #define INTC_INT_RISE_EDGE 0x1 |
511 | #define INTC_INT_FALL_EDGE 0x2 | 511 | #define INTC_INT_FALL_EDGE 0x2 |
512 | #define INTC_INT_RISE_AND_FALL_EDGE 0x3 | 512 | #define INTC_INT_RISE_AND_FALL_EDGE 0x3 |
513 | #define INTC_INT_HIGH_LEVEL 0x5 | 513 | #define INTC_INT_HIGH_LEVEL 0x5 |
514 | #define INTC_INT_LOW_LEVEL 0x6 | 514 | #define INTC_INT_LOW_LEVEL 0x6 |
515 | #define INTC_INT_HIGH_AND_LOW_LEVEL 0x7 | 515 | #define INTC_INT_HIGH_AND_LOW_LEVEL 0x7 |
516 | 516 | ||
517 | /* Interrupt Numbers */ | 517 | /* Interrupt Numbers */ |
518 | /* Au1000 */ | 518 | /* Au1000 */ |
@@ -579,18 +579,18 @@ enum soc_au1000_ints { | |||
579 | AU1000_GPIO_31, | 579 | AU1000_GPIO_31, |
580 | }; | 580 | }; |
581 | 581 | ||
582 | #define UART0_ADDR 0xB1100000 | 582 | #define UART0_ADDR 0xB1100000 |
583 | #define UART1_ADDR 0xB1200000 | 583 | #define UART1_ADDR 0xB1200000 |
584 | #define UART2_ADDR 0xB1300000 | 584 | #define UART2_ADDR 0xB1300000 |
585 | #define UART3_ADDR 0xB1400000 | 585 | #define UART3_ADDR 0xB1400000 |
586 | 586 | ||
587 | #define USB_OHCI_BASE 0x10100000 // phys addr for ioremap | 587 | #define USB_OHCI_BASE 0x10100000 /* phys addr for ioremap */ |
588 | #define USB_HOST_CONFIG 0xB017fffc | 588 | #define USB_HOST_CONFIG 0xB017FFFC |
589 | 589 | ||
590 | #define AU1000_ETH0_BASE 0xB0500000 | 590 | #define AU1000_ETH0_BASE 0xB0500000 |
591 | #define AU1000_ETH1_BASE 0xB0510000 | 591 | #define AU1000_ETH1_BASE 0xB0510000 |
592 | #define AU1000_MAC0_ENABLE 0xB0520000 | 592 | #define AU1000_MAC0_ENABLE 0xB0520000 |
593 | #define AU1000_MAC1_ENABLE 0xB0520004 | 593 | #define AU1000_MAC1_ENABLE 0xB0520004 |
594 | #define NUM_ETH_INTERFACES 2 | 594 | #define NUM_ETH_INTERFACES 2 |
595 | #endif /* CONFIG_SOC_AU1000 */ | 595 | #endif /* CONFIG_SOC_AU1000 */ |
596 | 596 | ||
@@ -662,16 +662,16 @@ enum soc_au1500_ints { | |||
662 | #define INTC AU1000_PCI_INTC | 662 | #define INTC AU1000_PCI_INTC |
663 | #define INTD AU1000_PCI_INTD | 663 | #define INTD AU1000_PCI_INTD |
664 | 664 | ||
665 | #define UART0_ADDR 0xB1100000 | 665 | #define UART0_ADDR 0xB1100000 |
666 | #define UART3_ADDR 0xB1400000 | 666 | #define UART3_ADDR 0xB1400000 |
667 | 667 | ||
668 | #define USB_OHCI_BASE 0x10100000 // phys addr for ioremap | 668 | #define USB_OHCI_BASE 0x10100000 /* phys addr for ioremap */ |
669 | #define USB_HOST_CONFIG 0xB017fffc | 669 | #define USB_HOST_CONFIG 0xB017fffc |
670 | 670 | ||
671 | #define AU1500_ETH0_BASE 0xB1500000 | 671 | #define AU1500_ETH0_BASE 0xB1500000 |
672 | #define AU1500_ETH1_BASE 0xB1510000 | 672 | #define AU1500_ETH1_BASE 0xB1510000 |
673 | #define AU1500_MAC0_ENABLE 0xB1520000 | 673 | #define AU1500_MAC0_ENABLE 0xB1520000 |
674 | #define AU1500_MAC1_ENABLE 0xB1520004 | 674 | #define AU1500_MAC1_ENABLE 0xB1520004 |
675 | #define NUM_ETH_INTERFACES 2 | 675 | #define NUM_ETH_INTERFACES 2 |
676 | #endif /* CONFIG_SOC_AU1500 */ | 676 | #endif /* CONFIG_SOC_AU1500 */ |
677 | 677 | ||
@@ -739,15 +739,15 @@ enum soc_au1100_ints { | |||
739 | AU1000_GPIO_31, | 739 | AU1000_GPIO_31, |
740 | }; | 740 | }; |
741 | 741 | ||
742 | #define UART0_ADDR 0xB1100000 | 742 | #define UART0_ADDR 0xB1100000 |
743 | #define UART1_ADDR 0xB1200000 | 743 | #define UART1_ADDR 0xB1200000 |
744 | #define UART3_ADDR 0xB1400000 | 744 | #define UART3_ADDR 0xB1400000 |
745 | 745 | ||
746 | #define USB_OHCI_BASE 0x10100000 // phys addr for ioremap | 746 | #define USB_OHCI_BASE 0x10100000 /* phys addr for ioremap */ |
747 | #define USB_HOST_CONFIG 0xB017fffc | 747 | #define USB_HOST_CONFIG 0xB017FFFC |
748 | 748 | ||
749 | #define AU1100_ETH0_BASE 0xB0500000 | 749 | #define AU1100_ETH0_BASE 0xB0500000 |
750 | #define AU1100_MAC0_ENABLE 0xB0520000 | 750 | #define AU1100_MAC0_ENABLE 0xB0520000 |
751 | #define NUM_ETH_INTERFACES 1 | 751 | #define NUM_ETH_INTERFACES 1 |
752 | #endif /* CONFIG_SOC_AU1100 */ | 752 | #endif /* CONFIG_SOC_AU1100 */ |
753 | 753 | ||
@@ -826,18 +826,18 @@ enum soc_au1550_ints { | |||
826 | #define INTC AU1550_PCI_INTC | 826 | #define INTC AU1550_PCI_INTC |
827 | #define INTD AU1550_PCI_INTD | 827 | #define INTD AU1550_PCI_INTD |
828 | 828 | ||
829 | #define UART0_ADDR 0xB1100000 | 829 | #define UART0_ADDR 0xB1100000 |
830 | #define UART1_ADDR 0xB1200000 | 830 | #define UART1_ADDR 0xB1200000 |
831 | #define UART3_ADDR 0xB1400000 | 831 | #define UART3_ADDR 0xB1400000 |
832 | 832 | ||
833 | #define USB_OHCI_BASE 0x14020000 // phys addr for ioremap | 833 | #define USB_OHCI_BASE 0x14020000 /* phys addr for ioremap */ |
834 | #define USB_OHCI_LEN 0x00060000 | 834 | #define USB_OHCI_LEN 0x00060000 |
835 | #define USB_HOST_CONFIG 0xB4027ffc | 835 | #define USB_HOST_CONFIG 0xB4027ffc |
836 | 836 | ||
837 | #define AU1550_ETH0_BASE 0xB0500000 | 837 | #define AU1550_ETH0_BASE 0xB0500000 |
838 | #define AU1550_ETH1_BASE 0xB0510000 | 838 | #define AU1550_ETH1_BASE 0xB0510000 |
839 | #define AU1550_MAC0_ENABLE 0xB0520000 | 839 | #define AU1550_MAC0_ENABLE 0xB0520000 |
840 | #define AU1550_MAC1_ENABLE 0xB0520004 | 840 | #define AU1550_MAC1_ENABLE 0xB0520004 |
841 | #define NUM_ETH_INTERFACES 2 | 841 | #define NUM_ETH_INTERFACES 2 |
842 | #endif /* CONFIG_SOC_AU1550 */ | 842 | #endif /* CONFIG_SOC_AU1550 */ |
843 | 843 | ||
@@ -911,32 +911,32 @@ enum soc_au1200_ints { | |||
911 | AU1000_GPIO_31, | 911 | AU1000_GPIO_31, |
912 | }; | 912 | }; |
913 | 913 | ||
914 | #define UART0_ADDR 0xB1100000 | 914 | #define UART0_ADDR 0xB1100000 |
915 | #define UART1_ADDR 0xB1200000 | 915 | #define UART1_ADDR 0xB1200000 |
916 | 916 | ||
917 | #define USB_UOC_BASE 0x14020020 | 917 | #define USB_UOC_BASE 0x14020020 |
918 | #define USB_UOC_LEN 0x20 | 918 | #define USB_UOC_LEN 0x20 |
919 | #define USB_OHCI_BASE 0x14020100 | 919 | #define USB_OHCI_BASE 0x14020100 |
920 | #define USB_OHCI_LEN 0x100 | 920 | #define USB_OHCI_LEN 0x100 |
921 | #define USB_EHCI_BASE 0x14020200 | 921 | #define USB_EHCI_BASE 0x14020200 |
922 | #define USB_EHCI_LEN 0x100 | 922 | #define USB_EHCI_LEN 0x100 |
923 | #define USB_UDC_BASE 0x14022000 | 923 | #define USB_UDC_BASE 0x14022000 |
924 | #define USB_UDC_LEN 0x2000 | 924 | #define USB_UDC_LEN 0x2000 |
925 | #define USB_MSR_BASE 0xB4020000 | 925 | #define USB_MSR_BASE 0xB4020000 |
926 | #define USB_MSR_MCFG 4 | 926 | #define USB_MSR_MCFG 4 |
927 | #define USBMSRMCFG_OMEMEN 0 | 927 | #define USBMSRMCFG_OMEMEN 0 |
928 | #define USBMSRMCFG_OBMEN 1 | 928 | #define USBMSRMCFG_OBMEN 1 |
929 | #define USBMSRMCFG_EMEMEN 2 | 929 | #define USBMSRMCFG_EMEMEN 2 |
930 | #define USBMSRMCFG_EBMEN 3 | 930 | #define USBMSRMCFG_EBMEN 3 |
931 | #define USBMSRMCFG_DMEMEN 4 | 931 | #define USBMSRMCFG_DMEMEN 4 |
932 | #define USBMSRMCFG_DBMEN 5 | 932 | #define USBMSRMCFG_DBMEN 5 |
933 | #define USBMSRMCFG_GMEMEN 6 | 933 | #define USBMSRMCFG_GMEMEN 6 |
934 | #define USBMSRMCFG_OHCCLKEN 16 | 934 | #define USBMSRMCFG_OHCCLKEN 16 |
935 | #define USBMSRMCFG_EHCCLKEN 17 | 935 | #define USBMSRMCFG_EHCCLKEN 17 |
936 | #define USBMSRMCFG_UDCCLKEN 18 | 936 | #define USBMSRMCFG_UDCCLKEN 18 |
937 | #define USBMSRMCFG_PHYPLLEN 19 | 937 | #define USBMSRMCFG_PHYPLLEN 19 |
938 | #define USBMSRMCFG_RDCOMB 30 | 938 | #define USBMSRMCFG_RDCOMB 30 |
939 | #define USBMSRMCFG_PFEN 31 | 939 | #define USBMSRMCFG_PFEN 31 |
940 | 940 | ||
941 | #endif /* CONFIG_SOC_AU1200 */ | 941 | #endif /* CONFIG_SOC_AU1200 */ |
942 | 942 | ||
@@ -949,259 +949,258 @@ enum soc_au1200_ints { | |||
949 | #define INTX 0xFF /* not valid */ | 949 | #define INTX 0xFF /* not valid */ |
950 | 950 | ||
951 | /* Programmable Counters 0 and 1 */ | 951 | /* Programmable Counters 0 and 1 */ |
952 | #define SYS_BASE 0xB1900000 | 952 | #define SYS_BASE 0xB1900000 |
953 | #define SYS_COUNTER_CNTRL (SYS_BASE + 0x14) | 953 | #define SYS_COUNTER_CNTRL (SYS_BASE + 0x14) |
954 | # define SYS_CNTRL_E1S (1<<23) | 954 | # define SYS_CNTRL_E1S (1 << 23) |
955 | # define SYS_CNTRL_T1S (1<<20) | 955 | # define SYS_CNTRL_T1S (1 << 20) |
956 | # define SYS_CNTRL_M21 (1<<19) | 956 | # define SYS_CNTRL_M21 (1 << 19) |
957 | # define SYS_CNTRL_M11 (1<<18) | 957 | # define SYS_CNTRL_M11 (1 << 18) |
958 | # define SYS_CNTRL_M01 (1<<17) | 958 | # define SYS_CNTRL_M01 (1 << 17) |
959 | # define SYS_CNTRL_C1S (1<<16) | 959 | # define SYS_CNTRL_C1S (1 << 16) |
960 | # define SYS_CNTRL_BP (1<<14) | 960 | # define SYS_CNTRL_BP (1 << 14) |
961 | # define SYS_CNTRL_EN1 (1<<13) | 961 | # define SYS_CNTRL_EN1 (1 << 13) |
962 | # define SYS_CNTRL_BT1 (1<<12) | 962 | # define SYS_CNTRL_BT1 (1 << 12) |
963 | # define SYS_CNTRL_EN0 (1<<11) | 963 | # define SYS_CNTRL_EN0 (1 << 11) |
964 | # define SYS_CNTRL_BT0 (1<<10) | 964 | # define SYS_CNTRL_BT0 (1 << 10) |
965 | # define SYS_CNTRL_E0 (1<<8) | 965 | # define SYS_CNTRL_E0 (1 << 8) |
966 | # define SYS_CNTRL_E0S (1<<7) | 966 | # define SYS_CNTRL_E0S (1 << 7) |
967 | # define SYS_CNTRL_32S (1<<5) | 967 | # define SYS_CNTRL_32S (1 << 5) |
968 | # define SYS_CNTRL_T0S (1<<4) | 968 | # define SYS_CNTRL_T0S (1 << 4) |
969 | # define SYS_CNTRL_M20 (1<<3) | 969 | # define SYS_CNTRL_M20 (1 << 3) |
970 | # define SYS_CNTRL_M10 (1<<2) | 970 | # define SYS_CNTRL_M10 (1 << 2) |
971 | # define SYS_CNTRL_M00 (1<<1) | 971 | # define SYS_CNTRL_M00 (1 << 1) |
972 | # define SYS_CNTRL_C0S (1<<0) | 972 | # define SYS_CNTRL_C0S (1 << 0) |
973 | 973 | ||
974 | /* Programmable Counter 0 Registers */ | 974 | /* Programmable Counter 0 Registers */ |
975 | #define SYS_TOYTRIM (SYS_BASE + 0) | 975 | #define SYS_TOYTRIM (SYS_BASE + 0) |
976 | #define SYS_TOYWRITE (SYS_BASE + 4) | 976 | #define SYS_TOYWRITE (SYS_BASE + 4) |
977 | #define SYS_TOYMATCH0 (SYS_BASE + 8) | 977 | #define SYS_TOYMATCH0 (SYS_BASE + 8) |
978 | #define SYS_TOYMATCH1 (SYS_BASE + 0xC) | 978 | #define SYS_TOYMATCH1 (SYS_BASE + 0xC) |
979 | #define SYS_TOYMATCH2 (SYS_BASE + 0x10) | 979 | #define SYS_TOYMATCH2 (SYS_BASE + 0x10) |
980 | #define SYS_TOYREAD (SYS_BASE + 0x40) | 980 | #define SYS_TOYREAD (SYS_BASE + 0x40) |
981 | 981 | ||
982 | /* Programmable Counter 1 Registers */ | 982 | /* Programmable Counter 1 Registers */ |
983 | #define SYS_RTCTRIM (SYS_BASE + 0x44) | 983 | #define SYS_RTCTRIM (SYS_BASE + 0x44) |
984 | #define SYS_RTCWRITE (SYS_BASE + 0x48) | 984 | #define SYS_RTCWRITE (SYS_BASE + 0x48) |
985 | #define SYS_RTCMATCH0 (SYS_BASE + 0x4C) | 985 | #define SYS_RTCMATCH0 (SYS_BASE + 0x4C) |
986 | #define SYS_RTCMATCH1 (SYS_BASE + 0x50) | 986 | #define SYS_RTCMATCH1 (SYS_BASE + 0x50) |
987 | #define SYS_RTCMATCH2 (SYS_BASE + 0x54) | 987 | #define SYS_RTCMATCH2 (SYS_BASE + 0x54) |
988 | #define SYS_RTCREAD (SYS_BASE + 0x58) | 988 | #define SYS_RTCREAD (SYS_BASE + 0x58) |
989 | 989 | ||
990 | /* I2S Controller */ | 990 | /* I2S Controller */ |
991 | #define I2S_DATA 0xB1000000 | 991 | #define I2S_DATA 0xB1000000 |
992 | # define I2S_DATA_MASK (0xffffff) | 992 | # define I2S_DATA_MASK 0xffffff |
993 | #define I2S_CONFIG 0xB1000004 | 993 | #define I2S_CONFIG 0xB1000004 |
994 | # define I2S_CONFIG_XU (1<<25) | 994 | # define I2S_CONFIG_XU (1 << 25) |
995 | # define I2S_CONFIG_XO (1<<24) | 995 | # define I2S_CONFIG_XO (1 << 24) |
996 | # define I2S_CONFIG_RU (1<<23) | 996 | # define I2S_CONFIG_RU (1 << 23) |
997 | # define I2S_CONFIG_RO (1<<22) | 997 | # define I2S_CONFIG_RO (1 << 22) |
998 | # define I2S_CONFIG_TR (1<<21) | 998 | # define I2S_CONFIG_TR (1 << 21) |
999 | # define I2S_CONFIG_TE (1<<20) | 999 | # define I2S_CONFIG_TE (1 << 20) |
1000 | # define I2S_CONFIG_TF (1<<19) | 1000 | # define I2S_CONFIG_TF (1 << 19) |
1001 | # define I2S_CONFIG_RR (1<<18) | 1001 | # define I2S_CONFIG_RR (1 << 18) |
1002 | # define I2S_CONFIG_RE (1<<17) | 1002 | # define I2S_CONFIG_RE (1 << 17) |
1003 | # define I2S_CONFIG_RF (1<<16) | 1003 | # define I2S_CONFIG_RF (1 << 16) |
1004 | # define I2S_CONFIG_PD (1<<11) | 1004 | # define I2S_CONFIG_PD (1 << 11) |
1005 | # define I2S_CONFIG_LB (1<<10) | 1005 | # define I2S_CONFIG_LB (1 << 10) |
1006 | # define I2S_CONFIG_IC (1<<9) | 1006 | # define I2S_CONFIG_IC (1 << 9) |
1007 | # define I2S_CONFIG_FM_BIT 7 | 1007 | # define I2S_CONFIG_FM_BIT 7 |
1008 | # define I2S_CONFIG_FM_MASK (0x3 << I2S_CONFIG_FM_BIT) | 1008 | # define I2S_CONFIG_FM_MASK (0x3 << I2S_CONFIG_FM_BIT) |
1009 | # define I2S_CONFIG_FM_I2S (0x0 << I2S_CONFIG_FM_BIT) | 1009 | # define I2S_CONFIG_FM_I2S (0x0 << I2S_CONFIG_FM_BIT) |
1010 | # define I2S_CONFIG_FM_LJ (0x1 << I2S_CONFIG_FM_BIT) | 1010 | # define I2S_CONFIG_FM_LJ (0x1 << I2S_CONFIG_FM_BIT) |
1011 | # define I2S_CONFIG_FM_RJ (0x2 << I2S_CONFIG_FM_BIT) | 1011 | # define I2S_CONFIG_FM_RJ (0x2 << I2S_CONFIG_FM_BIT) |
1012 | # define I2S_CONFIG_TN (1<<6) | 1012 | # define I2S_CONFIG_TN (1 << 6) |
1013 | # define I2S_CONFIG_RN (1<<5) | 1013 | # define I2S_CONFIG_RN (1 << 5) |
1014 | # define I2S_CONFIG_SZ_BIT 0 | 1014 | # define I2S_CONFIG_SZ_BIT 0 |
1015 | # define I2S_CONFIG_SZ_MASK (0x1F << I2S_CONFIG_SZ_BIT) | 1015 | # define I2S_CONFIG_SZ_MASK (0x1F << I2S_CONFIG_SZ_BIT) |
1016 | 1016 | ||
1017 | #define I2S_CONTROL 0xB1000008 | 1017 | #define I2S_CONTROL 0xB1000008 |
1018 | # define I2S_CONTROL_D (1<<1) | 1018 | # define I2S_CONTROL_D (1 << 1) |
1019 | # define I2S_CONTROL_CE (1<<0) | 1019 | # define I2S_CONTROL_CE (1 << 0) |
1020 | 1020 | ||
1021 | /* USB Host Controller */ | 1021 | /* USB Host Controller */ |
1022 | #ifndef USB_OHCI_LEN | 1022 | #ifndef USB_OHCI_LEN |
1023 | #define USB_OHCI_LEN 0x00100000 | 1023 | #define USB_OHCI_LEN 0x00100000 |
1024 | #endif | 1024 | #endif |
1025 | 1025 | ||
1026 | #ifndef CONFIG_SOC_AU1200 | 1026 | #ifndef CONFIG_SOC_AU1200 |
1027 | 1027 | ||
1028 | /* USB Device Controller */ | 1028 | /* USB Device Controller */ |
1029 | #define USBD_EP0RD 0xB0200000 | 1029 | #define USBD_EP0RD 0xB0200000 |
1030 | #define USBD_EP0WR 0xB0200004 | 1030 | #define USBD_EP0WR 0xB0200004 |
1031 | #define USBD_EP2WR 0xB0200008 | 1031 | #define USBD_EP2WR 0xB0200008 |
1032 | #define USBD_EP3WR 0xB020000C | 1032 | #define USBD_EP3WR 0xB020000C |
1033 | #define USBD_EP4RD 0xB0200010 | 1033 | #define USBD_EP4RD 0xB0200010 |
1034 | #define USBD_EP5RD 0xB0200014 | 1034 | #define USBD_EP5RD 0xB0200014 |
1035 | #define USBD_INTEN 0xB0200018 | 1035 | #define USBD_INTEN 0xB0200018 |
1036 | #define USBD_INTSTAT 0xB020001C | 1036 | #define USBD_INTSTAT 0xB020001C |
1037 | # define USBDEV_INT_SOF (1<<12) | 1037 | # define USBDEV_INT_SOF (1 << 12) |
1038 | # define USBDEV_INT_HF_BIT 6 | 1038 | # define USBDEV_INT_HF_BIT 6 |
1039 | # define USBDEV_INT_HF_MASK (0x3f << USBDEV_INT_HF_BIT) | 1039 | # define USBDEV_INT_HF_MASK 0x3f << USBDEV_INT_HF_BIT) |
1040 | # define USBDEV_INT_CMPLT_BIT 0 | 1040 | # define USBDEV_INT_CMPLT_BIT 0 |
1041 | # define USBDEV_INT_CMPLT_MASK (0x3f << USBDEV_INT_CMPLT_BIT) | 1041 | # define USBDEV_INT_CMPLT_MASK (0x3f << USBDEV_INT_CMPLT_BIT) |
1042 | #define USBD_CONFIG 0xB0200020 | 1042 | #define USBD_CONFIG 0xB0200020 |
1043 | #define USBD_EP0CS 0xB0200024 | 1043 | #define USBD_EP0CS 0xB0200024 |
1044 | #define USBD_EP2CS 0xB0200028 | 1044 | #define USBD_EP2CS 0xB0200028 |
1045 | #define USBD_EP3CS 0xB020002C | 1045 | #define USBD_EP3CS 0xB020002C |
1046 | #define USBD_EP4CS 0xB0200030 | 1046 | #define USBD_EP4CS 0xB0200030 |
1047 | #define USBD_EP5CS 0xB0200034 | 1047 | #define USBD_EP5CS 0xB0200034 |
1048 | # define USBDEV_CS_SU (1<<14) | 1048 | # define USBDEV_CS_SU (1 << 14) |
1049 | # define USBDEV_CS_NAK (1<<13) | 1049 | # define USBDEV_CS_NAK (1 << 13) |
1050 | # define USBDEV_CS_ACK (1<<12) | 1050 | # define USBDEV_CS_ACK (1 << 12) |
1051 | # define USBDEV_CS_BUSY (1<<11) | 1051 | # define USBDEV_CS_BUSY (1 << 11) |
1052 | # define USBDEV_CS_TSIZE_BIT 1 | 1052 | # define USBDEV_CS_TSIZE_BIT 1 |
1053 | # define USBDEV_CS_TSIZE_MASK (0x3ff << USBDEV_CS_TSIZE_BIT) | 1053 | # define USBDEV_CS_TSIZE_MASK (0x3ff << USBDEV_CS_TSIZE_BIT) |
1054 | # define USBDEV_CS_STALL (1<<0) | 1054 | # define USBDEV_CS_STALL (1 << 0) |
1055 | #define USBD_EP0RDSTAT 0xB0200040 | 1055 | #define USBD_EP0RDSTAT 0xB0200040 |
1056 | #define USBD_EP0WRSTAT 0xB0200044 | 1056 | #define USBD_EP0WRSTAT 0xB0200044 |
1057 | #define USBD_EP2WRSTAT 0xB0200048 | 1057 | #define USBD_EP2WRSTAT 0xB0200048 |
1058 | #define USBD_EP3WRSTAT 0xB020004C | 1058 | #define USBD_EP3WRSTAT 0xB020004C |
1059 | #define USBD_EP4RDSTAT 0xB0200050 | 1059 | #define USBD_EP4RDSTAT 0xB0200050 |
1060 | #define USBD_EP5RDSTAT 0xB0200054 | 1060 | #define USBD_EP5RDSTAT 0xB0200054 |
1061 | # define USBDEV_FSTAT_FLUSH (1<<6) | 1061 | # define USBDEV_FSTAT_FLUSH (1 << 6) |
1062 | # define USBDEV_FSTAT_UF (1<<5) | 1062 | # define USBDEV_FSTAT_UF (1 << 5) |
1063 | # define USBDEV_FSTAT_OF (1<<4) | 1063 | # define USBDEV_FSTAT_OF (1 << 4) |
1064 | # define USBDEV_FSTAT_FCNT_BIT 0 | 1064 | # define USBDEV_FSTAT_FCNT_BIT 0 |
1065 | # define USBDEV_FSTAT_FCNT_MASK (0x0f << USBDEV_FSTAT_FCNT_BIT) | 1065 | # define USBDEV_FSTAT_FCNT_MASK (0x0f << USBDEV_FSTAT_FCNT_BIT) |
1066 | #define USBD_ENABLE 0xB0200058 | 1066 | #define USBD_ENABLE 0xB0200058 |
1067 | # define USBDEV_ENABLE (1<<1) | 1067 | # define USBDEV_ENABLE (1 << 1) |
1068 | # define USBDEV_CE (1<<0) | 1068 | # define USBDEV_CE (1 << 0) |
1069 | 1069 | ||
1070 | #endif /* !CONFIG_SOC_AU1200 */ | 1070 | #endif /* !CONFIG_SOC_AU1200 */ |
1071 | 1071 | ||
1072 | /* Ethernet Controllers */ | 1072 | /* Ethernet Controllers */ |
1073 | 1073 | ||
1074 | /* 4 byte offsets from AU1000_ETH_BASE */ | 1074 | /* 4 byte offsets from AU1000_ETH_BASE */ |
1075 | #define MAC_CONTROL 0x0 | 1075 | #define MAC_CONTROL 0x0 |
1076 | # define MAC_RX_ENABLE (1<<2) | 1076 | # define MAC_RX_ENABLE (1 << 2) |
1077 | # define MAC_TX_ENABLE (1<<3) | 1077 | # define MAC_TX_ENABLE (1 << 3) |
1078 | # define MAC_DEF_CHECK (1<<5) | 1078 | # define MAC_DEF_CHECK (1 << 5) |
1079 | # define MAC_SET_BL(X) (((X)&0x3)<<6) | 1079 | # define MAC_SET_BL(X) (((X) & 0x3) << 6) |
1080 | # define MAC_AUTO_PAD (1<<8) | 1080 | # define MAC_AUTO_PAD (1 << 8) |
1081 | # define MAC_DISABLE_RETRY (1<<10) | 1081 | # define MAC_DISABLE_RETRY (1 << 10) |
1082 | # define MAC_DISABLE_BCAST (1<<11) | 1082 | # define MAC_DISABLE_BCAST (1 << 11) |
1083 | # define MAC_LATE_COL (1<<12) | 1083 | # define MAC_LATE_COL (1 << 12) |
1084 | # define MAC_HASH_MODE (1<<13) | 1084 | # define MAC_HASH_MODE (1 << 13) |
1085 | # define MAC_HASH_ONLY (1<<15) | 1085 | # define MAC_HASH_ONLY (1 << 15) |
1086 | # define MAC_PASS_ALL (1<<16) | 1086 | # define MAC_PASS_ALL (1 << 16) |
1087 | # define MAC_INVERSE_FILTER (1<<17) | 1087 | # define MAC_INVERSE_FILTER (1 << 17) |
1088 | # define MAC_PROMISCUOUS (1<<18) | 1088 | # define MAC_PROMISCUOUS (1 << 18) |
1089 | # define MAC_PASS_ALL_MULTI (1<<19) | 1089 | # define MAC_PASS_ALL_MULTI (1 << 19) |
1090 | # define MAC_FULL_DUPLEX (1<<20) | 1090 | # define MAC_FULL_DUPLEX (1 << 20) |
1091 | # define MAC_NORMAL_MODE 0 | 1091 | # define MAC_NORMAL_MODE 0 |
1092 | # define MAC_INT_LOOPBACK (1<<21) | 1092 | # define MAC_INT_LOOPBACK (1 << 21) |
1093 | # define MAC_EXT_LOOPBACK (1<<22) | 1093 | # define MAC_EXT_LOOPBACK (1 << 22) |
1094 | # define MAC_DISABLE_RX_OWN (1<<23) | 1094 | # define MAC_DISABLE_RX_OWN (1 << 23) |
1095 | # define MAC_BIG_ENDIAN (1<<30) | 1095 | # define MAC_BIG_ENDIAN (1 << 30) |
1096 | # define MAC_RX_ALL (1<<31) | 1096 | # define MAC_RX_ALL (1 << 31) |
1097 | #define MAC_ADDRESS_HIGH 0x4 | 1097 | #define MAC_ADDRESS_HIGH 0x4 |
1098 | #define MAC_ADDRESS_LOW 0x8 | 1098 | #define MAC_ADDRESS_LOW 0x8 |
1099 | #define MAC_MCAST_HIGH 0xC | 1099 | #define MAC_MCAST_HIGH 0xC |
1100 | #define MAC_MCAST_LOW 0x10 | 1100 | #define MAC_MCAST_LOW 0x10 |
1101 | #define MAC_MII_CNTRL 0x14 | 1101 | #define MAC_MII_CNTRL 0x14 |
1102 | # define MAC_MII_BUSY (1<<0) | 1102 | # define MAC_MII_BUSY (1 << 0) |
1103 | # define MAC_MII_READ 0 | 1103 | # define MAC_MII_READ 0 |
1104 | # define MAC_MII_WRITE (1<<1) | 1104 | # define MAC_MII_WRITE (1 << 1) |
1105 | # define MAC_SET_MII_SELECT_REG(X) (((X)&0x1f)<<6) | 1105 | # define MAC_SET_MII_SELECT_REG(X) (((X) & 0x1f) << 6) |
1106 | # define MAC_SET_MII_SELECT_PHY(X) (((X)&0x1f)<<11) | 1106 | # define MAC_SET_MII_SELECT_PHY(X) (((X) & 0x1f) << 11) |
1107 | #define MAC_MII_DATA 0x18 | 1107 | #define MAC_MII_DATA 0x18 |
1108 | #define MAC_FLOW_CNTRL 0x1C | 1108 | #define MAC_FLOW_CNTRL 0x1C |
1109 | # define MAC_FLOW_CNTRL_BUSY (1<<0) | 1109 | # define MAC_FLOW_CNTRL_BUSY (1 << 0) |
1110 | # define MAC_FLOW_CNTRL_ENABLE (1<<1) | 1110 | # define MAC_FLOW_CNTRL_ENABLE (1 << 1) |
1111 | # define MAC_PASS_CONTROL (1<<2) | 1111 | # define MAC_PASS_CONTROL (1 << 2) |
1112 | # define MAC_SET_PAUSE(X) (((X)&0xffff)<<16) | 1112 | # define MAC_SET_PAUSE(X) (((X) & 0xffff) << 16) |
1113 | #define MAC_VLAN1_TAG 0x20 | 1113 | #define MAC_VLAN1_TAG 0x20 |
1114 | #define MAC_VLAN2_TAG 0x24 | 1114 | #define MAC_VLAN2_TAG 0x24 |
1115 | 1115 | ||
1116 | /* Ethernet Controller Enable */ | 1116 | /* Ethernet Controller Enable */ |
1117 | 1117 | ||
1118 | # define MAC_EN_CLOCK_ENABLE (1<<0) | 1118 | # define MAC_EN_CLOCK_ENABLE (1 << 0) |
1119 | # define MAC_EN_RESET0 (1<<1) | 1119 | # define MAC_EN_RESET0 (1 << 1) |
1120 | # define MAC_EN_TOSS (0<<2) | 1120 | # define MAC_EN_TOSS (0 << 2) |
1121 | # define MAC_EN_CACHEABLE (1<<3) | 1121 | # define MAC_EN_CACHEABLE (1 << 3) |
1122 | # define MAC_EN_RESET1 (1<<4) | 1122 | # define MAC_EN_RESET1 (1 << 4) |
1123 | # define MAC_EN_RESET2 (1<<5) | 1123 | # define MAC_EN_RESET2 (1 << 5) |
1124 | # define MAC_DMA_RESET (1<<6) | 1124 | # define MAC_DMA_RESET (1 << 6) |
1125 | 1125 | ||
1126 | /* Ethernet Controller DMA Channels */ | 1126 | /* Ethernet Controller DMA Channels */ |
1127 | 1127 | ||
1128 | #define MAC0_TX_DMA_ADDR 0xB4004000 | 1128 | #define MAC0_TX_DMA_ADDR 0xB4004000 |
1129 | #define MAC1_TX_DMA_ADDR 0xB4004200 | 1129 | #define MAC1_TX_DMA_ADDR 0xB4004200 |
1130 | /* offsets from MAC_TX_RING_ADDR address */ | 1130 | /* offsets from MAC_TX_RING_ADDR address */ |
1131 | #define MAC_TX_BUFF0_STATUS 0x0 | 1131 | #define MAC_TX_BUFF0_STATUS 0x0 |
1132 | # define TX_FRAME_ABORTED (1<<0) | 1132 | # define TX_FRAME_ABORTED (1 << 0) |
1133 | # define TX_JAB_TIMEOUT (1<<1) | 1133 | # define TX_JAB_TIMEOUT (1 << 1) |
1134 | # define TX_NO_CARRIER (1<<2) | 1134 | # define TX_NO_CARRIER (1 << 2) |
1135 | # define TX_LOSS_CARRIER (1<<3) | 1135 | # define TX_LOSS_CARRIER (1 << 3) |
1136 | # define TX_EXC_DEF (1<<4) | 1136 | # define TX_EXC_DEF (1 << 4) |
1137 | # define TX_LATE_COLL_ABORT (1<<5) | 1137 | # define TX_LATE_COLL_ABORT (1 << 5) |
1138 | # define TX_EXC_COLL (1<<6) | 1138 | # define TX_EXC_COLL (1 << 6) |
1139 | # define TX_UNDERRUN (1<<7) | 1139 | # define TX_UNDERRUN (1 << 7) |
1140 | # define TX_DEFERRED (1<<8) | 1140 | # define TX_DEFERRED (1 << 8) |
1141 | # define TX_LATE_COLL (1<<9) | 1141 | # define TX_LATE_COLL (1 << 9) |
1142 | # define TX_COLL_CNT_MASK (0xF<<10) | 1142 | # define TX_COLL_CNT_MASK (0xF << 10) |
1143 | # define TX_PKT_RETRY (1<<31) | 1143 | # define TX_PKT_RETRY (1 << 31) |
1144 | #define MAC_TX_BUFF0_ADDR 0x4 | 1144 | #define MAC_TX_BUFF0_ADDR 0x4 |
1145 | # define TX_DMA_ENABLE (1<<0) | 1145 | # define TX_DMA_ENABLE (1 << 0) |
1146 | # define TX_T_DONE (1<<1) | 1146 | # define TX_T_DONE (1 << 1) |
1147 | # define TX_GET_DMA_BUFFER(X) (((X)>>2)&0x3) | 1147 | # define TX_GET_DMA_BUFFER(X) (((X) >> 2) & 0x3) |
1148 | #define MAC_TX_BUFF0_LEN 0x8 | 1148 | #define MAC_TX_BUFF0_LEN 0x8 |
1149 | #define MAC_TX_BUFF1_STATUS 0x10 | 1149 | #define MAC_TX_BUFF1_STATUS 0x10 |
1150 | #define MAC_TX_BUFF1_ADDR 0x14 | 1150 | #define MAC_TX_BUFF1_ADDR 0x14 |
1151 | #define MAC_TX_BUFF1_LEN 0x18 | 1151 | #define MAC_TX_BUFF1_LEN 0x18 |
1152 | #define MAC_TX_BUFF2_STATUS 0x20 | 1152 | #define MAC_TX_BUFF2_STATUS 0x20 |
1153 | #define MAC_TX_BUFF2_ADDR 0x24 | 1153 | #define MAC_TX_BUFF2_ADDR 0x24 |
1154 | #define MAC_TX_BUFF2_LEN 0x28 | 1154 | #define MAC_TX_BUFF2_LEN 0x28 |
1155 | #define MAC_TX_BUFF3_STATUS 0x30 | 1155 | #define MAC_TX_BUFF3_STATUS 0x30 |
1156 | #define MAC_TX_BUFF3_ADDR 0x34 | 1156 | #define MAC_TX_BUFF3_ADDR 0x34 |
1157 | #define MAC_TX_BUFF3_LEN 0x38 | 1157 | #define MAC_TX_BUFF3_LEN 0x38 |
1158 | 1158 | ||
1159 | #define MAC0_RX_DMA_ADDR 0xB4004100 | 1159 | #define MAC0_RX_DMA_ADDR 0xB4004100 |
1160 | #define MAC1_RX_DMA_ADDR 0xB4004300 | 1160 | #define MAC1_RX_DMA_ADDR 0xB4004300 |
1161 | /* offsets from MAC_RX_RING_ADDR */ | 1161 | /* offsets from MAC_RX_RING_ADDR */ |
1162 | #define MAC_RX_BUFF0_STATUS 0x0 | 1162 | #define MAC_RX_BUFF0_STATUS 0x0 |
1163 | # define RX_FRAME_LEN_MASK 0x3fff | 1163 | # define RX_FRAME_LEN_MASK 0x3fff |
1164 | # define RX_WDOG_TIMER (1<<14) | 1164 | # define RX_WDOG_TIMER (1 << 14) |
1165 | # define RX_RUNT (1<<15) | 1165 | # define RX_RUNT (1 << 15) |
1166 | # define RX_OVERLEN (1<<16) | 1166 | # define RX_OVERLEN (1 << 16) |
1167 | # define RX_COLL (1<<17) | 1167 | # define RX_COLL (1 << 17) |
1168 | # define RX_ETHER (1<<18) | 1168 | # define RX_ETHER (1 << 18) |
1169 | # define RX_MII_ERROR (1<<19) | 1169 | # define RX_MII_ERROR (1 << 19) |
1170 | # define RX_DRIBBLING (1<<20) | 1170 | # define RX_DRIBBLING (1 << 20) |
1171 | # define RX_CRC_ERROR (1<<21) | 1171 | # define RX_CRC_ERROR (1 << 21) |
1172 | # define RX_VLAN1 (1<<22) | 1172 | # define RX_VLAN1 (1 << 22) |
1173 | # define RX_VLAN2 (1<<23) | 1173 | # define RX_VLAN2 (1 << 23) |
1174 | # define RX_LEN_ERROR (1<<24) | 1174 | # define RX_LEN_ERROR (1 << 24) |
1175 | # define RX_CNTRL_FRAME (1<<25) | 1175 | # define RX_CNTRL_FRAME (1 << 25) |
1176 | # define RX_U_CNTRL_FRAME (1<<26) | 1176 | # define RX_U_CNTRL_FRAME (1 << 26) |
1177 | # define RX_MCAST_FRAME (1<<27) | 1177 | # define RX_MCAST_FRAME (1 << 27) |
1178 | # define RX_BCAST_FRAME (1<<28) | 1178 | # define RX_BCAST_FRAME (1 << 28) |
1179 | # define RX_FILTER_FAIL (1<<29) | 1179 | # define RX_FILTER_FAIL (1 << 29) |
1180 | # define RX_PACKET_FILTER (1<<30) | 1180 | # define RX_PACKET_FILTER (1 << 30) |
1181 | # define RX_MISSED_FRAME (1<<31) | 1181 | # define RX_MISSED_FRAME (1 << 31) |
1182 | 1182 | ||
1183 | # define RX_ERROR (RX_WDOG_TIMER | RX_RUNT | RX_OVERLEN | \ | 1183 | # define RX_ERROR (RX_WDOG_TIMER | RX_RUNT | RX_OVERLEN | \ |
1184 | RX_COLL | RX_MII_ERROR | RX_CRC_ERROR | \ | 1184 | RX_COLL | RX_MII_ERROR | RX_CRC_ERROR | \ |
1185 | RX_LEN_ERROR | RX_U_CNTRL_FRAME | RX_MISSED_FRAME) | 1185 | RX_LEN_ERROR | RX_U_CNTRL_FRAME | RX_MISSED_FRAME) |
1186 | #define MAC_RX_BUFF0_ADDR 0x4 | 1186 | #define MAC_RX_BUFF0_ADDR 0x4 |
1187 | # define RX_DMA_ENABLE (1<<0) | 1187 | # define RX_DMA_ENABLE (1 << 0) |
1188 | # define RX_T_DONE (1<<1) | 1188 | # define RX_T_DONE (1 << 1) |
1189 | # define RX_GET_DMA_BUFFER(X) (((X)>>2)&0x3) | 1189 | # define RX_GET_DMA_BUFFER(X) (((X) >> 2) & 0x3) |
1190 | # define RX_SET_BUFF_ADDR(X) ((X)&0xffffffc0) | 1190 | # define RX_SET_BUFF_ADDR(X) ((X) & 0xffffffc0) |
1191 | #define MAC_RX_BUFF1_STATUS 0x10 | 1191 | #define MAC_RX_BUFF1_STATUS 0x10 |
1192 | #define MAC_RX_BUFF1_ADDR 0x14 | 1192 | #define MAC_RX_BUFF1_ADDR 0x14 |
1193 | #define MAC_RX_BUFF2_STATUS 0x20 | 1193 | #define MAC_RX_BUFF2_STATUS 0x20 |
1194 | #define MAC_RX_BUFF2_ADDR 0x24 | 1194 | #define MAC_RX_BUFF2_ADDR 0x24 |
1195 | #define MAC_RX_BUFF3_STATUS 0x30 | 1195 | #define MAC_RX_BUFF3_STATUS 0x30 |
1196 | #define MAC_RX_BUFF3_ADDR 0x34 | 1196 | #define MAC_RX_BUFF3_ADDR 0x34 |
1197 | |||
1198 | 1197 | ||
1199 | /* UARTS 0-3 */ | 1198 | /* UARTS 0-3 */ |
1200 | #define UART_BASE UART0_ADDR | 1199 | #define UART_BASE UART0_ADDR |
1201 | #ifdef CONFIG_SOC_AU1200 | 1200 | #ifdef CONFIG_SOC_AU1200 |
1202 | #define UART_DEBUG_BASE UART1_ADDR | 1201 | #define UART_DEBUG_BASE UART1_ADDR |
1203 | #else | 1202 | #else |
1204 | #define UART_DEBUG_BASE UART3_ADDR | 1203 | #define UART_DEBUG_BASE UART3_ADDR |
1205 | #endif | 1204 | #endif |
1206 | 1205 | ||
1207 | #define UART_RX 0 /* Receive buffer */ | 1206 | #define UART_RX 0 /* Receive buffer */ |
@@ -1294,341 +1293,337 @@ enum soc_au1200_ints { | |||
1294 | #define UART_MSR_DCTS 0x01 /* Delta CTS */ | 1293 | #define UART_MSR_DCTS 0x01 /* Delta CTS */ |
1295 | #define UART_MSR_ANY_DELTA 0x0F /* Any of the delta bits! */ | 1294 | #define UART_MSR_ANY_DELTA 0x0F /* Any of the delta bits! */ |
1296 | 1295 | ||
1297 | |||
1298 | |||
1299 | /* SSIO */ | 1296 | /* SSIO */ |
1300 | #define SSI0_STATUS 0xB1600000 | 1297 | #define SSI0_STATUS 0xB1600000 |
1301 | # define SSI_STATUS_BF (1<<4) | 1298 | # define SSI_STATUS_BF (1 << 4) |
1302 | # define SSI_STATUS_OF (1<<3) | 1299 | # define SSI_STATUS_OF (1 << 3) |
1303 | # define SSI_STATUS_UF (1<<2) | 1300 | # define SSI_STATUS_UF (1 << 2) |
1304 | # define SSI_STATUS_D (1<<1) | 1301 | # define SSI_STATUS_D (1 << 1) |
1305 | # define SSI_STATUS_B (1<<0) | 1302 | # define SSI_STATUS_B (1 << 0) |
1306 | #define SSI0_INT 0xB1600004 | 1303 | #define SSI0_INT 0xB1600004 |
1307 | # define SSI_INT_OI (1<<3) | 1304 | # define SSI_INT_OI (1 << 3) |
1308 | # define SSI_INT_UI (1<<2) | 1305 | # define SSI_INT_UI (1 << 2) |
1309 | # define SSI_INT_DI (1<<1) | 1306 | # define SSI_INT_DI (1 << 1) |
1310 | #define SSI0_INT_ENABLE 0xB1600008 | 1307 | #define SSI0_INT_ENABLE 0xB1600008 |
1311 | # define SSI_INTE_OIE (1<<3) | 1308 | # define SSI_INTE_OIE (1 << 3) |
1312 | # define SSI_INTE_UIE (1<<2) | 1309 | # define SSI_INTE_UIE (1 << 2) |
1313 | # define SSI_INTE_DIE (1<<1) | 1310 | # define SSI_INTE_DIE (1 << 1) |
1314 | #define SSI0_CONFIG 0xB1600020 | 1311 | #define SSI0_CONFIG 0xB1600020 |
1315 | # define SSI_CONFIG_AO (1<<24) | 1312 | # define SSI_CONFIG_AO (1 << 24) |
1316 | # define SSI_CONFIG_DO (1<<23) | 1313 | # define SSI_CONFIG_DO (1 << 23) |
1317 | # define SSI_CONFIG_ALEN_BIT 20 | 1314 | # define SSI_CONFIG_ALEN_BIT 20 |
1318 | # define SSI_CONFIG_ALEN_MASK (0x7<<20) | 1315 | # define SSI_CONFIG_ALEN_MASK (0x7 << 20) |
1319 | # define SSI_CONFIG_DLEN_BIT 16 | 1316 | # define SSI_CONFIG_DLEN_BIT 16 |
1320 | # define SSI_CONFIG_DLEN_MASK (0x7<<16) | 1317 | # define SSI_CONFIG_DLEN_MASK (0x7 << 16) |
1321 | # define SSI_CONFIG_DD (1<<11) | 1318 | # define SSI_CONFIG_DD (1 << 11) |
1322 | # define SSI_CONFIG_AD (1<<10) | 1319 | # define SSI_CONFIG_AD (1 << 10) |
1323 | # define SSI_CONFIG_BM_BIT 8 | 1320 | # define SSI_CONFIG_BM_BIT 8 |
1324 | # define SSI_CONFIG_BM_MASK (0x3<<8) | 1321 | # define SSI_CONFIG_BM_MASK (0x3 << 8) |
1325 | # define SSI_CONFIG_CE (1<<7) | 1322 | # define SSI_CONFIG_CE (1 << 7) |
1326 | # define SSI_CONFIG_DP (1<<6) | 1323 | # define SSI_CONFIG_DP (1 << 6) |
1327 | # define SSI_CONFIG_DL (1<<5) | 1324 | # define SSI_CONFIG_DL (1 << 5) |
1328 | # define SSI_CONFIG_EP (1<<4) | 1325 | # define SSI_CONFIG_EP (1 << 4) |
1329 | #define SSI0_ADATA 0xB1600024 | 1326 | #define SSI0_ADATA 0xB1600024 |
1330 | # define SSI_AD_D (1<<24) | 1327 | # define SSI_AD_D (1 << 24) |
1331 | # define SSI_AD_ADDR_BIT 16 | 1328 | # define SSI_AD_ADDR_BIT 16 |
1332 | # define SSI_AD_ADDR_MASK (0xff<<16) | 1329 | # define SSI_AD_ADDR_MASK (0xff << 16) |
1333 | # define SSI_AD_DATA_BIT 0 | 1330 | # define SSI_AD_DATA_BIT 0 |
1334 | # define SSI_AD_DATA_MASK (0xfff<<0) | 1331 | # define SSI_AD_DATA_MASK (0xfff << 0) |
1335 | #define SSI0_CLKDIV 0xB1600028 | 1332 | #define SSI0_CLKDIV 0xB1600028 |
1336 | #define SSI0_CONTROL 0xB1600100 | 1333 | #define SSI0_CONTROL 0xB1600100 |
1337 | # define SSI_CONTROL_CD (1<<1) | 1334 | # define SSI_CONTROL_CD (1 << 1) |
1338 | # define SSI_CONTROL_E (1<<0) | 1335 | # define SSI_CONTROL_E (1 << 0) |
1339 | 1336 | ||
1340 | /* SSI1 */ | 1337 | /* SSI1 */ |
1341 | #define SSI1_STATUS 0xB1680000 | 1338 | #define SSI1_STATUS 0xB1680000 |
1342 | #define SSI1_INT 0xB1680004 | 1339 | #define SSI1_INT 0xB1680004 |
1343 | #define SSI1_INT_ENABLE 0xB1680008 | 1340 | #define SSI1_INT_ENABLE 0xB1680008 |
1344 | #define SSI1_CONFIG 0xB1680020 | 1341 | #define SSI1_CONFIG 0xB1680020 |
1345 | #define SSI1_ADATA 0xB1680024 | 1342 | #define SSI1_ADATA 0xB1680024 |
1346 | #define SSI1_CLKDIV 0xB1680028 | 1343 | #define SSI1_CLKDIV 0xB1680028 |
1347 | #define SSI1_ENABLE 0xB1680100 | 1344 | #define SSI1_ENABLE 0xB1680100 |
1348 | 1345 | ||
1349 | /* | 1346 | /* |
1350 | * Register content definitions | 1347 | * Register content definitions |
1351 | */ | 1348 | */ |
1352 | #define SSI_STATUS_BF (1<<4) | 1349 | #define SSI_STATUS_BF (1 << 4) |
1353 | #define SSI_STATUS_OF (1<<3) | 1350 | #define SSI_STATUS_OF (1 << 3) |
1354 | #define SSI_STATUS_UF (1<<2) | 1351 | #define SSI_STATUS_UF (1 << 2) |
1355 | #define SSI_STATUS_D (1<<1) | 1352 | #define SSI_STATUS_D (1 << 1) |
1356 | #define SSI_STATUS_B (1<<0) | 1353 | #define SSI_STATUS_B (1 << 0) |
1357 | 1354 | ||
1358 | /* SSI_INT */ | 1355 | /* SSI_INT */ |
1359 | #define SSI_INT_OI (1<<3) | 1356 | #define SSI_INT_OI (1 << 3) |
1360 | #define SSI_INT_UI (1<<2) | 1357 | #define SSI_INT_UI (1 << 2) |
1361 | #define SSI_INT_DI (1<<1) | 1358 | #define SSI_INT_DI (1 << 1) |
1362 | 1359 | ||
1363 | /* SSI_INTEN */ | 1360 | /* SSI_INTEN */ |
1364 | #define SSI_INTEN_OIE (1<<3) | 1361 | #define SSI_INTEN_OIE (1 << 3) |
1365 | #define SSI_INTEN_UIE (1<<2) | 1362 | #define SSI_INTEN_UIE (1 << 2) |
1366 | #define SSI_INTEN_DIE (1<<1) | 1363 | #define SSI_INTEN_DIE (1 << 1) |
1367 | 1364 | ||
1368 | #define SSI_CONFIG_AO (1<<24) | 1365 | #define SSI_CONFIG_AO (1 << 24) |
1369 | #define SSI_CONFIG_DO (1<<23) | 1366 | #define SSI_CONFIG_DO (1 << 23) |
1370 | #define SSI_CONFIG_ALEN (7<<20) | 1367 | #define SSI_CONFIG_ALEN (7 << 20) |
1371 | #define SSI_CONFIG_DLEN (15<<16) | 1368 | #define SSI_CONFIG_DLEN (15 << 16) |
1372 | #define SSI_CONFIG_DD (1<<11) | 1369 | #define SSI_CONFIG_DD (1 << 11) |
1373 | #define SSI_CONFIG_AD (1<<10) | 1370 | #define SSI_CONFIG_AD (1 << 10) |
1374 | #define SSI_CONFIG_BM (3<<8) | 1371 | #define SSI_CONFIG_BM (3 << 8) |
1375 | #define SSI_CONFIG_CE (1<<7) | 1372 | #define SSI_CONFIG_CE (1 << 7) |
1376 | #define SSI_CONFIG_DP (1<<6) | 1373 | #define SSI_CONFIG_DP (1 << 6) |
1377 | #define SSI_CONFIG_DL (1<<5) | 1374 | #define SSI_CONFIG_DL (1 << 5) |
1378 | #define SSI_CONFIG_EP (1<<4) | 1375 | #define SSI_CONFIG_EP (1 << 4) |
1379 | #define SSI_CONFIG_ALEN_N(N) ((N-1)<<20) | 1376 | #define SSI_CONFIG_ALEN_N(N) ((N-1) << 20) |
1380 | #define SSI_CONFIG_DLEN_N(N) ((N-1)<<16) | 1377 | #define SSI_CONFIG_DLEN_N(N) ((N-1) << 16) |
1381 | #define SSI_CONFIG_BM_HI (0<<8) | 1378 | #define SSI_CONFIG_BM_HI (0 << 8) |
1382 | #define SSI_CONFIG_BM_LO (1<<8) | 1379 | #define SSI_CONFIG_BM_LO (1 << 8) |
1383 | #define SSI_CONFIG_BM_CY (2<<8) | 1380 | #define SSI_CONFIG_BM_CY (2 << 8) |
1384 | 1381 | ||
1385 | #define SSI_ADATA_D (1<<24) | 1382 | #define SSI_ADATA_D (1 << 24) |
1386 | #define SSI_ADATA_ADDR (0xFF<<16) | 1383 | #define SSI_ADATA_ADDR (0xFF << 16) |
1387 | #define SSI_ADATA_DATA (0x0FFF) | 1384 | #define SSI_ADATA_DATA 0x0FFF |
1388 | #define SSI_ADATA_ADDR_N(N) (N<<16) | 1385 | #define SSI_ADATA_ADDR_N(N) (N << 16) |
1389 | 1386 | ||
1390 | #define SSI_ENABLE_CD (1<<1) | 1387 | #define SSI_ENABLE_CD (1 << 1) |
1391 | #define SSI_ENABLE_E (1<<0) | 1388 | #define SSI_ENABLE_E (1 << 0) |
1392 | |||
1393 | 1389 | ||
1394 | /* IrDA Controller */ | 1390 | /* IrDA Controller */ |
1395 | #define IRDA_BASE 0xB0300000 | 1391 | #define IRDA_BASE 0xB0300000 |
1396 | #define IR_RING_PTR_STATUS (IRDA_BASE+0x00) | 1392 | #define IR_RING_PTR_STATUS (IRDA_BASE + 0x00) |
1397 | #define IR_RING_BASE_ADDR_H (IRDA_BASE+0x04) | 1393 | #define IR_RING_BASE_ADDR_H (IRDA_BASE + 0x04) |
1398 | #define IR_RING_BASE_ADDR_L (IRDA_BASE+0x08) | 1394 | #define IR_RING_BASE_ADDR_L (IRDA_BASE + 0x08) |
1399 | #define IR_RING_SIZE (IRDA_BASE+0x0C) | 1395 | #define IR_RING_SIZE (IRDA_BASE + 0x0C) |
1400 | #define IR_RING_PROMPT (IRDA_BASE+0x10) | 1396 | #define IR_RING_PROMPT (IRDA_BASE + 0x10) |
1401 | #define IR_RING_ADDR_CMPR (IRDA_BASE+0x14) | 1397 | #define IR_RING_ADDR_CMPR (IRDA_BASE + 0x14) |
1402 | #define IR_INT_CLEAR (IRDA_BASE+0x18) | 1398 | #define IR_INT_CLEAR (IRDA_BASE + 0x18) |
1403 | #define IR_CONFIG_1 (IRDA_BASE+0x20) | 1399 | #define IR_CONFIG_1 (IRDA_BASE + 0x20) |
1404 | # define IR_RX_INVERT_LED (1<<0) | 1400 | # define IR_RX_INVERT_LED (1 << 0) |
1405 | # define IR_TX_INVERT_LED (1<<1) | 1401 | # define IR_TX_INVERT_LED (1 << 1) |
1406 | # define IR_ST (1<<2) | 1402 | # define IR_ST (1 << 2) |
1407 | # define IR_SF (1<<3) | 1403 | # define IR_SF (1 << 3) |
1408 | # define IR_SIR (1<<4) | 1404 | # define IR_SIR (1 << 4) |
1409 | # define IR_MIR (1<<5) | 1405 | # define IR_MIR (1 << 5) |
1410 | # define IR_FIR (1<<6) | 1406 | # define IR_FIR (1 << 6) |
1411 | # define IR_16CRC (1<<7) | 1407 | # define IR_16CRC (1 << 7) |
1412 | # define IR_TD (1<<8) | 1408 | # define IR_TD (1 << 8) |
1413 | # define IR_RX_ALL (1<<9) | 1409 | # define IR_RX_ALL (1 << 9) |
1414 | # define IR_DMA_ENABLE (1<<10) | 1410 | # define IR_DMA_ENABLE (1 << 10) |
1415 | # define IR_RX_ENABLE (1<<11) | 1411 | # define IR_RX_ENABLE (1 << 11) |
1416 | # define IR_TX_ENABLE (1<<12) | 1412 | # define IR_TX_ENABLE (1 << 12) |
1417 | # define IR_LOOPBACK (1<<14) | 1413 | # define IR_LOOPBACK (1 << 14) |
1418 | # define IR_SIR_MODE (IR_SIR | IR_DMA_ENABLE | \ | 1414 | # define IR_SIR_MODE (IR_SIR | IR_DMA_ENABLE | \ |
1419 | IR_RX_ALL | IR_RX_ENABLE | IR_SF | IR_16CRC) | 1415 | IR_RX_ALL | IR_RX_ENABLE | IR_SF | IR_16CRC) |
1420 | #define IR_SIR_FLAGS (IRDA_BASE+0x24) | 1416 | #define IR_SIR_FLAGS (IRDA_BASE + 0x24) |
1421 | #define IR_ENABLE (IRDA_BASE+0x28) | 1417 | #define IR_ENABLE (IRDA_BASE + 0x28) |
1422 | # define IR_RX_STATUS (1<<9) | 1418 | # define IR_RX_STATUS (1 << 9) |
1423 | # define IR_TX_STATUS (1<<10) | 1419 | # define IR_TX_STATUS (1 << 10) |
1424 | #define IR_READ_PHY_CONFIG (IRDA_BASE+0x2C) | 1420 | #define IR_READ_PHY_CONFIG (IRDA_BASE + 0x2C) |
1425 | #define IR_WRITE_PHY_CONFIG (IRDA_BASE+0x30) | 1421 | #define IR_WRITE_PHY_CONFIG (IRDA_BASE + 0x30) |
1426 | #define IR_MAX_PKT_LEN (IRDA_BASE+0x34) | 1422 | #define IR_MAX_PKT_LEN (IRDA_BASE + 0x34) |
1427 | #define IR_RX_BYTE_CNT (IRDA_BASE+0x38) | 1423 | #define IR_RX_BYTE_CNT (IRDA_BASE + 0x38) |
1428 | #define IR_CONFIG_2 (IRDA_BASE+0x3C) | 1424 | #define IR_CONFIG_2 (IRDA_BASE + 0x3C) |
1429 | # define IR_MODE_INV (1<<0) | 1425 | # define IR_MODE_INV (1 << 0) |
1430 | # define IR_ONE_PIN (1<<1) | 1426 | # define IR_ONE_PIN (1 << 1) |
1431 | #define IR_INTERFACE_CONFIG (IRDA_BASE+0x40) | 1427 | #define IR_INTERFACE_CONFIG (IRDA_BASE + 0x40) |
1432 | 1428 | ||
1433 | /* GPIO */ | 1429 | /* GPIO */ |
1434 | #define SYS_PINFUNC 0xB190002C | 1430 | #define SYS_PINFUNC 0xB190002C |
1435 | # define SYS_PF_USB (1<<15) /* 2nd USB device/host */ | 1431 | # define SYS_PF_USB (1 << 15) /* 2nd USB device/host */ |
1436 | # define SYS_PF_U3 (1<<14) /* GPIO23/U3TXD */ | 1432 | # define SYS_PF_U3 (1 << 14) /* GPIO23/U3TXD */ |
1437 | # define SYS_PF_U2 (1<<13) /* GPIO22/U2TXD */ | 1433 | # define SYS_PF_U2 (1 << 13) /* GPIO22/U2TXD */ |
1438 | # define SYS_PF_U1 (1<<12) /* GPIO21/U1TXD */ | 1434 | # define SYS_PF_U1 (1 << 12) /* GPIO21/U1TXD */ |
1439 | # define SYS_PF_SRC (1<<11) /* GPIO6/SROMCKE */ | 1435 | # define SYS_PF_SRC (1 << 11) /* GPIO6/SROMCKE */ |
1440 | # define SYS_PF_CK5 (1<<10) /* GPIO3/CLK5 */ | 1436 | # define SYS_PF_CK5 (1 << 10) /* GPIO3/CLK5 */ |
1441 | # define SYS_PF_CK4 (1<<9) /* GPIO2/CLK4 */ | 1437 | # define SYS_PF_CK4 (1 << 9) /* GPIO2/CLK4 */ |
1442 | # define SYS_PF_IRF (1<<8) /* GPIO15/IRFIRSEL */ | 1438 | # define SYS_PF_IRF (1 << 8) /* GPIO15/IRFIRSEL */ |
1443 | # define SYS_PF_UR3 (1<<7) /* GPIO[14:9]/UART3 */ | 1439 | # define SYS_PF_UR3 (1 << 7) /* GPIO[14:9]/UART3 */ |
1444 | # define SYS_PF_I2D (1<<6) /* GPIO8/I2SDI */ | 1440 | # define SYS_PF_I2D (1 << 6) /* GPIO8/I2SDI */ |
1445 | # define SYS_PF_I2S (1<<5) /* I2S/GPIO[29:31] */ | 1441 | # define SYS_PF_I2S (1 << 5) /* I2S/GPIO[29:31] */ |
1446 | # define SYS_PF_NI2 (1<<4) /* NI2/GPIO[24:28] */ | 1442 | # define SYS_PF_NI2 (1 << 4) /* NI2/GPIO[24:28] */ |
1447 | # define SYS_PF_U0 (1<<3) /* U0TXD/GPIO20 */ | 1443 | # define SYS_PF_U0 (1 << 3) /* U0TXD/GPIO20 */ |
1448 | # define SYS_PF_RD (1<<2) /* IRTXD/GPIO19 */ | 1444 | # define SYS_PF_RD (1 << 2) /* IRTXD/GPIO19 */ |
1449 | # define SYS_PF_A97 (1<<1) /* AC97/SSL1 */ | 1445 | # define SYS_PF_A97 (1 << 1) /* AC97/SSL1 */ |
1450 | # define SYS_PF_S0 (1<<0) /* SSI_0/GPIO[16:18] */ | 1446 | # define SYS_PF_S0 (1 << 0) /* SSI_0/GPIO[16:18] */ |
1451 | 1447 | ||
1452 | /* Au1100 Only */ | 1448 | /* Au1100 only */ |
1453 | # define SYS_PF_PC (1<<18) /* PCMCIA/GPIO[207:204] */ | 1449 | # define SYS_PF_PC (1 << 18) /* PCMCIA/GPIO[207:204] */ |
1454 | # define SYS_PF_LCD (1<<17) /* extern lcd/GPIO[203:200] */ | 1450 | # define SYS_PF_LCD (1 << 17) /* extern lcd/GPIO[203:200] */ |
1455 | # define SYS_PF_CS (1<<16) /* EXTCLK0/32khz to gpio2 */ | 1451 | # define SYS_PF_CS (1 << 16) /* EXTCLK0/32KHz to gpio2 */ |
1456 | # define SYS_PF_EX0 (1<<9) /* gpio2/clock */ | 1452 | # define SYS_PF_EX0 (1 << 9) /* GPIO2/clock */ |
1457 | 1453 | ||
1458 | /* Au1550 Only. Redefines lots of pins */ | 1454 | /* Au1550 only. Redefines lots of pins */ |
1459 | # define SYS_PF_PSC2_MASK (7 << 17) | 1455 | # define SYS_PF_PSC2_MASK (7 << 17) |
1460 | # define SYS_PF_PSC2_AC97 (0) | 1456 | # define SYS_PF_PSC2_AC97 0 |
1461 | # define SYS_PF_PSC2_SPI (0) | 1457 | # define SYS_PF_PSC2_SPI 0 |
1462 | # define SYS_PF_PSC2_I2S (1 << 17) | 1458 | # define SYS_PF_PSC2_I2S (1 << 17) |
1463 | # define SYS_PF_PSC2_SMBUS (3 << 17) | 1459 | # define SYS_PF_PSC2_SMBUS (3 << 17) |
1464 | # define SYS_PF_PSC2_GPIO (7 << 17) | 1460 | # define SYS_PF_PSC2_GPIO (7 << 17) |
1465 | # define SYS_PF_PSC3_MASK (7 << 20) | 1461 | # define SYS_PF_PSC3_MASK (7 << 20) |
1466 | # define SYS_PF_PSC3_AC97 (0) | 1462 | # define SYS_PF_PSC3_AC97 0 |
1467 | # define SYS_PF_PSC3_SPI (0) | 1463 | # define SYS_PF_PSC3_SPI 0 |
1468 | # define SYS_PF_PSC3_I2S (1 << 20) | 1464 | # define SYS_PF_PSC3_I2S (1 << 20) |
1469 | # define SYS_PF_PSC3_SMBUS (3 << 20) | 1465 | # define SYS_PF_PSC3_SMBUS (3 << 20) |
1470 | # define SYS_PF_PSC3_GPIO (7 << 20) | 1466 | # define SYS_PF_PSC3_GPIO (7 << 20) |
1471 | # define SYS_PF_PSC1_S1 (1 << 1) | 1467 | # define SYS_PF_PSC1_S1 (1 << 1) |
1472 | # define SYS_PF_MUST_BE_SET ((1 << 5) | (1 << 2)) | 1468 | # define SYS_PF_MUST_BE_SET ((1 << 5) | (1 << 2)) |
1473 | 1469 | ||
1474 | /* Au1200 Only */ | 1470 | /* Au1200 only */ |
1475 | #ifdef CONFIG_SOC_AU1200 | 1471 | #ifdef CONFIG_SOC_AU1200 |
1476 | #define SYS_PINFUNC_DMA (1<<31) | 1472 | #define SYS_PINFUNC_DMA (1 << 31) |
1477 | #define SYS_PINFUNC_S0A (1<<30) | 1473 | #define SYS_PINFUNC_S0A (1 << 30) |
1478 | #define SYS_PINFUNC_S1A (1<<29) | 1474 | #define SYS_PINFUNC_S1A (1 << 29) |
1479 | #define SYS_PINFUNC_LP0 (1<<28) | 1475 | #define SYS_PINFUNC_LP0 (1 << 28) |
1480 | #define SYS_PINFUNC_LP1 (1<<27) | 1476 | #define SYS_PINFUNC_LP1 (1 << 27) |
1481 | #define SYS_PINFUNC_LD16 (1<<26) | 1477 | #define SYS_PINFUNC_LD16 (1 << 26) |
1482 | #define SYS_PINFUNC_LD8 (1<<25) | 1478 | #define SYS_PINFUNC_LD8 (1 << 25) |
1483 | #define SYS_PINFUNC_LD1 (1<<24) | 1479 | #define SYS_PINFUNC_LD1 (1 << 24) |
1484 | #define SYS_PINFUNC_LD0 (1<<23) | 1480 | #define SYS_PINFUNC_LD0 (1 << 23) |
1485 | #define SYS_PINFUNC_P1A (3<<21) | 1481 | #define SYS_PINFUNC_P1A (3 << 21) |
1486 | #define SYS_PINFUNC_P1B (1<<20) | 1482 | #define SYS_PINFUNC_P1B (1 << 20) |
1487 | #define SYS_PINFUNC_FS3 (1<<19) | 1483 | #define SYS_PINFUNC_FS3 (1 << 19) |
1488 | #define SYS_PINFUNC_P0A (3<<17) | 1484 | #define SYS_PINFUNC_P0A (3 << 17) |
1489 | #define SYS_PINFUNC_CS (1<<16) | 1485 | #define SYS_PINFUNC_CS (1 << 16) |
1490 | #define SYS_PINFUNC_CIM (1<<15) | 1486 | #define SYS_PINFUNC_CIM (1 << 15) |
1491 | #define SYS_PINFUNC_P1C (1<<14) | 1487 | #define SYS_PINFUNC_P1C (1 << 14) |
1492 | #define SYS_PINFUNC_U1T (1<<12) | 1488 | #define SYS_PINFUNC_U1T (1 << 12) |
1493 | #define SYS_PINFUNC_U1R (1<<11) | 1489 | #define SYS_PINFUNC_U1R (1 << 11) |
1494 | #define SYS_PINFUNC_EX1 (1<<10) | 1490 | #define SYS_PINFUNC_EX1 (1 << 10) |
1495 | #define SYS_PINFUNC_EX0 (1<<9) | 1491 | #define SYS_PINFUNC_EX0 (1 << 9) |
1496 | #define SYS_PINFUNC_U0R (1<<8) | 1492 | #define SYS_PINFUNC_U0R (1 << 8) |
1497 | #define SYS_PINFUNC_MC (1<<7) | 1493 | #define SYS_PINFUNC_MC (1 << 7) |
1498 | #define SYS_PINFUNC_S0B (1<<6) | 1494 | #define SYS_PINFUNC_S0B (1 << 6) |
1499 | #define SYS_PINFUNC_S0C (1<<5) | 1495 | #define SYS_PINFUNC_S0C (1 << 5) |
1500 | #define SYS_PINFUNC_P0B (1<<4) | 1496 | #define SYS_PINFUNC_P0B (1 << 4) |
1501 | #define SYS_PINFUNC_U0T (1<<3) | 1497 | #define SYS_PINFUNC_U0T (1 << 3) |
1502 | #define SYS_PINFUNC_S1B (1<<2) | 1498 | #define SYS_PINFUNC_S1B (1 << 2) |
1503 | #endif | 1499 | #endif |
1504 | 1500 | ||
1505 | #define SYS_TRIOUTRD 0xB1900100 | 1501 | #define SYS_TRIOUTRD 0xB1900100 |
1506 | #define SYS_TRIOUTCLR 0xB1900100 | 1502 | #define SYS_TRIOUTCLR 0xB1900100 |
1507 | #define SYS_OUTPUTRD 0xB1900108 | 1503 | #define SYS_OUTPUTRD 0xB1900108 |
1508 | #define SYS_OUTPUTSET 0xB1900108 | 1504 | #define SYS_OUTPUTSET 0xB1900108 |
1509 | #define SYS_OUTPUTCLR 0xB190010C | 1505 | #define SYS_OUTPUTCLR 0xB190010C |
1510 | #define SYS_PINSTATERD 0xB1900110 | 1506 | #define SYS_PINSTATERD 0xB1900110 |
1511 | #define SYS_PININPUTEN 0xB1900110 | 1507 | #define SYS_PININPUTEN 0xB1900110 |
1512 | 1508 | ||
1513 | /* GPIO2, Au1500, Au1550 only */ | 1509 | /* GPIO2, Au1500, Au1550 only */ |
1514 | #define GPIO2_BASE 0xB1700000 | 1510 | #define GPIO2_BASE 0xB1700000 |
1515 | #define GPIO2_DIR (GPIO2_BASE + 0) | 1511 | #define GPIO2_DIR (GPIO2_BASE + 0) |
1516 | #define GPIO2_OUTPUT (GPIO2_BASE + 8) | 1512 | #define GPIO2_OUTPUT (GPIO2_BASE + 8) |
1517 | #define GPIO2_PINSTATE (GPIO2_BASE + 0xC) | 1513 | #define GPIO2_PINSTATE (GPIO2_BASE + 0xC) |
1518 | #define GPIO2_INTENABLE (GPIO2_BASE + 0x10) | 1514 | #define GPIO2_INTENABLE (GPIO2_BASE + 0x10) |
1519 | #define GPIO2_ENABLE (GPIO2_BASE + 0x14) | 1515 | #define GPIO2_ENABLE (GPIO2_BASE + 0x14) |
1520 | 1516 | ||
1521 | /* Power Management */ | 1517 | /* Power Management */ |
1522 | #define SYS_SCRATCH0 0xB1900018 | 1518 | #define SYS_SCRATCH0 0xB1900018 |
1523 | #define SYS_SCRATCH1 0xB190001C | 1519 | #define SYS_SCRATCH1 0xB190001C |
1524 | #define SYS_WAKEMSK 0xB1900034 | 1520 | #define SYS_WAKEMSK 0xB1900034 |
1525 | #define SYS_ENDIAN 0xB1900038 | 1521 | #define SYS_ENDIAN 0xB1900038 |
1526 | #define SYS_POWERCTRL 0xB190003C | 1522 | #define SYS_POWERCTRL 0xB190003C |
1527 | #define SYS_WAKESRC 0xB190005C | 1523 | #define SYS_WAKESRC 0xB190005C |
1528 | #define SYS_SLPPWR 0xB1900078 | 1524 | #define SYS_SLPPWR 0xB1900078 |
1529 | #define SYS_SLEEP 0xB190007C | 1525 | #define SYS_SLEEP 0xB190007C |
1530 | 1526 | ||
1531 | /* Clock Controller */ | 1527 | /* Clock Controller */ |
1532 | #define SYS_FREQCTRL0 0xB1900020 | 1528 | #define SYS_FREQCTRL0 0xB1900020 |
1533 | # define SYS_FC_FRDIV2_BIT 22 | 1529 | # define SYS_FC_FRDIV2_BIT 22 |
1534 | # define SYS_FC_FRDIV2_MASK (0xff << SYS_FC_FRDIV2_BIT) | 1530 | # define SYS_FC_FRDIV2_MASK (0xff << SYS_FC_FRDIV2_BIT) |
1535 | # define SYS_FC_FE2 (1<<21) | 1531 | # define SYS_FC_FE2 (1 << 21) |
1536 | # define SYS_FC_FS2 (1<<20) | 1532 | # define SYS_FC_FS2 (1 << 20) |
1537 | # define SYS_FC_FRDIV1_BIT 12 | 1533 | # define SYS_FC_FRDIV1_BIT 12 |
1538 | # define SYS_FC_FRDIV1_MASK (0xff << SYS_FC_FRDIV1_BIT) | 1534 | # define SYS_FC_FRDIV1_MASK (0xff << SYS_FC_FRDIV1_BIT) |
1539 | # define SYS_FC_FE1 (1<<11) | 1535 | # define SYS_FC_FE1 (1 << 11) |
1540 | # define SYS_FC_FS1 (1<<10) | 1536 | # define SYS_FC_FS1 (1 << 10) |
1541 | # define SYS_FC_FRDIV0_BIT 2 | 1537 | # define SYS_FC_FRDIV0_BIT 2 |
1542 | # define SYS_FC_FRDIV0_MASK (0xff << SYS_FC_FRDIV0_BIT) | 1538 | # define SYS_FC_FRDIV0_MASK (0xff << SYS_FC_FRDIV0_BIT) |
1543 | # define SYS_FC_FE0 (1<<1) | 1539 | # define SYS_FC_FE0 (1 << 1) |
1544 | # define SYS_FC_FS0 (1<<0) | 1540 | # define SYS_FC_FS0 (1 << 0) |
1545 | #define SYS_FREQCTRL1 0xB1900024 | 1541 | #define SYS_FREQCTRL1 0xB1900024 |
1546 | # define SYS_FC_FRDIV5_BIT 22 | 1542 | # define SYS_FC_FRDIV5_BIT 22 |
1547 | # define SYS_FC_FRDIV5_MASK (0xff << SYS_FC_FRDIV5_BIT) | 1543 | # define SYS_FC_FRDIV5_MASK (0xff << SYS_FC_FRDIV5_BIT) |
1548 | # define SYS_FC_FE5 (1<<21) | 1544 | # define SYS_FC_FE5 (1 << 21) |
1549 | # define SYS_FC_FS5 (1<<20) | 1545 | # define SYS_FC_FS5 (1 << 20) |
1550 | # define SYS_FC_FRDIV4_BIT 12 | 1546 | # define SYS_FC_FRDIV4_BIT 12 |
1551 | # define SYS_FC_FRDIV4_MASK (0xff << SYS_FC_FRDIV4_BIT) | 1547 | # define SYS_FC_FRDIV4_MASK (0xff << SYS_FC_FRDIV4_BIT) |
1552 | # define SYS_FC_FE4 (1<<11) | 1548 | # define SYS_FC_FE4 (1 << 11) |
1553 | # define SYS_FC_FS4 (1<<10) | 1549 | # define SYS_FC_FS4 (1 << 10) |
1554 | # define SYS_FC_FRDIV3_BIT 2 | 1550 | # define SYS_FC_FRDIV3_BIT 2 |
1555 | # define SYS_FC_FRDIV3_MASK (0xff << SYS_FC_FRDIV3_BIT) | 1551 | # define SYS_FC_FRDIV3_MASK (0xff << SYS_FC_FRDIV3_BIT) |
1556 | # define SYS_FC_FE3 (1<<1) | 1552 | # define SYS_FC_FE3 (1 << 1) |
1557 | # define SYS_FC_FS3 (1<<0) | 1553 | # define SYS_FC_FS3 (1 << 0) |
1558 | #define SYS_CLKSRC 0xB1900028 | 1554 | #define SYS_CLKSRC 0xB1900028 |
1559 | # define SYS_CS_ME1_BIT 27 | 1555 | # define SYS_CS_ME1_BIT 27 |
1560 | # define SYS_CS_ME1_MASK (0x7<<SYS_CS_ME1_BIT) | 1556 | # define SYS_CS_ME1_MASK (0x7 << SYS_CS_ME1_BIT) |
1561 | # define SYS_CS_DE1 (1<<26) | 1557 | # define SYS_CS_DE1 (1 << 26) |
1562 | # define SYS_CS_CE1 (1<<25) | 1558 | # define SYS_CS_CE1 (1 << 25) |
1563 | # define SYS_CS_ME0_BIT 22 | 1559 | # define SYS_CS_ME0_BIT 22 |
1564 | # define SYS_CS_ME0_MASK (0x7<<SYS_CS_ME0_BIT) | 1560 | # define SYS_CS_ME0_MASK (0x7 << SYS_CS_ME0_BIT) |
1565 | # define SYS_CS_DE0 (1<<21) | 1561 | # define SYS_CS_DE0 (1 << 21) |
1566 | # define SYS_CS_CE0 (1<<20) | 1562 | # define SYS_CS_CE0 (1 << 20) |
1567 | # define SYS_CS_MI2_BIT 17 | 1563 | # define SYS_CS_MI2_BIT 17 |
1568 | # define SYS_CS_MI2_MASK (0x7<<SYS_CS_MI2_BIT) | 1564 | # define SYS_CS_MI2_MASK (0x7 << SYS_CS_MI2_BIT) |
1569 | # define SYS_CS_DI2 (1<<16) | 1565 | # define SYS_CS_DI2 (1 << 16) |
1570 | # define SYS_CS_CI2 (1<<15) | 1566 | # define SYS_CS_CI2 (1 << 15) |
1571 | #ifdef CONFIG_SOC_AU1100 | 1567 | #ifdef CONFIG_SOC_AU1100 |
1572 | # define SYS_CS_ML_BIT 7 | 1568 | # define SYS_CS_ML_BIT 7 |
1573 | # define SYS_CS_ML_MASK (0x7<<SYS_CS_ML_BIT) | 1569 | # define SYS_CS_ML_MASK (0x7 << SYS_CS_ML_BIT) |
1574 | # define SYS_CS_DL (1<<6) | 1570 | # define SYS_CS_DL (1 << 6) |
1575 | # define SYS_CS_CL (1<<5) | 1571 | # define SYS_CS_CL (1 << 5) |
1576 | #else | 1572 | #else |
1577 | # define SYS_CS_MUH_BIT 12 | 1573 | # define SYS_CS_MUH_BIT 12 |
1578 | # define SYS_CS_MUH_MASK (0x7<<SYS_CS_MUH_BIT) | 1574 | # define SYS_CS_MUH_MASK (0x7 << SYS_CS_MUH_BIT) |
1579 | # define SYS_CS_DUH (1<<11) | 1575 | # define SYS_CS_DUH (1 << 11) |
1580 | # define SYS_CS_CUH (1<<10) | 1576 | # define SYS_CS_CUH (1 << 10) |
1581 | # define SYS_CS_MUD_BIT 7 | 1577 | # define SYS_CS_MUD_BIT 7 |
1582 | # define SYS_CS_MUD_MASK (0x7<<SYS_CS_MUD_BIT) | 1578 | # define SYS_CS_MUD_MASK (0x7 << SYS_CS_MUD_BIT) |
1583 | # define SYS_CS_DUD (1<<6) | 1579 | # define SYS_CS_DUD (1 << 6) |
1584 | # define SYS_CS_CUD (1<<5) | 1580 | # define SYS_CS_CUD (1 << 5) |
1585 | #endif | 1581 | #endif |
1586 | # define SYS_CS_MIR_BIT 2 | 1582 | # define SYS_CS_MIR_BIT 2 |
1587 | # define SYS_CS_MIR_MASK (0x7<<SYS_CS_MIR_BIT) | 1583 | # define SYS_CS_MIR_MASK (0x7 << SYS_CS_MIR_BIT) |
1588 | # define SYS_CS_DIR (1<<1) | 1584 | # define SYS_CS_DIR (1 << 1) |
1589 | # define SYS_CS_CIR (1<<0) | 1585 | # define SYS_CS_CIR (1 << 0) |
1590 | 1586 | ||
1591 | # define SYS_CS_MUX_AUX 0x1 | 1587 | # define SYS_CS_MUX_AUX 0x1 |
1592 | # define SYS_CS_MUX_FQ0 0x2 | 1588 | # define SYS_CS_MUX_FQ0 0x2 |
1593 | # define SYS_CS_MUX_FQ1 0x3 | 1589 | # define SYS_CS_MUX_FQ1 0x3 |
1594 | # define SYS_CS_MUX_FQ2 0x4 | 1590 | # define SYS_CS_MUX_FQ2 0x4 |
1595 | # define SYS_CS_MUX_FQ3 0x5 | 1591 | # define SYS_CS_MUX_FQ3 0x5 |
1596 | # define SYS_CS_MUX_FQ4 0x6 | 1592 | # define SYS_CS_MUX_FQ4 0x6 |
1597 | # define SYS_CS_MUX_FQ5 0x7 | 1593 | # define SYS_CS_MUX_FQ5 0x7 |
1598 | #define SYS_CPUPLL 0xB1900060 | 1594 | #define SYS_CPUPLL 0xB1900060 |
1599 | #define SYS_AUXPLL 0xB1900064 | 1595 | #define SYS_AUXPLL 0xB1900064 |
1600 | 1596 | ||
1601 | /* AC97 Controller */ | 1597 | /* AC97 Controller */ |
1602 | #define AC97C_CONFIG 0xB0000000 | 1598 | #define AC97C_CONFIG 0xB0000000 |
1603 | # define AC97C_RECV_SLOTS_BIT 13 | 1599 | # define AC97C_RECV_SLOTS_BIT 13 |
1604 | # define AC97C_RECV_SLOTS_MASK (0x3ff << AC97C_RECV_SLOTS_BIT) | 1600 | # define AC97C_RECV_SLOTS_MASK (0x3ff << AC97C_RECV_SLOTS_BIT) |
1605 | # define AC97C_XMIT_SLOTS_BIT 3 | 1601 | # define AC97C_XMIT_SLOTS_BIT 3 |
1606 | # define AC97C_XMIT_SLOTS_MASK (0x3ff << AC97C_XMIT_SLOTS_BIT) | 1602 | # define AC97C_XMIT_SLOTS_MASK (0x3ff << AC97C_XMIT_SLOTS_BIT) |
1607 | # define AC97C_SG (1<<2) | 1603 | # define AC97C_SG (1 << 2) |
1608 | # define AC97C_SYNC (1<<1) | 1604 | # define AC97C_SYNC (1 << 1) |
1609 | # define AC97C_RESET (1<<0) | 1605 | # define AC97C_RESET (1 << 0) |
1610 | #define AC97C_STATUS 0xB0000004 | 1606 | #define AC97C_STATUS 0xB0000004 |
1611 | # define AC97C_XU (1<<11) | 1607 | # define AC97C_XU (1 << 11) |
1612 | # define AC97C_XO (1<<10) | 1608 | # define AC97C_XO (1 << 10) |
1613 | # define AC97C_RU (1<<9) | 1609 | # define AC97C_RU (1 << 9) |
1614 | # define AC97C_RO (1<<8) | 1610 | # define AC97C_RO (1 << 8) |
1615 | # define AC97C_READY (1<<7) | 1611 | # define AC97C_READY (1 << 7) |
1616 | # define AC97C_CP (1<<6) | 1612 | # define AC97C_CP (1 << 6) |
1617 | # define AC97C_TR (1<<5) | 1613 | # define AC97C_TR (1 << 5) |
1618 | # define AC97C_TE (1<<4) | 1614 | # define AC97C_TE (1 << 4) |
1619 | # define AC97C_TF (1<<3) | 1615 | # define AC97C_TF (1 << 3) |
1620 | # define AC97C_RR (1<<2) | 1616 | # define AC97C_RR (1 << 2) |
1621 | # define AC97C_RE (1<<1) | 1617 | # define AC97C_RE (1 << 1) |
1622 | # define AC97C_RF (1<<0) | 1618 | # define AC97C_RF (1 << 0) |
1623 | #define AC97C_DATA 0xB0000008 | 1619 | #define AC97C_DATA 0xB0000008 |
1624 | #define AC97C_CMD 0xB000000C | 1620 | #define AC97C_CMD 0xB000000C |
1625 | # define AC97C_WD_BIT 16 | 1621 | # define AC97C_WD_BIT 16 |
1626 | # define AC97C_READ (1<<7) | 1622 | # define AC97C_READ (1 << 7) |
1627 | # define AC97C_INDEX_MASK 0x7f | 1623 | # define AC97C_INDEX_MASK 0x7f |
1628 | #define AC97C_CNTRL 0xB0000010 | 1624 | #define AC97C_CNTRL 0xB0000010 |
1629 | # define AC97C_RS (1<<1) | 1625 | # define AC97C_RS (1 << 1) |
1630 | # define AC97C_CE (1<<0) | 1626 | # define AC97C_CE (1 << 0) |
1631 | |||
1632 | 1627 | ||
1633 | /* Secure Digital (SD) Controller */ | 1628 | /* Secure Digital (SD) Controller */ |
1634 | #define SD0_XMIT_FIFO 0xB0600000 | 1629 | #define SD0_XMIT_FIFO 0xB0600000 |
@@ -1638,73 +1633,74 @@ enum soc_au1200_ints { | |||
1638 | 1633 | ||
1639 | #if defined(CONFIG_SOC_AU1500) || defined(CONFIG_SOC_AU1550) | 1634 | #if defined(CONFIG_SOC_AU1500) || defined(CONFIG_SOC_AU1550) |
1640 | /* Au1500 PCI Controller */ | 1635 | /* Au1500 PCI Controller */ |
1641 | #define Au1500_CFG_BASE 0xB4005000 // virtual, kseg0 addr | 1636 | #define Au1500_CFG_BASE 0xB4005000 /* virtual, KSEG1 addr */ |
1642 | #define Au1500_PCI_CMEM (Au1500_CFG_BASE + 0) | 1637 | #define Au1500_PCI_CMEM (Au1500_CFG_BASE + 0) |
1643 | #define Au1500_PCI_CFG (Au1500_CFG_BASE + 4) | 1638 | #define Au1500_PCI_CFG (Au1500_CFG_BASE + 4) |
1644 | # define PCI_ERROR ((1<<22) | (1<<23) | (1<<24) | (1<<25) | (1<<26) | (1<<27)) | 1639 | # define PCI_ERROR ((1 << 22) | (1 << 23) | (1 << 24) | \ |
1645 | #define Au1500_PCI_B2BMASK_CCH (Au1500_CFG_BASE + 8) | 1640 | (1 << 25) | (1 << 26) | (1 << 27)) |
1646 | #define Au1500_PCI_B2B0_VID (Au1500_CFG_BASE + 0xC) | 1641 | #define Au1500_PCI_B2BMASK_CCH (Au1500_CFG_BASE + 8) |
1647 | #define Au1500_PCI_B2B1_ID (Au1500_CFG_BASE + 0x10) | 1642 | #define Au1500_PCI_B2B0_VID (Au1500_CFG_BASE + 0xC) |
1648 | #define Au1500_PCI_MWMASK_DEV (Au1500_CFG_BASE + 0x14) | 1643 | #define Au1500_PCI_B2B1_ID (Au1500_CFG_BASE + 0x10) |
1644 | #define Au1500_PCI_MWMASK_DEV (Au1500_CFG_BASE + 0x14) | ||
1649 | #define Au1500_PCI_MWBASE_REV_CCL (Au1500_CFG_BASE + 0x18) | 1645 | #define Au1500_PCI_MWBASE_REV_CCL (Au1500_CFG_BASE + 0x18) |
1650 | #define Au1500_PCI_ERR_ADDR (Au1500_CFG_BASE + 0x1C) | 1646 | #define Au1500_PCI_ERR_ADDR (Au1500_CFG_BASE + 0x1C) |
1651 | #define Au1500_PCI_SPEC_INTACK (Au1500_CFG_BASE + 0x20) | 1647 | #define Au1500_PCI_SPEC_INTACK (Au1500_CFG_BASE + 0x20) |
1652 | #define Au1500_PCI_ID (Au1500_CFG_BASE + 0x100) | 1648 | #define Au1500_PCI_ID (Au1500_CFG_BASE + 0x100) |
1653 | #define Au1500_PCI_STATCMD (Au1500_CFG_BASE + 0x104) | 1649 | #define Au1500_PCI_STATCMD (Au1500_CFG_BASE + 0x104) |
1654 | #define Au1500_PCI_CLASSREV (Au1500_CFG_BASE + 0x108) | 1650 | #define Au1500_PCI_CLASSREV (Au1500_CFG_BASE + 0x108) |
1655 | #define Au1500_PCI_HDRTYPE (Au1500_CFG_BASE + 0x10C) | 1651 | #define Au1500_PCI_HDRTYPE (Au1500_CFG_BASE + 0x10C) |
1656 | #define Au1500_PCI_MBAR (Au1500_CFG_BASE + 0x110) | 1652 | #define Au1500_PCI_MBAR (Au1500_CFG_BASE + 0x110) |
1657 | 1653 | ||
1658 | #define Au1500_PCI_HDR 0xB4005100 // virtual, kseg0 addr | 1654 | #define Au1500_PCI_HDR 0xB4005100 /* virtual, KSEG1 addr */ |
1659 | 1655 | ||
1660 | /* All of our structures, like pci resource, have 32 bit members. | 1656 | /* |
1657 | * All of our structures, like PCI resource, have 32-bit members. | ||
1661 | * Drivers are expected to do an ioremap on the PCI MEM resource, but it's | 1658 | * Drivers are expected to do an ioremap on the PCI MEM resource, but it's |
1662 | * hard to store 0x4 0000 0000 in a 32 bit type. We require a small patch | 1659 | * hard to store 0x4 0000 0000 in a 32-bit type. We require a small patch |
1663 | * to __ioremap to check for addresses between (u32)Au1500_PCI_MEM_START and | 1660 | * to __ioremap to check for addresses between (u32)Au1500_PCI_MEM_START and |
1664 | * (u32)Au1500_PCI_MEM_END and change those to the full 36 bit PCI MEM | 1661 | * (u32)Au1500_PCI_MEM_END and change those to the full 36-bit PCI MEM |
1665 | * addresses. For PCI IO, it's simpler because we get to do the ioremap | 1662 | * addresses. For PCI I/O, it's simpler because we get to do the ioremap |
1666 | * ourselves and then adjust the device's resources. | 1663 | * ourselves and then adjust the device's resources. |
1667 | */ | 1664 | */ |
1668 | #define Au1500_EXT_CFG 0x600000000ULL | 1665 | #define Au1500_EXT_CFG 0x600000000ULL |
1669 | #define Au1500_EXT_CFG_TYPE1 0x680000000ULL | 1666 | #define Au1500_EXT_CFG_TYPE1 0x680000000ULL |
1670 | #define Au1500_PCI_IO_START 0x500000000ULL | 1667 | #define Au1500_PCI_IO_START 0x500000000ULL |
1671 | #define Au1500_PCI_IO_END 0x5000FFFFFULL | 1668 | #define Au1500_PCI_IO_END 0x5000FFFFFULL |
1672 | #define Au1500_PCI_MEM_START 0x440000000ULL | 1669 | #define Au1500_PCI_MEM_START 0x440000000ULL |
1673 | #define Au1500_PCI_MEM_END 0x44FFFFFFFULL | 1670 | #define Au1500_PCI_MEM_END 0x44FFFFFFFULL |
1674 | 1671 | ||
1675 | #define PCI_IO_START 0x00001000 | 1672 | #define PCI_IO_START 0x00001000 |
1676 | #define PCI_IO_END 0x000FFFFF | 1673 | #define PCI_IO_END 0x000FFFFF |
1677 | #define PCI_MEM_START 0x40000000 | 1674 | #define PCI_MEM_START 0x40000000 |
1678 | #define PCI_MEM_END 0x4FFFFFFF | 1675 | #define PCI_MEM_END 0x4FFFFFFF |
1679 | 1676 | ||
1680 | #define PCI_FIRST_DEVFN (0<<3) | 1677 | #define PCI_FIRST_DEVFN (0 << 3) |
1681 | #define PCI_LAST_DEVFN (19<<3) | 1678 | #define PCI_LAST_DEVFN (19 << 3) |
1682 | 1679 | ||
1683 | #define IOPORT_RESOURCE_START 0x00001000 /* skip legacy probing */ | 1680 | #define IOPORT_RESOURCE_START 0x00001000 /* skip legacy probing */ |
1684 | #define IOPORT_RESOURCE_END 0xffffffff | 1681 | #define IOPORT_RESOURCE_END 0xffffffff |
1685 | #define IOMEM_RESOURCE_START 0x10000000 | 1682 | #define IOMEM_RESOURCE_START 0x10000000 |
1686 | #define IOMEM_RESOURCE_END 0xffffffff | 1683 | #define IOMEM_RESOURCE_END 0xffffffff |
1687 | 1684 | ||
1688 | #else /* Au1000 and Au1100 and Au1200 */ | 1685 | #else /* Au1000 and Au1100 and Au1200 */ |
1689 | 1686 | ||
1690 | /* don't allow any legacy ports probing */ | 1687 | /* Don't allow any legacy ports probing */ |
1691 | #define IOPORT_RESOURCE_START 0x10000000 | 1688 | #define IOPORT_RESOURCE_START 0x10000000 |
1692 | #define IOPORT_RESOURCE_END 0xffffffff | 1689 | #define IOPORT_RESOURCE_END 0xffffffff |
1693 | #define IOMEM_RESOURCE_START 0x10000000 | 1690 | #define IOMEM_RESOURCE_START 0x10000000 |
1694 | #define IOMEM_RESOURCE_END 0xffffffff | 1691 | #define IOMEM_RESOURCE_END 0xffffffff |
1695 | 1692 | ||
1696 | #define PCI_IO_START 0 | 1693 | #define PCI_IO_START 0 |
1697 | #define PCI_IO_END 0 | 1694 | #define PCI_IO_END 0 |
1698 | #define PCI_MEM_START 0 | 1695 | #define PCI_MEM_START 0 |
1699 | #define PCI_MEM_END 0 | 1696 | #define PCI_MEM_END 0 |
1700 | #define PCI_FIRST_DEVFN 0 | 1697 | #define PCI_FIRST_DEVFN 0 |
1701 | #define PCI_LAST_DEVFN 0 | 1698 | #define PCI_LAST_DEVFN 0 |
1702 | 1699 | ||
1703 | #endif | 1700 | #endif |
1704 | 1701 | ||
1705 | #ifndef _LANGUAGE_ASSEMBLY | 1702 | #ifndef _LANGUAGE_ASSEMBLY |
1706 | typedef volatile struct | 1703 | typedef volatile struct { |
1707 | { | ||
1708 | /* 0x0000 */ u32 toytrim; | 1704 | /* 0x0000 */ u32 toytrim; |
1709 | /* 0x0004 */ u32 toywrite; | 1705 | /* 0x0004 */ u32 toywrite; |
1710 | /* 0x0008 */ u32 toymatch0; | 1706 | /* 0x0008 */ u32 toymatch0; |
@@ -1746,13 +1742,14 @@ typedef volatile struct | |||
1746 | /* 0x010C */ u32 outputclr; | 1742 | /* 0x010C */ u32 outputclr; |
1747 | /* 0x0110 */ u32 pinstaterd; | 1743 | /* 0x0110 */ u32 pinstaterd; |
1748 | #define pininputen pinstaterd | 1744 | #define pininputen pinstaterd |
1749 | |||
1750 | } AU1X00_SYS; | 1745 | } AU1X00_SYS; |
1751 | 1746 | ||
1752 | static AU1X00_SYS* const sys = (AU1X00_SYS *)SYS_BASE; | 1747 | static AU1X00_SYS * const sys = (AU1X00_SYS *)SYS_BASE; |
1753 | 1748 | ||
1754 | #endif | 1749 | #endif |
1755 | /* Processor information base on prid. | 1750 | |
1751 | /* | ||
1752 | * Processor information based on PRID. | ||
1756 | * Copied from PowerPC. | 1753 | * Copied from PowerPC. |
1757 | */ | 1754 | */ |
1758 | #ifndef _LANGUAGE_ASSEMBLY | 1755 | #ifndef _LANGUAGE_ASSEMBLY |
@@ -1767,9 +1764,8 @@ struct cpu_spec { | |||
1767 | unsigned char cpu_pll_wo; /* sys_cpupll reg. write-only */ | 1764 | unsigned char cpu_pll_wo; /* sys_cpupll reg. write-only */ |
1768 | }; | 1765 | }; |
1769 | 1766 | ||
1770 | extern struct cpu_spec cpu_specs[]; | 1767 | extern struct cpu_spec cpu_specs[]; |
1771 | extern struct cpu_spec *cur_cpu_spec[]; | 1768 | extern struct cpu_spec *cur_cpu_spec[]; |
1772 | #endif | 1769 | #endif |
1773 | 1770 | ||
1774 | #endif | 1771 | #endif |
1775 | |||
diff --git a/include/asm-mips/mach-au1x00/au1000_dma.h b/include/asm-mips/mach-au1x00/au1000_dma.h index 9f29520e8fb0..c333b4e1cd44 100644 --- a/include/asm-mips/mach-au1x00/au1000_dma.h +++ b/include/asm-mips/mach-au1x00/au1000_dma.h | |||
@@ -1,11 +1,10 @@ | |||
1 | /* | 1 | /* |
2 | * BRIEF MODULE DESCRIPTION | 2 | * BRIEF MODULE DESCRIPTION |
3 | * Defines for using and allocating dma channels on the Alchemy | 3 | * Defines for using and allocating DMA channels on the Alchemy |
4 | * Au1000 mips processor. | 4 | * Au1x00 MIPS processors. |
5 | * | 5 | * |
6 | * Copyright 2000 MontaVista Software Inc. | 6 | * Copyright 2000, 2008 MontaVista Software Inc. |
7 | * Author: MontaVista Software, Inc. | 7 | * Author: MontaVista Software, Inc. <source@mvista.com> |
8 | * stevel@mvista.com or source@mvista.com | ||
9 | * | 8 | * |
10 | * This program is free software; you can redistribute it and/or modify it | 9 | * This program is free software; you can redistribute it and/or modify it |
11 | * under the terms of the GNU General Public License as published by the | 10 | * under the terms of the GNU General Public License as published by the |
@@ -31,7 +30,7 @@ | |||
31 | #ifndef __ASM_AU1000_DMA_H | 30 | #ifndef __ASM_AU1000_DMA_H |
32 | #define __ASM_AU1000_DMA_H | 31 | #define __ASM_AU1000_DMA_H |
33 | 32 | ||
34 | #include <asm/io.h> /* need byte IO */ | 33 | #include <linux/io.h> /* need byte IO */ |
35 | #include <linux/spinlock.h> /* And spinlocks */ | 34 | #include <linux/spinlock.h> /* And spinlocks */ |
36 | #include <linux/delay.h> | 35 | #include <linux/delay.h> |
37 | #include <asm/system.h> | 36 | #include <asm/system.h> |
@@ -50,36 +49,36 @@ | |||
50 | #define DMA_DAH_MASK (0x0f << 20) | 49 | #define DMA_DAH_MASK (0x0f << 20) |
51 | #define DMA_DID_BIT 16 | 50 | #define DMA_DID_BIT 16 |
52 | #define DMA_DID_MASK (0x0f << DMA_DID_BIT) | 51 | #define DMA_DID_MASK (0x0f << DMA_DID_BIT) |
53 | #define DMA_DS (1<<15) | 52 | #define DMA_DS (1 << 15) |
54 | #define DMA_BE (1<<13) | 53 | #define DMA_BE (1 << 13) |
55 | #define DMA_DR (1<<12) | 54 | #define DMA_DR (1 << 12) |
56 | #define DMA_TS8 (1<<11) | 55 | #define DMA_TS8 (1 << 11) |
57 | #define DMA_DW_BIT 9 | 56 | #define DMA_DW_BIT 9 |
58 | #define DMA_DW_MASK (0x03 << DMA_DW_BIT) | 57 | #define DMA_DW_MASK (0x03 << DMA_DW_BIT) |
59 | #define DMA_DW8 (0 << DMA_DW_BIT) | 58 | #define DMA_DW8 (0 << DMA_DW_BIT) |
60 | #define DMA_DW16 (1 << DMA_DW_BIT) | 59 | #define DMA_DW16 (1 << DMA_DW_BIT) |
61 | #define DMA_DW32 (2 << DMA_DW_BIT) | 60 | #define DMA_DW32 (2 << DMA_DW_BIT) |
62 | #define DMA_NC (1<<8) | 61 | #define DMA_NC (1 << 8) |
63 | #define DMA_IE (1<<7) | 62 | #define DMA_IE (1 << 7) |
64 | #define DMA_HALT (1<<6) | 63 | #define DMA_HALT (1 << 6) |
65 | #define DMA_GO (1<<5) | 64 | #define DMA_GO (1 << 5) |
66 | #define DMA_AB (1<<4) | 65 | #define DMA_AB (1 << 4) |
67 | #define DMA_D1 (1<<3) | 66 | #define DMA_D1 (1 << 3) |
68 | #define DMA_BE1 (1<<2) | 67 | #define DMA_BE1 (1 << 2) |
69 | #define DMA_D0 (1<<1) | 68 | #define DMA_D0 (1 << 1) |
70 | #define DMA_BE0 (1<<0) | 69 | #define DMA_BE0 (1 << 0) |
71 | 70 | ||
72 | #define DMA_PERIPHERAL_ADDR 0x00000008 | 71 | #define DMA_PERIPHERAL_ADDR 0x00000008 |
73 | #define DMA_BUFFER0_START 0x0000000C | 72 | #define DMA_BUFFER0_START 0x0000000C |
74 | #define DMA_BUFFER1_START 0x00000014 | 73 | #define DMA_BUFFER1_START 0x00000014 |
75 | #define DMA_BUFFER0_COUNT 0x00000010 | 74 | #define DMA_BUFFER0_COUNT 0x00000010 |
76 | #define DMA_BUFFER1_COUNT 0x00000018 | 75 | #define DMA_BUFFER1_COUNT 0x00000018 |
77 | #define DMA_BAH_BIT 16 | 76 | #define DMA_BAH_BIT 16 |
78 | #define DMA_BAH_MASK (0x0f << DMA_BAH_BIT) | 77 | #define DMA_BAH_MASK (0x0f << DMA_BAH_BIT) |
79 | #define DMA_COUNT_BIT 0 | 78 | #define DMA_COUNT_BIT 0 |
80 | #define DMA_COUNT_MASK (0xffff << DMA_COUNT_BIT) | 79 | #define DMA_COUNT_MASK (0xffff << DMA_COUNT_BIT) |
81 | 80 | ||
82 | /* DMA Device ID's follow */ | 81 | /* DMA Device IDs follow */ |
83 | enum { | 82 | enum { |
84 | DMA_ID_UART0_TX = 0, | 83 | DMA_ID_UART0_TX = 0, |
85 | DMA_ID_UART0_RX, | 84 | DMA_ID_UART0_RX, |
@@ -110,7 +109,8 @@ enum { | |||
110 | }; | 109 | }; |
111 | 110 | ||
112 | struct dma_chan { | 111 | struct dma_chan { |
113 | int dev_id; // this channel is allocated if >=0, free otherwise | 112 | int dev_id; /* this channel is allocated if >= 0, */ |
113 | /* free otherwise */ | ||
114 | unsigned int io; | 114 | unsigned int io; |
115 | const char *dev_str; | 115 | const char *dev_str; |
116 | int irq; | 116 | int irq; |
@@ -132,23 +132,23 @@ extern int au1000_dma_read_proc(char *buf, char **start, off_t fpos, | |||
132 | extern void dump_au1000_dma_channel(unsigned int dmanr); | 132 | extern void dump_au1000_dma_channel(unsigned int dmanr); |
133 | extern spinlock_t au1000_dma_spin_lock; | 133 | extern spinlock_t au1000_dma_spin_lock; |
134 | 134 | ||
135 | 135 | static inline struct dma_chan *get_dma_chan(unsigned int dmanr) | |
136 | static __inline__ struct dma_chan *get_dma_chan(unsigned int dmanr) | ||
137 | { | 136 | { |
138 | if (dmanr >= NUM_AU1000_DMA_CHANNELS | 137 | if (dmanr >= NUM_AU1000_DMA_CHANNELS || |
139 | || au1000_dma_table[dmanr].dev_id < 0) | 138 | au1000_dma_table[dmanr].dev_id < 0) |
140 | return NULL; | 139 | return NULL; |
141 | return &au1000_dma_table[dmanr]; | 140 | return &au1000_dma_table[dmanr]; |
142 | } | 141 | } |
143 | 142 | ||
144 | static __inline__ unsigned long claim_dma_lock(void) | 143 | static inline unsigned long claim_dma_lock(void) |
145 | { | 144 | { |
146 | unsigned long flags; | 145 | unsigned long flags; |
146 | |||
147 | spin_lock_irqsave(&au1000_dma_spin_lock, flags); | 147 | spin_lock_irqsave(&au1000_dma_spin_lock, flags); |
148 | return flags; | 148 | return flags; |
149 | } | 149 | } |
150 | 150 | ||
151 | static __inline__ void release_dma_lock(unsigned long flags) | 151 | static inline void release_dma_lock(unsigned long flags) |
152 | { | 152 | { |
153 | spin_unlock_irqrestore(&au1000_dma_spin_lock, flags); | 153 | spin_unlock_irqrestore(&au1000_dma_spin_lock, flags); |
154 | } | 154 | } |
@@ -156,48 +156,53 @@ static __inline__ void release_dma_lock(unsigned long flags) | |||
156 | /* | 156 | /* |
157 | * Set the DMA buffer enable bits in the mode register. | 157 | * Set the DMA buffer enable bits in the mode register. |
158 | */ | 158 | */ |
159 | static __inline__ void enable_dma_buffer0(unsigned int dmanr) | 159 | static inline void enable_dma_buffer0(unsigned int dmanr) |
160 | { | 160 | { |
161 | struct dma_chan *chan = get_dma_chan(dmanr); | 161 | struct dma_chan *chan = get_dma_chan(dmanr); |
162 | |||
162 | if (!chan) | 163 | if (!chan) |
163 | return; | 164 | return; |
164 | au_writel(DMA_BE0, chan->io + DMA_MODE_SET); | 165 | au_writel(DMA_BE0, chan->io + DMA_MODE_SET); |
165 | } | 166 | } |
166 | static __inline__ void enable_dma_buffer1(unsigned int dmanr) | 167 | |
168 | static inline void enable_dma_buffer1(unsigned int dmanr) | ||
167 | { | 169 | { |
168 | struct dma_chan *chan = get_dma_chan(dmanr); | 170 | struct dma_chan *chan = get_dma_chan(dmanr); |
171 | |||
169 | if (!chan) | 172 | if (!chan) |
170 | return; | 173 | return; |
171 | au_writel(DMA_BE1, chan->io + DMA_MODE_SET); | 174 | au_writel(DMA_BE1, chan->io + DMA_MODE_SET); |
172 | } | 175 | } |
173 | static __inline__ void enable_dma_buffers(unsigned int dmanr) | 176 | static inline void enable_dma_buffers(unsigned int dmanr) |
174 | { | 177 | { |
175 | struct dma_chan *chan = get_dma_chan(dmanr); | 178 | struct dma_chan *chan = get_dma_chan(dmanr); |
179 | |||
176 | if (!chan) | 180 | if (!chan) |
177 | return; | 181 | return; |
178 | au_writel(DMA_BE0 | DMA_BE1, chan->io + DMA_MODE_SET); | 182 | au_writel(DMA_BE0 | DMA_BE1, chan->io + DMA_MODE_SET); |
179 | } | 183 | } |
180 | 184 | ||
181 | static __inline__ void start_dma(unsigned int dmanr) | 185 | static inline void start_dma(unsigned int dmanr) |
182 | { | 186 | { |
183 | struct dma_chan *chan = get_dma_chan(dmanr); | 187 | struct dma_chan *chan = get_dma_chan(dmanr); |
188 | |||
184 | if (!chan) | 189 | if (!chan) |
185 | return; | 190 | return; |
186 | |||
187 | au_writel(DMA_GO, chan->io + DMA_MODE_SET); | 191 | au_writel(DMA_GO, chan->io + DMA_MODE_SET); |
188 | } | 192 | } |
189 | 193 | ||
190 | #define DMA_HALT_POLL 0x5000 | 194 | #define DMA_HALT_POLL 0x5000 |
191 | 195 | ||
192 | static __inline__ void halt_dma(unsigned int dmanr) | 196 | static inline void halt_dma(unsigned int dmanr) |
193 | { | 197 | { |
194 | struct dma_chan *chan = get_dma_chan(dmanr); | 198 | struct dma_chan *chan = get_dma_chan(dmanr); |
195 | int i; | 199 | int i; |
200 | |||
196 | if (!chan) | 201 | if (!chan) |
197 | return; | 202 | return; |
198 | |||
199 | au_writel(DMA_GO, chan->io + DMA_MODE_CLEAR); | 203 | au_writel(DMA_GO, chan->io + DMA_MODE_CLEAR); |
200 | // poll the halt bit | 204 | |
205 | /* Poll the halt bit */ | ||
201 | for (i = 0; i < DMA_HALT_POLL; i++) | 206 | for (i = 0; i < DMA_HALT_POLL; i++) |
202 | if (au_readl(chan->io + DMA_MODE_READ) & DMA_HALT) | 207 | if (au_readl(chan->io + DMA_MODE_READ) & DMA_HALT) |
203 | break; | 208 | break; |
@@ -205,55 +210,57 @@ static __inline__ void halt_dma(unsigned int dmanr) | |||
205 | printk(KERN_INFO "halt_dma: HALT poll expired!\n"); | 210 | printk(KERN_INFO "halt_dma: HALT poll expired!\n"); |
206 | } | 211 | } |
207 | 212 | ||
208 | 213 | static inline void disable_dma(unsigned int dmanr) | |
209 | static __inline__ void disable_dma(unsigned int dmanr) | ||
210 | { | 214 | { |
211 | struct dma_chan *chan = get_dma_chan(dmanr); | 215 | struct dma_chan *chan = get_dma_chan(dmanr); |
216 | |||
212 | if (!chan) | 217 | if (!chan) |
213 | return; | 218 | return; |
214 | 219 | ||
215 | halt_dma(dmanr); | 220 | halt_dma(dmanr); |
216 | 221 | ||
217 | // now we can disable the buffers | 222 | /* Now we can disable the buffers */ |
218 | au_writel(~DMA_GO, chan->io + DMA_MODE_CLEAR); | 223 | au_writel(~DMA_GO, chan->io + DMA_MODE_CLEAR); |
219 | } | 224 | } |
220 | 225 | ||
221 | static __inline__ int dma_halted(unsigned int dmanr) | 226 | static inline int dma_halted(unsigned int dmanr) |
222 | { | 227 | { |
223 | struct dma_chan *chan = get_dma_chan(dmanr); | 228 | struct dma_chan *chan = get_dma_chan(dmanr); |
229 | |||
224 | if (!chan) | 230 | if (!chan) |
225 | return 1; | 231 | return 1; |
226 | return (au_readl(chan->io + DMA_MODE_READ) & DMA_HALT) ? 1 : 0; | 232 | return (au_readl(chan->io + DMA_MODE_READ) & DMA_HALT) ? 1 : 0; |
227 | } | 233 | } |
228 | 234 | ||
229 | /* initialize a DMA channel */ | 235 | /* Initialize a DMA channel. */ |
230 | static __inline__ void init_dma(unsigned int dmanr) | 236 | static inline void init_dma(unsigned int dmanr) |
231 | { | 237 | { |
232 | struct dma_chan *chan = get_dma_chan(dmanr); | 238 | struct dma_chan *chan = get_dma_chan(dmanr); |
233 | u32 mode; | 239 | u32 mode; |
240 | |||
234 | if (!chan) | 241 | if (!chan) |
235 | return; | 242 | return; |
236 | 243 | ||
237 | disable_dma(dmanr); | 244 | disable_dma(dmanr); |
238 | 245 | ||
239 | // set device FIFO address | 246 | /* Set device FIFO address */ |
240 | au_writel(CPHYSADDR(chan->fifo_addr), | 247 | au_writel(CPHYSADDR(chan->fifo_addr), chan->io + DMA_PERIPHERAL_ADDR); |
241 | chan->io + DMA_PERIPHERAL_ADDR); | ||
242 | 248 | ||
243 | mode = chan->mode | (chan->dev_id << DMA_DID_BIT); | 249 | mode = chan->mode | (chan->dev_id << DMA_DID_BIT); |
244 | if (chan->irq) | 250 | if (chan->irq) |
245 | mode |= DMA_IE; | 251 | mode |= DMA_IE; |
246 | 252 | ||
247 | au_writel(~mode, chan->io + DMA_MODE_CLEAR); | 253 | au_writel(~mode, chan->io + DMA_MODE_CLEAR); |
248 | au_writel(mode, chan->io + DMA_MODE_SET); | 254 | au_writel(mode, chan->io + DMA_MODE_SET); |
249 | } | 255 | } |
250 | 256 | ||
251 | /* | 257 | /* |
252 | * set mode for a specific DMA channel | 258 | * Set mode for a specific DMA channel |
253 | */ | 259 | */ |
254 | static __inline__ void set_dma_mode(unsigned int dmanr, unsigned int mode) | 260 | static inline void set_dma_mode(unsigned int dmanr, unsigned int mode) |
255 | { | 261 | { |
256 | struct dma_chan *chan = get_dma_chan(dmanr); | 262 | struct dma_chan *chan = get_dma_chan(dmanr); |
263 | |||
257 | if (!chan) | 264 | if (!chan) |
258 | return; | 265 | return; |
259 | /* | 266 | /* |
@@ -266,36 +273,37 @@ static __inline__ void set_dma_mode(unsigned int dmanr, unsigned int mode) | |||
266 | chan->mode |= mode; | 273 | chan->mode |= mode; |
267 | } | 274 | } |
268 | 275 | ||
269 | static __inline__ unsigned int get_dma_mode(unsigned int dmanr) | 276 | static inline unsigned int get_dma_mode(unsigned int dmanr) |
270 | { | 277 | { |
271 | struct dma_chan *chan = get_dma_chan(dmanr); | 278 | struct dma_chan *chan = get_dma_chan(dmanr); |
279 | |||
272 | if (!chan) | 280 | if (!chan) |
273 | return 0; | 281 | return 0; |
274 | return chan->mode; | 282 | return chan->mode; |
275 | } | 283 | } |
276 | 284 | ||
277 | static __inline__ int get_dma_active_buffer(unsigned int dmanr) | 285 | static inline int get_dma_active_buffer(unsigned int dmanr) |
278 | { | 286 | { |
279 | struct dma_chan *chan = get_dma_chan(dmanr); | 287 | struct dma_chan *chan = get_dma_chan(dmanr); |
288 | |||
280 | if (!chan) | 289 | if (!chan) |
281 | return -1; | 290 | return -1; |
282 | return (au_readl(chan->io + DMA_MODE_READ) & DMA_AB) ? 1 : 0; | 291 | return (au_readl(chan->io + DMA_MODE_READ) & DMA_AB) ? 1 : 0; |
283 | } | 292 | } |
284 | 293 | ||
285 | |||
286 | /* | 294 | /* |
287 | * set the device FIFO address for a specific DMA channel - only | 295 | * Set the device FIFO address for a specific DMA channel - only |
288 | * applicable to GPO4 and GPO5. All the other devices have fixed | 296 | * applicable to GPO4 and GPO5. All the other devices have fixed |
289 | * FIFO addresses. | 297 | * FIFO addresses. |
290 | */ | 298 | */ |
291 | static __inline__ void set_dma_fifo_addr(unsigned int dmanr, | 299 | static inline void set_dma_fifo_addr(unsigned int dmanr, unsigned int a) |
292 | unsigned int a) | ||
293 | { | 300 | { |
294 | struct dma_chan *chan = get_dma_chan(dmanr); | 301 | struct dma_chan *chan = get_dma_chan(dmanr); |
302 | |||
295 | if (!chan) | 303 | if (!chan) |
296 | return; | 304 | return; |
297 | 305 | ||
298 | if (chan->mode & DMA_DS) /* second bank of device ids */ | 306 | if (chan->mode & DMA_DS) /* second bank of device IDs */ |
299 | return; | 307 | return; |
300 | 308 | ||
301 | if (chan->dev_id != DMA_ID_GP04 && chan->dev_id != DMA_ID_GP05) | 309 | if (chan->dev_id != DMA_ID_GP04 && chan->dev_id != DMA_ID_GP05) |
@@ -307,16 +315,19 @@ static __inline__ void set_dma_fifo_addr(unsigned int dmanr, | |||
307 | /* | 315 | /* |
308 | * Clear the DMA buffer done bits in the mode register. | 316 | * Clear the DMA buffer done bits in the mode register. |
309 | */ | 317 | */ |
310 | static __inline__ void clear_dma_done0(unsigned int dmanr) | 318 | static inline void clear_dma_done0(unsigned int dmanr) |
311 | { | 319 | { |
312 | struct dma_chan *chan = get_dma_chan(dmanr); | 320 | struct dma_chan *chan = get_dma_chan(dmanr); |
321 | |||
313 | if (!chan) | 322 | if (!chan) |
314 | return; | 323 | return; |
315 | au_writel(DMA_D0, chan->io + DMA_MODE_CLEAR); | 324 | au_writel(DMA_D0, chan->io + DMA_MODE_CLEAR); |
316 | } | 325 | } |
317 | static __inline__ void clear_dma_done1(unsigned int dmanr) | 326 | |
327 | static inline void clear_dma_done1(unsigned int dmanr) | ||
318 | { | 328 | { |
319 | struct dma_chan *chan = get_dma_chan(dmanr); | 329 | struct dma_chan *chan = get_dma_chan(dmanr); |
330 | |||
320 | if (!chan) | 331 | if (!chan) |
321 | return; | 332 | return; |
322 | au_writel(DMA_D1, chan->io + DMA_MODE_CLEAR); | 333 | au_writel(DMA_D1, chan->io + DMA_MODE_CLEAR); |
@@ -325,16 +336,17 @@ static __inline__ void clear_dma_done1(unsigned int dmanr) | |||
325 | /* | 336 | /* |
326 | * This does nothing - not applicable to Au1000 DMA. | 337 | * This does nothing - not applicable to Au1000 DMA. |
327 | */ | 338 | */ |
328 | static __inline__ void set_dma_page(unsigned int dmanr, char pagenr) | 339 | static inline void set_dma_page(unsigned int dmanr, char pagenr) |
329 | { | 340 | { |
330 | } | 341 | } |
331 | 342 | ||
332 | /* | 343 | /* |
333 | * Set Buffer 0 transfer address for specific DMA channel. | 344 | * Set Buffer 0 transfer address for specific DMA channel. |
334 | */ | 345 | */ |
335 | static __inline__ void set_dma_addr0(unsigned int dmanr, unsigned int a) | 346 | static inline void set_dma_addr0(unsigned int dmanr, unsigned int a) |
336 | { | 347 | { |
337 | struct dma_chan *chan = get_dma_chan(dmanr); | 348 | struct dma_chan *chan = get_dma_chan(dmanr); |
349 | |||
338 | if (!chan) | 350 | if (!chan) |
339 | return; | 351 | return; |
340 | au_writel(a, chan->io + DMA_BUFFER0_START); | 352 | au_writel(a, chan->io + DMA_BUFFER0_START); |
@@ -343,9 +355,10 @@ static __inline__ void set_dma_addr0(unsigned int dmanr, unsigned int a) | |||
343 | /* | 355 | /* |
344 | * Set Buffer 1 transfer address for specific DMA channel. | 356 | * Set Buffer 1 transfer address for specific DMA channel. |
345 | */ | 357 | */ |
346 | static __inline__ void set_dma_addr1(unsigned int dmanr, unsigned int a) | 358 | static inline void set_dma_addr1(unsigned int dmanr, unsigned int a) |
347 | { | 359 | { |
348 | struct dma_chan *chan = get_dma_chan(dmanr); | 360 | struct dma_chan *chan = get_dma_chan(dmanr); |
361 | |||
349 | if (!chan) | 362 | if (!chan) |
350 | return; | 363 | return; |
351 | au_writel(a, chan->io + DMA_BUFFER1_START); | 364 | au_writel(a, chan->io + DMA_BUFFER1_START); |
@@ -355,10 +368,10 @@ static __inline__ void set_dma_addr1(unsigned int dmanr, unsigned int a) | |||
355 | /* | 368 | /* |
356 | * Set Buffer 0 transfer size (max 64k) for a specific DMA channel. | 369 | * Set Buffer 0 transfer size (max 64k) for a specific DMA channel. |
357 | */ | 370 | */ |
358 | static __inline__ void set_dma_count0(unsigned int dmanr, | 371 | static inline void set_dma_count0(unsigned int dmanr, unsigned int count) |
359 | unsigned int count) | ||
360 | { | 372 | { |
361 | struct dma_chan *chan = get_dma_chan(dmanr); | 373 | struct dma_chan *chan = get_dma_chan(dmanr); |
374 | |||
362 | if (!chan) | 375 | if (!chan) |
363 | return; | 376 | return; |
364 | count &= DMA_COUNT_MASK; | 377 | count &= DMA_COUNT_MASK; |
@@ -368,10 +381,10 @@ static __inline__ void set_dma_count0(unsigned int dmanr, | |||
368 | /* | 381 | /* |
369 | * Set Buffer 1 transfer size (max 64k) for a specific DMA channel. | 382 | * Set Buffer 1 transfer size (max 64k) for a specific DMA channel. |
370 | */ | 383 | */ |
371 | static __inline__ void set_dma_count1(unsigned int dmanr, | 384 | static inline void set_dma_count1(unsigned int dmanr, unsigned int count) |
372 | unsigned int count) | ||
373 | { | 385 | { |
374 | struct dma_chan *chan = get_dma_chan(dmanr); | 386 | struct dma_chan *chan = get_dma_chan(dmanr); |
387 | |||
375 | if (!chan) | 388 | if (!chan) |
376 | return; | 389 | return; |
377 | count &= DMA_COUNT_MASK; | 390 | count &= DMA_COUNT_MASK; |
@@ -381,10 +394,10 @@ static __inline__ void set_dma_count1(unsigned int dmanr, | |||
381 | /* | 394 | /* |
382 | * Set both buffer transfer sizes (max 64k) for a specific DMA channel. | 395 | * Set both buffer transfer sizes (max 64k) for a specific DMA channel. |
383 | */ | 396 | */ |
384 | static __inline__ void set_dma_count(unsigned int dmanr, | 397 | static inline void set_dma_count(unsigned int dmanr, unsigned int count) |
385 | unsigned int count) | ||
386 | { | 398 | { |
387 | struct dma_chan *chan = get_dma_chan(dmanr); | 399 | struct dma_chan *chan = get_dma_chan(dmanr); |
400 | |||
388 | if (!chan) | 401 | if (!chan) |
389 | return; | 402 | return; |
390 | count &= DMA_COUNT_MASK; | 403 | count &= DMA_COUNT_MASK; |
@@ -396,35 +409,36 @@ static __inline__ void set_dma_count(unsigned int dmanr, | |||
396 | * Returns which buffer has its done bit set in the mode register. | 409 | * Returns which buffer has its done bit set in the mode register. |
397 | * Returns -1 if neither or both done bits set. | 410 | * Returns -1 if neither or both done bits set. |
398 | */ | 411 | */ |
399 | static __inline__ unsigned int get_dma_buffer_done(unsigned int dmanr) | 412 | static inline unsigned int get_dma_buffer_done(unsigned int dmanr) |
400 | { | 413 | { |
401 | struct dma_chan *chan = get_dma_chan(dmanr); | 414 | struct dma_chan *chan = get_dma_chan(dmanr); |
415 | |||
402 | if (!chan) | 416 | if (!chan) |
403 | return 0; | 417 | return 0; |
404 | 418 | return au_readl(chan->io + DMA_MODE_READ) & (DMA_D0 | DMA_D1); | |
405 | return au_readl(chan->io + DMA_MODE_READ) & (DMA_D0 | DMA_D1); | ||
406 | } | 419 | } |
407 | 420 | ||
408 | 421 | ||
409 | /* | 422 | /* |
410 | * Returns the DMA channel's Buffer Done IRQ number. | 423 | * Returns the DMA channel's Buffer Done IRQ number. |
411 | */ | 424 | */ |
412 | static __inline__ int get_dma_done_irq(unsigned int dmanr) | 425 | static inline int get_dma_done_irq(unsigned int dmanr) |
413 | { | 426 | { |
414 | struct dma_chan *chan = get_dma_chan(dmanr); | 427 | struct dma_chan *chan = get_dma_chan(dmanr); |
428 | |||
415 | if (!chan) | 429 | if (!chan) |
416 | return -1; | 430 | return -1; |
417 | |||
418 | return chan->irq; | 431 | return chan->irq; |
419 | } | 432 | } |
420 | 433 | ||
421 | /* | 434 | /* |
422 | * Get DMA residue count. Returns the number of _bytes_ left to transfer. | 435 | * Get DMA residue count. Returns the number of _bytes_ left to transfer. |
423 | */ | 436 | */ |
424 | static __inline__ int get_dma_residue(unsigned int dmanr) | 437 | static inline int get_dma_residue(unsigned int dmanr) |
425 | { | 438 | { |
426 | int curBufCntReg, count; | 439 | int curBufCntReg, count; |
427 | struct dma_chan *chan = get_dma_chan(dmanr); | 440 | struct dma_chan *chan = get_dma_chan(dmanr); |
441 | |||
428 | if (!chan) | 442 | if (!chan) |
429 | return 0; | 443 | return 0; |
430 | 444 | ||
@@ -442,4 +456,3 @@ static __inline__ int get_dma_residue(unsigned int dmanr) | |||
442 | } | 456 | } |
443 | 457 | ||
444 | #endif /* __ASM_AU1000_DMA_H */ | 458 | #endif /* __ASM_AU1000_DMA_H */ |
445 | |||
diff --git a/include/asm-mips/mach-au1x00/au1000_gpio.h b/include/asm-mips/mach-au1x00/au1000_gpio.h index 298f92012e8e..d8c96fda5549 100644 --- a/include/asm-mips/mach-au1x00/au1000_gpio.h +++ b/include/asm-mips/mach-au1x00/au1000_gpio.h | |||
@@ -2,12 +2,12 @@ | |||
2 | * FILE NAME au1000_gpio.h | 2 | * FILE NAME au1000_gpio.h |
3 | * | 3 | * |
4 | * BRIEF MODULE DESCRIPTION | 4 | * BRIEF MODULE DESCRIPTION |
5 | * API to Alchemy Au1000 GPIO device. | 5 | * API to Alchemy Au1xx0 GPIO device. |
6 | * | 6 | * |
7 | * Author: MontaVista Software, Inc. <source@mvista.com> | 7 | * Author: MontaVista Software, Inc. <source@mvista.com> |
8 | * Steve Longerbeam <stevel@mvista.com> | 8 | * Steve Longerbeam |
9 | * | 9 | * |
10 | * Copyright 2001 MontaVista Software Inc. | 10 | * Copyright 2001, 2008 MontaVista Software Inc. |
11 | * | 11 | * |
12 | * This program is free software; you can redistribute it and/or modify it | 12 | * This program is free software; you can redistribute it and/or modify it |
13 | * under the terms of the GNU General Public License as published by the | 13 | * under the terms of the GNU General Public License as published by the |
@@ -37,12 +37,12 @@ | |||
37 | 37 | ||
38 | #define AU1000GPIO_IOC_MAGIC 'A' | 38 | #define AU1000GPIO_IOC_MAGIC 'A' |
39 | 39 | ||
40 | #define AU1000GPIO_IN _IOR (AU1000GPIO_IOC_MAGIC, 0, int) | 40 | #define AU1000GPIO_IN _IOR(AU1000GPIO_IOC_MAGIC, 0, int) |
41 | #define AU1000GPIO_SET _IOW (AU1000GPIO_IOC_MAGIC, 1, int) | 41 | #define AU1000GPIO_SET _IOW(AU1000GPIO_IOC_MAGIC, 1, int) |
42 | #define AU1000GPIO_CLEAR _IOW (AU1000GPIO_IOC_MAGIC, 2, int) | 42 | #define AU1000GPIO_CLEAR _IOW(AU1000GPIO_IOC_MAGIC, 2, int) |
43 | #define AU1000GPIO_OUT _IOW (AU1000GPIO_IOC_MAGIC, 3, int) | 43 | #define AU1000GPIO_OUT _IOW(AU1000GPIO_IOC_MAGIC, 3, int) |
44 | #define AU1000GPIO_TRISTATE _IOW (AU1000GPIO_IOC_MAGIC, 4, int) | 44 | #define AU1000GPIO_TRISTATE _IOW(AU1000GPIO_IOC_MAGIC, 4, int) |
45 | #define AU1000GPIO_AVAIL_MASK _IOR (AU1000GPIO_IOC_MAGIC, 5, int) | 45 | #define AU1000GPIO_AVAIL_MASK _IOR(AU1000GPIO_IOC_MAGIC, 5, int) |
46 | 46 | ||
47 | #ifdef __KERNEL__ | 47 | #ifdef __KERNEL__ |
48 | extern u32 get_au1000_avail_gpio_mask(void); | 48 | extern u32 get_au1000_avail_gpio_mask(void); |
diff --git a/include/asm-mips/mach-au1x00/au1550_spi.h b/include/asm-mips/mach-au1x00/au1550_spi.h index c2f0466523ec..40e6c489833a 100644 --- a/include/asm-mips/mach-au1x00/au1550_spi.h +++ b/include/asm-mips/mach-au1x00/au1550_spi.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * au1550_spi.h - au1550 psc spi controller driver - platform data struct | 2 | * au1550_spi.h - Au1550 PSC SPI controller driver - platform data structure |
3 | */ | 3 | */ |
4 | 4 | ||
5 | #ifndef _AU1550_SPI_H_ | 5 | #ifndef _AU1550_SPI_H_ |
diff --git a/include/asm-mips/mach-au1x00/au1xxx.h b/include/asm-mips/mach-au1x00/au1xxx.h index 947135941033..1b3655090ed3 100644 --- a/include/asm-mips/mach-au1x00/au1xxx.h +++ b/include/asm-mips/mach-au1x00/au1xxx.h | |||
@@ -23,10 +23,10 @@ | |||
23 | #ifndef _AU1XXX_H_ | 23 | #ifndef _AU1XXX_H_ |
24 | #define _AU1XXX_H_ | 24 | #define _AU1XXX_H_ |
25 | 25 | ||
26 | |||
27 | #include <asm/mach-au1x00/au1000.h> | 26 | #include <asm/mach-au1x00/au1000.h> |
28 | 27 | ||
29 | #if defined(CONFIG_MIPS_DB1000) || defined(CONFIG_MIPS_DB1100) || defined(CONFIG_MIPS_DB1500) || defined(CONFIG_MIPS_DB1550) | 28 | #if defined(CONFIG_MIPS_DB1000) || defined(CONFIG_MIPS_DB1100) || \ |
29 | defined(CONFIG_MIPS_DB1500) || defined(CONFIG_MIPS_DB1550) | ||
30 | #include <asm/mach-db1x00/db1x00.h> | 30 | #include <asm/mach-db1x00/db1x00.h> |
31 | 31 | ||
32 | #elif defined(CONFIG_MIPS_PB1550) | 32 | #elif defined(CONFIG_MIPS_PB1550) |
diff --git a/include/asm-mips/mach-au1x00/au1xxx_dbdma.h b/include/asm-mips/mach-au1x00/au1xxx_dbdma.h index 93d507cea518..ad17d7ce516a 100644 --- a/include/asm-mips/mach-au1x00/au1xxx_dbdma.h +++ b/include/asm-mips/mach-au1x00/au1xxx_dbdma.h | |||
@@ -28,17 +28,18 @@ | |||
28 | * 675 Mass Ave, Cambridge, MA 02139, USA. | 28 | * 675 Mass Ave, Cambridge, MA 02139, USA. |
29 | */ | 29 | */ |
30 | 30 | ||
31 | /* Specifics for the Au1xxx Descriptor-Based DMA Controllers, first | 31 | /* |
32 | * seen in the AU1550 part. | 32 | * Specifics for the Au1xxx Descriptor-Based DMA Controller, |
33 | * first seen in the AU1550 part. | ||
33 | */ | 34 | */ |
34 | #ifndef _AU1000_DBDMA_H_ | 35 | #ifndef _AU1000_DBDMA_H_ |
35 | #define _AU1000_DBDMA_H_ | 36 | #define _AU1000_DBDMA_H_ |
36 | 37 | ||
37 | |||
38 | #ifndef _LANGUAGE_ASSEMBLY | 38 | #ifndef _LANGUAGE_ASSEMBLY |
39 | 39 | ||
40 | /* The DMA base addresses. | 40 | /* |
41 | * The Channels are every 256 bytes (0x0100) from the channel 0 base. | 41 | * The DMA base addresses. |
42 | * The channels are every 256 bytes (0x0100) from the channel 0 base. | ||
42 | * Interrupt status/enable is bits 15:0 for channels 15 to zero. | 43 | * Interrupt status/enable is bits 15:0 for channels 15 to zero. |
43 | */ | 44 | */ |
44 | #define DDMA_GLOBAL_BASE 0xb4003000 | 45 | #define DDMA_GLOBAL_BASE 0xb4003000 |
@@ -51,16 +52,14 @@ typedef volatile struct dbdma_global { | |||
51 | u32 ddma_inten; | 52 | u32 ddma_inten; |
52 | } dbdma_global_t; | 53 | } dbdma_global_t; |
53 | 54 | ||
54 | /* General Configuration. | 55 | /* General Configuration. */ |
55 | */ | ||
56 | #define DDMA_CONFIG_AF (1 << 2) | 56 | #define DDMA_CONFIG_AF (1 << 2) |
57 | #define DDMA_CONFIG_AH (1 << 1) | 57 | #define DDMA_CONFIG_AH (1 << 1) |
58 | #define DDMA_CONFIG_AL (1 << 0) | 58 | #define DDMA_CONFIG_AL (1 << 0) |
59 | 59 | ||
60 | #define DDMA_THROTTLE_EN (1 << 31) | 60 | #define DDMA_THROTTLE_EN (1 << 31) |
61 | 61 | ||
62 | /* The structure of a DMA Channel. | 62 | /* The structure of a DMA Channel. */ |
63 | */ | ||
64 | typedef volatile struct au1xxx_dma_channel { | 63 | typedef volatile struct au1xxx_dma_channel { |
65 | u32 ddma_cfg; /* See below */ | 64 | u32 ddma_cfg; /* See below */ |
66 | u32 ddma_desptr; /* 32-byte aligned pointer to descriptor */ | 65 | u32 ddma_desptr; /* 32-byte aligned pointer to descriptor */ |
@@ -69,8 +68,7 @@ typedef volatile struct au1xxx_dma_channel { | |||
69 | u32 ddma_irq; /* If bit 0 set, interrupt pending */ | 68 | u32 ddma_irq; /* If bit 0 set, interrupt pending */ |
70 | u32 ddma_stat; /* See below */ | 69 | u32 ddma_stat; /* See below */ |
71 | u32 ddma_bytecnt; /* Byte count, valid only when chan idle */ | 70 | u32 ddma_bytecnt; /* Byte count, valid only when chan idle */ |
72 | /* Remainder, up to the 256 byte boundary, is reserved. | 71 | /* Remainder, up to the 256 byte boundary, is reserved. */ |
73 | */ | ||
74 | } au1x_dma_chan_t; | 72 | } au1x_dma_chan_t; |
75 | 73 | ||
76 | #define DDMA_CFG_SED (1 << 9) /* source DMA level/edge detect */ | 74 | #define DDMA_CFG_SED (1 << 9) /* source DMA level/edge detect */ |
@@ -84,7 +82,8 @@ typedef volatile struct au1xxx_dma_channel { | |||
84 | #define DDMA_CFG_DBE (1 << 1) /* Destination big endian */ | 82 | #define DDMA_CFG_DBE (1 << 1) /* Destination big endian */ |
85 | #define DDMA_CFG_EN (1 << 0) /* Channel enable */ | 83 | #define DDMA_CFG_EN (1 << 0) /* Channel enable */ |
86 | 84 | ||
87 | /* Always set when descriptor processing done, regardless of | 85 | /* |
86 | * Always set when descriptor processing done, regardless of | ||
88 | * interrupt enable state. Reflected in global intstat, don't | 87 | * interrupt enable state. Reflected in global intstat, don't |
89 | * clear this until global intstat is read/used. | 88 | * clear this until global intstat is read/used. |
90 | */ | 89 | */ |
@@ -94,7 +93,8 @@ typedef volatile struct au1xxx_dma_channel { | |||
94 | #define DDMA_STAT_V (1 << 1) /* Descriptor valid */ | 93 | #define DDMA_STAT_V (1 << 1) /* Descriptor valid */ |
95 | #define DDMA_STAT_H (1 << 0) /* Channel Halted */ | 94 | #define DDMA_STAT_H (1 << 0) /* Channel Halted */ |
96 | 95 | ||
97 | /* "Standard" DDMA Descriptor. | 96 | /* |
97 | * "Standard" DDMA Descriptor. | ||
98 | * Must be 32-byte aligned. | 98 | * Must be 32-byte aligned. |
99 | */ | 99 | */ |
100 | typedef volatile struct au1xxx_ddma_desc { | 100 | typedef volatile struct au1xxx_ddma_desc { |
@@ -106,8 +106,9 @@ typedef volatile struct au1xxx_ddma_desc { | |||
106 | u32 dscr_dest1; /* See below */ | 106 | u32 dscr_dest1; /* See below */ |
107 | u32 dscr_stat; /* completion status */ | 107 | u32 dscr_stat; /* completion status */ |
108 | u32 dscr_nxtptr; /* Next descriptor pointer (mostly) */ | 108 | u32 dscr_nxtptr; /* Next descriptor pointer (mostly) */ |
109 | /* First 32bytes are HW specific!!! | 109 | /* |
110 | Lets have some SW data following.. make sure its 32bytes | 110 | * First 32 bytes are HW specific!!! |
111 | * Lets have some SW data following -- make sure it's 32 bytes. | ||
111 | */ | 112 | */ |
112 | u32 sw_status; | 113 | u32 sw_status; |
113 | u32 sw_context; | 114 | u32 sw_context; |
@@ -130,10 +131,9 @@ typedef volatile struct au1xxx_ddma_desc { | |||
130 | #define DSCR_CMD0_CV (0x1 << 2) /* Clear Valid when done */ | 131 | #define DSCR_CMD0_CV (0x1 << 2) /* Clear Valid when done */ |
131 | #define DSCR_CMD0_ST_MASK (0x3 << 0) /* Status instruction */ | 132 | #define DSCR_CMD0_ST_MASK (0x3 << 0) /* Status instruction */ |
132 | 133 | ||
133 | #define SW_STATUS_INUSE (1<<0) | 134 | #define SW_STATUS_INUSE (1 << 0) |
134 | 135 | ||
135 | /* Command 0 device IDs. | 136 | /* Command 0 device IDs. */ |
136 | */ | ||
137 | #ifdef CONFIG_SOC_AU1550 | 137 | #ifdef CONFIG_SOC_AU1550 |
138 | #define DSCR_CMD0_UART0_TX 0 | 138 | #define DSCR_CMD0_UART0_TX 0 |
139 | #define DSCR_CMD0_UART0_RX 1 | 139 | #define DSCR_CMD0_UART0_RX 1 |
@@ -198,16 +198,15 @@ typedef volatile struct au1xxx_ddma_desc { | |||
198 | #define DSCR_CMD0_THROTTLE 30 | 198 | #define DSCR_CMD0_THROTTLE 30 |
199 | #define DSCR_CMD0_ALWAYS 31 | 199 | #define DSCR_CMD0_ALWAYS 31 |
200 | #define DSCR_NDEV_IDS 32 | 200 | #define DSCR_NDEV_IDS 32 |
201 | /* THis macro is used to find/create custom device types */ | 201 | /* This macro is used to find/create custom device types */ |
202 | #define DSCR_DEV2CUSTOM_ID(x, d) (((((x)&0xFFFF)<<8)|0x32000000)|((d)&0xFF)) | 202 | #define DSCR_DEV2CUSTOM_ID(x, d) (((((x) & 0xFFFF) << 8) | 0x32000000) | \ |
203 | #define DSCR_CUSTOM2DEV_ID(x) ((x)&0xFF) | 203 | ((d) & 0xFF)) |
204 | 204 | #define DSCR_CUSTOM2DEV_ID(x) ((x) & 0xFF) | |
205 | 205 | ||
206 | #define DSCR_CMD0_SID(x) (((x) & 0x1f) << 25) | 206 | #define DSCR_CMD0_SID(x) (((x) & 0x1f) << 25) |
207 | #define DSCR_CMD0_DID(x) (((x) & 0x1f) << 20) | 207 | #define DSCR_CMD0_DID(x) (((x) & 0x1f) << 20) |
208 | 208 | ||
209 | /* Source/Destination transfer width. | 209 | /* Source/Destination transfer width. */ |
210 | */ | ||
211 | #define DSCR_CMD0_BYTE 0 | 210 | #define DSCR_CMD0_BYTE 0 |
212 | #define DSCR_CMD0_HALFWORD 1 | 211 | #define DSCR_CMD0_HALFWORD 1 |
213 | #define DSCR_CMD0_WORD 2 | 212 | #define DSCR_CMD0_WORD 2 |
@@ -215,16 +214,14 @@ typedef volatile struct au1xxx_ddma_desc { | |||
215 | #define DSCR_CMD0_SW(x) (((x) & 0x3) << 18) | 214 | #define DSCR_CMD0_SW(x) (((x) & 0x3) << 18) |
216 | #define DSCR_CMD0_DW(x) (((x) & 0x3) << 16) | 215 | #define DSCR_CMD0_DW(x) (((x) & 0x3) << 16) |
217 | 216 | ||
218 | /* DDMA Descriptor Type. | 217 | /* DDMA Descriptor Type. */ |
219 | */ | ||
220 | #define DSCR_CMD0_STANDARD 0 | 218 | #define DSCR_CMD0_STANDARD 0 |
221 | #define DSCR_CMD0_LITERAL 1 | 219 | #define DSCR_CMD0_LITERAL 1 |
222 | #define DSCR_CMD0_CMP_BRANCH 2 | 220 | #define DSCR_CMD0_CMP_BRANCH 2 |
223 | 221 | ||
224 | #define DSCR_CMD0_DT(x) (((x) & 0x3) << 13) | 222 | #define DSCR_CMD0_DT(x) (((x) & 0x3) << 13) |
225 | 223 | ||
226 | /* Status Instruction. | 224 | /* Status Instruction. */ |
227 | */ | ||
228 | #define DSCR_CMD0_ST_NOCHANGE 0 /* Don't change */ | 225 | #define DSCR_CMD0_ST_NOCHANGE 0 /* Don't change */ |
229 | #define DSCR_CMD0_ST_CURRENT 1 /* Write current status */ | 226 | #define DSCR_CMD0_ST_CURRENT 1 /* Write current status */ |
230 | #define DSCR_CMD0_ST_CMD0 2 /* Write cmd0 with V cleared */ | 227 | #define DSCR_CMD0_ST_CMD0 2 /* Write cmd0 with V cleared */ |
@@ -232,23 +229,20 @@ typedef volatile struct au1xxx_ddma_desc { | |||
232 | 229 | ||
233 | #define DSCR_CMD0_ST(x) (((x) & 0x3) << 0) | 230 | #define DSCR_CMD0_ST(x) (((x) & 0x3) << 0) |
234 | 231 | ||
235 | /* Descriptor Command 1 | 232 | /* Descriptor Command 1. */ |
236 | */ | ||
237 | #define DSCR_CMD1_SUPTR_MASK (0xf << 28) /* upper 4 bits of src addr */ | 233 | #define DSCR_CMD1_SUPTR_MASK (0xf << 28) /* upper 4 bits of src addr */ |
238 | #define DSCR_CMD1_DUPTR_MASK (0xf << 24) /* upper 4 bits of dest addr */ | 234 | #define DSCR_CMD1_DUPTR_MASK (0xf << 24) /* upper 4 bits of dest addr */ |
239 | #define DSCR_CMD1_FL_MASK (0x3 << 22) /* Flag bits */ | 235 | #define DSCR_CMD1_FL_MASK (0x3 << 22) /* Flag bits */ |
240 | #define DSCR_CMD1_BC_MASK (0x3fffff) /* Byte count */ | 236 | #define DSCR_CMD1_BC_MASK (0x3fffff) /* Byte count */ |
241 | 237 | ||
242 | /* Flag description. | 238 | /* Flag description. */ |
243 | */ | ||
244 | #define DSCR_CMD1_FL_MEM_STRIDE0 0 | 239 | #define DSCR_CMD1_FL_MEM_STRIDE0 0 |
245 | #define DSCR_CMD1_FL_MEM_STRIDE1 1 | 240 | #define DSCR_CMD1_FL_MEM_STRIDE1 1 |
246 | #define DSCR_CMD1_FL_MEM_STRIDE2 2 | 241 | #define DSCR_CMD1_FL_MEM_STRIDE2 2 |
247 | 242 | ||
248 | #define DSCR_CMD1_FL(x) (((x) & 0x3) << 22) | 243 | #define DSCR_CMD1_FL(x) (((x) & 0x3) << 22) |
249 | 244 | ||
250 | /* Source1, 1-dimensional stride. | 245 | /* Source1, 1-dimensional stride. */ |
251 | */ | ||
252 | #define DSCR_SRC1_STS_MASK (3 << 30) /* Src xfer size */ | 246 | #define DSCR_SRC1_STS_MASK (3 << 30) /* Src xfer size */ |
253 | #define DSCR_SRC1_SAM_MASK (3 << 28) /* Src xfer movement */ | 247 | #define DSCR_SRC1_SAM_MASK (3 << 28) /* Src xfer movement */ |
254 | #define DSCR_SRC1_SB_MASK (0x3fff << 14) /* Block size */ | 248 | #define DSCR_SRC1_SB_MASK (0x3fff << 14) /* Block size */ |
@@ -256,8 +250,7 @@ typedef volatile struct au1xxx_ddma_desc { | |||
256 | #define DSCR_SRC1_SS_MASK (0x3fff << 0) /* Stride */ | 250 | #define DSCR_SRC1_SS_MASK (0x3fff << 0) /* Stride */ |
257 | #define DSCR_SRC1_SS(x) (((x) & 0x3fff) << 0) | 251 | #define DSCR_SRC1_SS(x) (((x) & 0x3fff) << 0) |
258 | 252 | ||
259 | /* Dest1, 1-dimensional stride. | 253 | /* Dest1, 1-dimensional stride. */ |
260 | */ | ||
261 | #define DSCR_DEST1_DTS_MASK (3 << 30) /* Dest xfer size */ | 254 | #define DSCR_DEST1_DTS_MASK (3 << 30) /* Dest xfer size */ |
262 | #define DSCR_DEST1_DAM_MASK (3 << 28) /* Dest xfer movement */ | 255 | #define DSCR_DEST1_DAM_MASK (3 << 28) /* Dest xfer movement */ |
263 | #define DSCR_DEST1_DB_MASK (0x3fff << 14) /* Block size */ | 256 | #define DSCR_DEST1_DB_MASK (0x3fff << 14) /* Block size */ |
@@ -279,29 +272,27 @@ typedef volatile struct au1xxx_ddma_desc { | |||
279 | #define DSCR_SRC1_SAM(x) (((x) & 3) << 28) | 272 | #define DSCR_SRC1_SAM(x) (((x) & 3) << 28) |
280 | #define DSCR_DEST1_DAM(x) (((x) & 3) << 28) | 273 | #define DSCR_DEST1_DAM(x) (((x) & 3) << 28) |
281 | 274 | ||
282 | /* The next descriptor pointer. | 275 | /* The next descriptor pointer. */ |
283 | */ | ||
284 | #define DSCR_NXTPTR_MASK (0x07ffffff) | 276 | #define DSCR_NXTPTR_MASK (0x07ffffff) |
285 | #define DSCR_NXTPTR(x) ((x) >> 5) | 277 | #define DSCR_NXTPTR(x) ((x) >> 5) |
286 | #define DSCR_GET_NXTPTR(x) ((x) << 5) | 278 | #define DSCR_GET_NXTPTR(x) ((x) << 5) |
287 | #define DSCR_NXTPTR_MS (1 << 27) | 279 | #define DSCR_NXTPTR_MS (1 << 27) |
288 | 280 | ||
289 | /* The number of DBDMA channels. | 281 | /* The number of DBDMA channels. */ |
290 | */ | ||
291 | #define NUM_DBDMA_CHANS 16 | 282 | #define NUM_DBDMA_CHANS 16 |
292 | 283 | ||
293 | /* | 284 | /* |
294 | * Ddma API definitions | 285 | * DDMA API definitions |
295 | * FIXME: may not fit to this header file | 286 | * FIXME: may not fit to this header file |
296 | */ | 287 | */ |
297 | typedef struct dbdma_device_table { | 288 | typedef struct dbdma_device_table { |
298 | u32 dev_id; | 289 | u32 dev_id; |
299 | u32 dev_flags; | 290 | u32 dev_flags; |
300 | u32 dev_tsize; | 291 | u32 dev_tsize; |
301 | u32 dev_devwidth; | 292 | u32 dev_devwidth; |
302 | u32 dev_physaddr; /* If FIFO */ | 293 | u32 dev_physaddr; /* If FIFO */ |
303 | u32 dev_intlevel; | 294 | u32 dev_intlevel; |
304 | u32 dev_intpolarity; | 295 | u32 dev_intpolarity; |
305 | } dbdev_tab_t; | 296 | } dbdev_tab_t; |
306 | 297 | ||
307 | 298 | ||
@@ -316,44 +307,41 @@ typedef struct dbdma_chan_config { | |||
316 | au1x_ddma_desc_t *chan_desc_base; | 307 | au1x_ddma_desc_t *chan_desc_base; |
317 | au1x_ddma_desc_t *get_ptr, *put_ptr, *cur_ptr; | 308 | au1x_ddma_desc_t *get_ptr, *put_ptr, *cur_ptr; |
318 | void *chan_callparam; | 309 | void *chan_callparam; |
319 | void (*chan_callback)(int, void *); | 310 | void (*chan_callback)(int, void *); |
320 | } chan_tab_t; | 311 | } chan_tab_t; |
321 | 312 | ||
322 | #define DEV_FLAGS_INUSE (1 << 0) | 313 | #define DEV_FLAGS_INUSE (1 << 0) |
323 | #define DEV_FLAGS_ANYUSE (1 << 1) | 314 | #define DEV_FLAGS_ANYUSE (1 << 1) |
324 | #define DEV_FLAGS_OUT (1 << 2) | 315 | #define DEV_FLAGS_OUT (1 << 2) |
325 | #define DEV_FLAGS_IN (1 << 3) | 316 | #define DEV_FLAGS_IN (1 << 3) |
326 | #define DEV_FLAGS_BURSTABLE (1 << 4) | 317 | #define DEV_FLAGS_BURSTABLE (1 << 4) |
327 | #define DEV_FLAGS_SYNC (1 << 5) | 318 | #define DEV_FLAGS_SYNC (1 << 5) |
328 | /* end Ddma API definitions */ | 319 | /* end DDMA API definitions */ |
329 | 320 | ||
330 | /* External functions for drivers to use. | 321 | /* |
331 | */ | 322 | * External functions for drivers to use. |
332 | /* Use this to allocate a dbdma channel. The device ids are one of the | 323 | * Use this to allocate a DBDMA channel. The device IDs are one of |
333 | * DSCR_CMD0 devices IDs, which is usually redefined to a more | 324 | * the DSCR_CMD0 devices IDs, which is usually redefined to a more |
334 | * meaningful name. The 'callback' is called during dma completion | 325 | * meaningful name. The 'callback' is called during DMA completion |
335 | * interrupt. | 326 | * interrupt. |
336 | */ | 327 | */ |
337 | extern u32 au1xxx_dbdma_chan_alloc(u32 srcid, u32 destid, | 328 | extern u32 au1xxx_dbdma_chan_alloc(u32 srcid, u32 destid, |
338 | void (*callback)(int, void *), void *callparam); | 329 | void (*callback)(int, void *), |
330 | void *callparam); | ||
339 | 331 | ||
340 | #define DBDMA_MEM_CHAN DSCR_CMD0_ALWAYS | 332 | #define DBDMA_MEM_CHAN DSCR_CMD0_ALWAYS |
341 | 333 | ||
342 | /* Set the device width of a in/out fifo. | 334 | /* Set the device width of an in/out FIFO. */ |
343 | */ | ||
344 | u32 au1xxx_dbdma_set_devwidth(u32 chanid, int bits); | 335 | u32 au1xxx_dbdma_set_devwidth(u32 chanid, int bits); |
345 | 336 | ||
346 | /* Allocate a ring of descriptors for dbdma. | 337 | /* Allocate a ring of descriptors for DBDMA. */ |
347 | */ | ||
348 | u32 au1xxx_dbdma_ring_alloc(u32 chanid, int entries); | 338 | u32 au1xxx_dbdma_ring_alloc(u32 chanid, int entries); |
349 | 339 | ||
350 | /* Put buffers on source/destination descriptors. | 340 | /* Put buffers on source/destination descriptors. */ |
351 | */ | ||
352 | u32 _au1xxx_dbdma_put_source(u32 chanid, void *buf, int nbytes, u32 flags); | 341 | u32 _au1xxx_dbdma_put_source(u32 chanid, void *buf, int nbytes, u32 flags); |
353 | u32 _au1xxx_dbdma_put_dest(u32 chanid, void *buf, int nbytes, u32 flags); | 342 | u32 _au1xxx_dbdma_put_dest(u32 chanid, void *buf, int nbytes, u32 flags); |
354 | 343 | ||
355 | /* Get a buffer from the destination descriptor. | 344 | /* Get a buffer from the destination descriptor. */ |
356 | */ | ||
357 | u32 au1xxx_dbdma_get_dest(u32 chanid, void **buf, int *nbytes); | 345 | u32 au1xxx_dbdma_get_dest(u32 chanid, void **buf, int *nbytes); |
358 | 346 | ||
359 | void au1xxx_dbdma_stop(u32 chanid); | 347 | void au1xxx_dbdma_stop(u32 chanid); |
@@ -364,29 +352,34 @@ u32 au1xxx_get_dma_residue(u32 chanid); | |||
364 | void au1xxx_dbdma_chan_free(u32 chanid); | 352 | void au1xxx_dbdma_chan_free(u32 chanid); |
365 | void au1xxx_dbdma_dump(u32 chanid); | 353 | void au1xxx_dbdma_dump(u32 chanid); |
366 | 354 | ||
367 | u32 au1xxx_dbdma_put_dscr(u32 chanid, au1x_ddma_desc_t *dscr ); | 355 | u32 au1xxx_dbdma_put_dscr(u32 chanid, au1x_ddma_desc_t *dscr); |
368 | 356 | ||
369 | u32 au1xxx_ddma_add_device( dbdev_tab_t *dev ); | 357 | u32 au1xxx_ddma_add_device(dbdev_tab_t *dev); |
370 | void * au1xxx_ddma_get_nextptr_virt(au1x_ddma_desc_t *dp); | 358 | void *au1xxx_ddma_get_nextptr_virt(au1x_ddma_desc_t *dp); |
371 | 359 | ||
372 | /* | 360 | /* |
373 | Some compatibilty macros -- | 361 | * Some compatibilty macros -- needed to make changes to API |
374 | Needed to make changes to API without breaking existing drivers | 362 | * without breaking existing drivers. |
375 | */ | 363 | */ |
376 | #define au1xxx_dbdma_put_source(chanid, buf, nbytes)_au1xxx_dbdma_put_source(chanid, buf, nbytes, DDMA_FLAGS_IE) | 364 | #define au1xxx_dbdma_put_source(chanid, buf, nbytes) \ |
377 | #define au1xxx_dbdma_put_source_flags(chanid, buf, nbytes, flags) _au1xxx_dbdma_put_source(chanid, buf, nbytes, flags) | 365 | _au1xxx_dbdma_put_source(chanid, buf, nbytes, DDMA_FLAGS_IE) |
378 | #define put_source_flags(chanid, buf, nbytes, flags) au1xxx_dbdma_put_source_flags(chanid, buf, nbytes, flags) | 366 | #define au1xxx_dbdma_put_source_flags(chanid, buf, nbytes, flags) \ |
379 | 367 | _au1xxx_dbdma_put_source(chanid, buf, nbytes, flags) | |
380 | 368 | #define put_source_flags(chanid, buf, nbytes, flags) \ | |
381 | #define au1xxx_dbdma_put_dest(chanid, buf, nbytes) _au1xxx_dbdma_put_dest(chanid, buf, nbytes, DDMA_FLAGS_IE) | 369 | au1xxx_dbdma_put_source_flags(chanid, buf, nbytes, flags) |
382 | #define au1xxx_dbdma_put_dest_flags(chanid, buf, nbytes, flags) _au1xxx_dbdma_put_dest(chanid, buf, nbytes, flags) | 370 | |
383 | #define put_dest_flags(chanid, buf, nbytes, flags) au1xxx_dbdma_put_dest_flags(chanid, buf, nbytes, flags) | 371 | #define au1xxx_dbdma_put_dest(chanid, buf, nbytes) \ |
372 | _au1xxx_dbdma_put_dest(chanid, buf, nbytes, DDMA_FLAGS_IE) | ||
373 | #define au1xxx_dbdma_put_dest_flags(chanid, buf, nbytes, flags) \ | ||
374 | _au1xxx_dbdma_put_dest(chanid, buf, nbytes, flags) | ||
375 | #define put_dest_flags(chanid, buf, nbytes, flags) \ | ||
376 | au1xxx_dbdma_put_dest_flags(chanid, buf, nbytes, flags) | ||
384 | 377 | ||
385 | /* | 378 | /* |
386 | * Flags for the put_source/put_dest functions. | 379 | * Flags for the put_source/put_dest functions. |
387 | */ | 380 | */ |
388 | #define DDMA_FLAGS_IE (1<<0) | 381 | #define DDMA_FLAGS_IE (1 << 0) |
389 | #define DDMA_FLAGS_NOIE (1<<1) | 382 | #define DDMA_FLAGS_NOIE (1 << 1) |
390 | 383 | ||
391 | #endif /* _LANGUAGE_ASSEMBLY */ | 384 | #endif /* _LANGUAGE_ASSEMBLY */ |
392 | #endif /* _AU1000_DBDMA_H_ */ | 385 | #endif /* _AU1000_DBDMA_H_ */ |
diff --git a/include/asm-mips/mach-au1x00/au1xxx_ide.h b/include/asm-mips/mach-au1x00/au1xxx_ide.h index b493a5e46c63..60638b8969ba 100644 --- a/include/asm-mips/mach-au1x00/au1xxx_ide.h +++ b/include/asm-mips/mach-au1x00/au1xxx_ide.h | |||
@@ -31,167 +31,164 @@ | |||
31 | */ | 31 | */ |
32 | 32 | ||
33 | #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA | 33 | #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA |
34 | #define DMA_WAIT_TIMEOUT 100 | 34 | #define DMA_WAIT_TIMEOUT 100 |
35 | #define NUM_DESCRIPTORS PRD_ENTRIES | 35 | #define NUM_DESCRIPTORS PRD_ENTRIES |
36 | #else /* CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA */ | 36 | #else /* CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA */ |
37 | #define NUM_DESCRIPTORS 2 | 37 | #define NUM_DESCRIPTORS 2 |
38 | #endif | 38 | #endif |
39 | 39 | ||
40 | #ifndef AU1XXX_ATA_RQSIZE | 40 | #ifndef AU1XXX_ATA_RQSIZE |
41 | #define AU1XXX_ATA_RQSIZE 128 | 41 | #define AU1XXX_ATA_RQSIZE 128 |
42 | #endif | 42 | #endif |
43 | 43 | ||
44 | /* Disable Burstable-Support for DBDMA */ | 44 | /* Disable Burstable-Support for DBDMA */ |
45 | #ifndef CONFIG_BLK_DEV_IDE_AU1XXX_BURSTABLE_ON | 45 | #ifndef CONFIG_BLK_DEV_IDE_AU1XXX_BURSTABLE_ON |
46 | #define CONFIG_BLK_DEV_IDE_AU1XXX_BURSTABLE_ON 0 | 46 | #define CONFIG_BLK_DEV_IDE_AU1XXX_BURSTABLE_ON 0 |
47 | #endif | 47 | #endif |
48 | 48 | ||
49 | #ifdef CONFIG_PM | 49 | #ifdef CONFIG_PM |
50 | /* | 50 | /* |
51 | * This will enable the device to be powered up when write() or read() | 51 | * This will enable the device to be powered up when write() or read() |
52 | * is called. If this is not defined, the driver will return -EBUSY. | 52 | * is called. If this is not defined, the driver will return -EBUSY. |
53 | */ | 53 | */ |
54 | #define WAKE_ON_ACCESS 1 | 54 | #define WAKE_ON_ACCESS 1 |
55 | 55 | ||
56 | typedef struct | 56 | typedef struct { |
57 | { | 57 | spinlock_t lock; /* Used to block on state transitions */ |
58 | spinlock_t lock; /* Used to block on state transitions */ | 58 | au1xxx_power_dev_t *dev; /* Power Managers device structure */ |
59 | au1xxx_power_dev_t *dev; /* Power Managers device structure */ | 59 | unsigned stopped; /* Used to signal device is stopped */ |
60 | unsigned stopped; /* USed to signaling device is stopped */ | ||
61 | } pm_state; | 60 | } pm_state; |
62 | #endif | 61 | #endif |
63 | 62 | ||
64 | 63 | typedef struct { | |
65 | typedef struct | 64 | u32 tx_dev_id, rx_dev_id, target_dev_id; |
66 | { | 65 | u32 tx_chan, rx_chan; |
67 | u32 tx_dev_id, rx_dev_id, target_dev_id; | 66 | void *tx_desc_head, *rx_desc_head; |
68 | u32 tx_chan, rx_chan; | 67 | ide_hwif_t *hwif; |
69 | void *tx_desc_head, *rx_desc_head; | ||
70 | ide_hwif_t *hwif; | ||
71 | #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA | 68 | #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA |
72 | ide_drive_t *drive; | 69 | ide_drive_t *drive; |
73 | struct dbdma_cmd *dma_table_cpu; | 70 | struct dbdma_cmd *dma_table_cpu; |
74 | dma_addr_t dma_table_dma; | 71 | dma_addr_t dma_table_dma; |
75 | #endif | 72 | #endif |
76 | int irq; | 73 | int irq; |
77 | u32 regbase; | 74 | u32 regbase; |
78 | #ifdef CONFIG_PM | 75 | #ifdef CONFIG_PM |
79 | pm_state pm; | 76 | pm_state pm; |
80 | #endif | 77 | #endif |
81 | } _auide_hwif; | 78 | } _auide_hwif; |
82 | 79 | ||
83 | /******************************************************************************* | 80 | /******************************************************************************/ |
84 | * PIO Mode timing calculation : * | 81 | /* PIO Mode timing calculation : */ |
85 | * * | 82 | /* */ |
86 | * Static Bus Spec ATA Spec * | 83 | /* Static Bus Spec ATA Spec */ |
87 | * Tcsoe = t1 * | 84 | /* Tcsoe = t1 */ |
88 | * Toecs = t9 * | 85 | /* Toecs = t9 */ |
89 | * Twcs = t9 * | 86 | /* Twcs = t9 */ |
90 | * Tcsh = t2i | t2 * | 87 | /* Tcsh = t2i | t2 */ |
91 | * Tcsoff = t2i | t2 * | 88 | /* Tcsoff = t2i | t2 */ |
92 | * Twp = t2 * | 89 | /* Twp = t2 */ |
93 | * Tcsw = t1 * | 90 | /* Tcsw = t1 */ |
94 | * Tpm = 0 * | 91 | /* Tpm = 0 */ |
95 | * Ta = t1+t2 * | 92 | /* Ta = t1+t2 */ |
96 | *******************************************************************************/ | 93 | /******************************************************************************/ |
97 | 94 | ||
98 | #define TCSOE_MASK (0x07<<29) | 95 | #define TCSOE_MASK (0x07 << 29) |
99 | #define TOECS_MASK (0x07<<26) | 96 | #define TOECS_MASK (0x07 << 26) |
100 | #define TWCS_MASK (0x07<<28) | 97 | #define TWCS_MASK (0x07 << 28) |
101 | #define TCSH_MASK (0x0F<<24) | 98 | #define TCSH_MASK (0x0F << 24) |
102 | #define TCSOFF_MASK (0x07<<20) | 99 | #define TCSOFF_MASK (0x07 << 20) |
103 | #define TWP_MASK (0x3F<<14) | 100 | #define TWP_MASK (0x3F << 14) |
104 | #define TCSW_MASK (0x0F<<10) | 101 | #define TCSW_MASK (0x0F << 10) |
105 | #define TPM_MASK (0x0F<<6) | 102 | #define TPM_MASK (0x0F << 6) |
106 | #define TA_MASK (0x3F<<0) | 103 | #define TA_MASK (0x3F << 0) |
107 | #define TS_MASK (1<<8) | 104 | #define TS_MASK (1 << 8) |
108 | 105 | ||
109 | /* Timing parameters PIO mode 0 */ | 106 | /* Timing parameters PIO mode 0 */ |
110 | #define SBC_IDE_PIO0_TCSOE (0x04<<29) | 107 | #define SBC_IDE_PIO0_TCSOE (0x04 << 29) |
111 | #define SBC_IDE_PIO0_TOECS (0x01<<26) | 108 | #define SBC_IDE_PIO0_TOECS (0x01 << 26) |
112 | #define SBC_IDE_PIO0_TWCS (0x02<<28) | 109 | #define SBC_IDE_PIO0_TWCS (0x02 << 28) |
113 | #define SBC_IDE_PIO0_TCSH (0x08<<24) | 110 | #define SBC_IDE_PIO0_TCSH (0x08 << 24) |
114 | #define SBC_IDE_PIO0_TCSOFF (0x07<<20) | 111 | #define SBC_IDE_PIO0_TCSOFF (0x07 << 20) |
115 | #define SBC_IDE_PIO0_TWP (0x10<<14) | 112 | #define SBC_IDE_PIO0_TWP (0x10 << 14) |
116 | #define SBC_IDE_PIO0_TCSW (0x04<<10) | 113 | #define SBC_IDE_PIO0_TCSW (0x04 << 10) |
117 | #define SBC_IDE_PIO0_TPM (0x0<<6) | 114 | #define SBC_IDE_PIO0_TPM (0x00 << 6) |
118 | #define SBC_IDE_PIO0_TA (0x15<<0) | 115 | #define SBC_IDE_PIO0_TA (0x15 << 0) |
119 | /* Timing parameters PIO mode 1 */ | 116 | /* Timing parameters PIO mode 1 */ |
120 | #define SBC_IDE_PIO1_TCSOE (0x03<<29) | 117 | #define SBC_IDE_PIO1_TCSOE (0x03 << 29) |
121 | #define SBC_IDE_PIO1_TOECS (0x01<<26) | 118 | #define SBC_IDE_PIO1_TOECS (0x01 << 26) |
122 | #define SBC_IDE_PIO1_TWCS (0x01<<28) | 119 | #define SBC_IDE_PIO1_TWCS (0x01 << 28) |
123 | #define SBC_IDE_PIO1_TCSH (0x06<<24) | 120 | #define SBC_IDE_PIO1_TCSH (0x06 << 24) |
124 | #define SBC_IDE_PIO1_TCSOFF (0x06<<20) | 121 | #define SBC_IDE_PIO1_TCSOFF (0x06 << 20) |
125 | #define SBC_IDE_PIO1_TWP (0x08<<14) | 122 | #define SBC_IDE_PIO1_TWP (0x08 << 14) |
126 | #define SBC_IDE_PIO1_TCSW (0x03<<10) | 123 | #define SBC_IDE_PIO1_TCSW (0x03 << 10) |
127 | #define SBC_IDE_PIO1_TPM (0x00<<6) | 124 | #define SBC_IDE_PIO1_TPM (0x00 << 6) |
128 | #define SBC_IDE_PIO1_TA (0x0B<<0) | 125 | #define SBC_IDE_PIO1_TA (0x0B << 0) |
129 | /* Timing parameters PIO mode 2 */ | 126 | /* Timing parameters PIO mode 2 */ |
130 | #define SBC_IDE_PIO2_TCSOE (0x05<<29) | 127 | #define SBC_IDE_PIO2_TCSOE (0x05 << 29) |
131 | #define SBC_IDE_PIO2_TOECS (0x01<<26) | 128 | #define SBC_IDE_PIO2_TOECS (0x01 << 26) |
132 | #define SBC_IDE_PIO2_TWCS (0x01<<28) | 129 | #define SBC_IDE_PIO2_TWCS (0x01 << 28) |
133 | #define SBC_IDE_PIO2_TCSH (0x07<<24) | 130 | #define SBC_IDE_PIO2_TCSH (0x07 << 24) |
134 | #define SBC_IDE_PIO2_TCSOFF (0x07<<20) | 131 | #define SBC_IDE_PIO2_TCSOFF (0x07 << 20) |
135 | #define SBC_IDE_PIO2_TWP (0x1F<<14) | 132 | #define SBC_IDE_PIO2_TWP (0x1F << 14) |
136 | #define SBC_IDE_PIO2_TCSW (0x05<<10) | 133 | #define SBC_IDE_PIO2_TCSW (0x05 << 10) |
137 | #define SBC_IDE_PIO2_TPM (0x00<<6) | 134 | #define SBC_IDE_PIO2_TPM (0x00 << 6) |
138 | #define SBC_IDE_PIO2_TA (0x22<<0) | 135 | #define SBC_IDE_PIO2_TA (0x22 << 0) |
139 | /* Timing parameters PIO mode 3 */ | 136 | /* Timing parameters PIO mode 3 */ |
140 | #define SBC_IDE_PIO3_TCSOE (0x05<<29) | 137 | #define SBC_IDE_PIO3_TCSOE (0x05 << 29) |
141 | #define SBC_IDE_PIO3_TOECS (0x01<<26) | 138 | #define SBC_IDE_PIO3_TOECS (0x01 << 26) |
142 | #define SBC_IDE_PIO3_TWCS (0x01<<28) | 139 | #define SBC_IDE_PIO3_TWCS (0x01 << 28) |
143 | #define SBC_IDE_PIO3_TCSH (0x0D<<24) | 140 | #define SBC_IDE_PIO3_TCSH (0x0D << 24) |
144 | #define SBC_IDE_PIO3_TCSOFF (0x0D<<20) | 141 | #define SBC_IDE_PIO3_TCSOFF (0x0D << 20) |
145 | #define SBC_IDE_PIO3_TWP (0x15<<14) | 142 | #define SBC_IDE_PIO3_TWP (0x15 << 14) |
146 | #define SBC_IDE_PIO3_TCSW (0x05<<10) | 143 | #define SBC_IDE_PIO3_TCSW (0x05 << 10) |
147 | #define SBC_IDE_PIO3_TPM (0x00<<6) | 144 | #define SBC_IDE_PIO3_TPM (0x00 << 6) |
148 | #define SBC_IDE_PIO3_TA (0x1A<<0) | 145 | #define SBC_IDE_PIO3_TA (0x1A << 0) |
149 | /* Timing parameters PIO mode 4 */ | 146 | /* Timing parameters PIO mode 4 */ |
150 | #define SBC_IDE_PIO4_TCSOE (0x04<<29) | 147 | #define SBC_IDE_PIO4_TCSOE (0x04 << 29) |
151 | #define SBC_IDE_PIO4_TOECS (0x01<<26) | 148 | #define SBC_IDE_PIO4_TOECS (0x01 << 26) |
152 | #define SBC_IDE_PIO4_TWCS (0x01<<28) | 149 | #define SBC_IDE_PIO4_TWCS (0x01 << 28) |
153 | #define SBC_IDE_PIO4_TCSH (0x04<<24) | 150 | #define SBC_IDE_PIO4_TCSH (0x04 << 24) |
154 | #define SBC_IDE_PIO4_TCSOFF (0x04<<20) | 151 | #define SBC_IDE_PIO4_TCSOFF (0x04 << 20) |
155 | #define SBC_IDE_PIO4_TWP (0x0D<<14) | 152 | #define SBC_IDE_PIO4_TWP (0x0D << 14) |
156 | #define SBC_IDE_PIO4_TCSW (0x03<<10) | 153 | #define SBC_IDE_PIO4_TCSW (0x03 << 10) |
157 | #define SBC_IDE_PIO4_TPM (0x00<<6) | 154 | #define SBC_IDE_PIO4_TPM (0x00 << 6) |
158 | #define SBC_IDE_PIO4_TA (0x12<<0) | 155 | #define SBC_IDE_PIO4_TA (0x12 << 0) |
159 | /* Timing parameters MDMA mode 0 */ | 156 | /* Timing parameters MDMA mode 0 */ |
160 | #define SBC_IDE_MDMA0_TCSOE (0x03<<29) | 157 | #define SBC_IDE_MDMA0_TCSOE (0x03 << 29) |
161 | #define SBC_IDE_MDMA0_TOECS (0x01<<26) | 158 | #define SBC_IDE_MDMA0_TOECS (0x01 << 26) |
162 | #define SBC_IDE_MDMA0_TWCS (0x01<<28) | 159 | #define SBC_IDE_MDMA0_TWCS (0x01 << 28) |
163 | #define SBC_IDE_MDMA0_TCSH (0x07<<24) | 160 | #define SBC_IDE_MDMA0_TCSH (0x07 << 24) |
164 | #define SBC_IDE_MDMA0_TCSOFF (0x07<<20) | 161 | #define SBC_IDE_MDMA0_TCSOFF (0x07 << 20) |
165 | #define SBC_IDE_MDMA0_TWP (0x0C<<14) | 162 | #define SBC_IDE_MDMA0_TWP (0x0C << 14) |
166 | #define SBC_IDE_MDMA0_TCSW (0x03<<10) | 163 | #define SBC_IDE_MDMA0_TCSW (0x03 << 10) |
167 | #define SBC_IDE_MDMA0_TPM (0x00<<6) | 164 | #define SBC_IDE_MDMA0_TPM (0x00 << 6) |
168 | #define SBC_IDE_MDMA0_TA (0x0F<<0) | 165 | #define SBC_IDE_MDMA0_TA (0x0F << 0) |
169 | /* Timing parameters MDMA mode 1 */ | 166 | /* Timing parameters MDMA mode 1 */ |
170 | #define SBC_IDE_MDMA1_TCSOE (0x05<<29) | 167 | #define SBC_IDE_MDMA1_TCSOE (0x05 << 29) |
171 | #define SBC_IDE_MDMA1_TOECS (0x01<<26) | 168 | #define SBC_IDE_MDMA1_TOECS (0x01 << 26) |
172 | #define SBC_IDE_MDMA1_TWCS (0x01<<28) | 169 | #define SBC_IDE_MDMA1_TWCS (0x01 << 28) |
173 | #define SBC_IDE_MDMA1_TCSH (0x05<<24) | 170 | #define SBC_IDE_MDMA1_TCSH (0x05 << 24) |
174 | #define SBC_IDE_MDMA1_TCSOFF (0x05<<20) | 171 | #define SBC_IDE_MDMA1_TCSOFF (0x05 << 20) |
175 | #define SBC_IDE_MDMA1_TWP (0x0F<<14) | 172 | #define SBC_IDE_MDMA1_TWP (0x0F << 14) |
176 | #define SBC_IDE_MDMA1_TCSW (0x05<<10) | 173 | #define SBC_IDE_MDMA1_TCSW (0x05 << 10) |
177 | #define SBC_IDE_MDMA1_TPM (0x00<<6) | 174 | #define SBC_IDE_MDMA1_TPM (0x00 << 6) |
178 | #define SBC_IDE_MDMA1_TA (0x15<<0) | 175 | #define SBC_IDE_MDMA1_TA (0x15 << 0) |
179 | /* Timing parameters MDMA mode 2 */ | 176 | /* Timing parameters MDMA mode 2 */ |
180 | #define SBC_IDE_MDMA2_TCSOE (0x04<<29) | 177 | #define SBC_IDE_MDMA2_TCSOE (0x04 << 29) |
181 | #define SBC_IDE_MDMA2_TOECS (0x01<<26) | 178 | #define SBC_IDE_MDMA2_TOECS (0x01 << 26) |
182 | #define SBC_IDE_MDMA2_TWCS (0x01<<28) | 179 | #define SBC_IDE_MDMA2_TWCS (0x01 << 28) |
183 | #define SBC_IDE_MDMA2_TCSH (0x04<<24) | 180 | #define SBC_IDE_MDMA2_TCSH (0x04 << 24) |
184 | #define SBC_IDE_MDMA2_TCSOFF (0x04<<20) | 181 | #define SBC_IDE_MDMA2_TCSOFF (0x04 << 20) |
185 | #define SBC_IDE_MDMA2_TWP (0x0D<<14) | 182 | #define SBC_IDE_MDMA2_TWP (0x0D << 14) |
186 | #define SBC_IDE_MDMA2_TCSW (0x04<<10) | 183 | #define SBC_IDE_MDMA2_TCSW (0x04 << 10) |
187 | #define SBC_IDE_MDMA2_TPM (0x00<<6) | 184 | #define SBC_IDE_MDMA2_TPM (0x00 << 6) |
188 | #define SBC_IDE_MDMA2_TA (0x12<<0) | 185 | #define SBC_IDE_MDMA2_TA (0x12 << 0) |
189 | 186 | ||
190 | #define SBC_IDE_TIMING(mode) \ | 187 | #define SBC_IDE_TIMING(mode) \ |
191 | SBC_IDE_##mode##_TWCS | \ | 188 | (SBC_IDE_##mode##_TWCS | \ |
192 | SBC_IDE_##mode##_TCSH | \ | 189 | SBC_IDE_##mode##_TCSH | \ |
193 | SBC_IDE_##mode##_TCSOFF | \ | 190 | SBC_IDE_##mode##_TCSOFF | \ |
194 | SBC_IDE_##mode##_TWP | \ | 191 | SBC_IDE_##mode##_TWP | \ |
195 | SBC_IDE_##mode##_TCSW | \ | 192 | SBC_IDE_##mode##_TCSW | \ |
196 | SBC_IDE_##mode##_TPM | \ | 193 | SBC_IDE_##mode##_TPM | \ |
197 | SBC_IDE_##mode##_TA | 194 | SBC_IDE_##mode##_TA) |
diff --git a/include/asm-mips/mach-au1x00/au1xxx_psc.h b/include/asm-mips/mach-au1x00/au1xxx_psc.h index 1bd4e27caf6b..dae4eca2417e 100644 --- a/include/asm-mips/mach-au1x00/au1xxx_psc.h +++ b/include/asm-mips/mach-au1x00/au1xxx_psc.h | |||
@@ -33,7 +33,6 @@ | |||
33 | #ifndef _AU1000_PSC_H_ | 33 | #ifndef _AU1000_PSC_H_ |
34 | #define _AU1000_PSC_H_ | 34 | #define _AU1000_PSC_H_ |
35 | 35 | ||
36 | |||
37 | /* The PSC base addresses. */ | 36 | /* The PSC base addresses. */ |
38 | #ifdef CONFIG_SOC_AU1550 | 37 | #ifdef CONFIG_SOC_AU1550 |
39 | #define PSC0_BASE_ADDR 0xb1a00000 | 38 | #define PSC0_BASE_ADDR 0xb1a00000 |
@@ -47,8 +46,8 @@ | |||
47 | #define PSC1_BASE_ADDR 0xb1b00000 | 46 | #define PSC1_BASE_ADDR 0xb1b00000 |
48 | #endif | 47 | #endif |
49 | 48 | ||
50 | /* The PSC select and control registers are common to | 49 | /* |
51 | * all protocols. | 50 | * The PSC select and control registers are common to all protocols. |
52 | */ | 51 | */ |
53 | #define PSC_SEL_OFFSET 0x00000000 | 52 | #define PSC_SEL_OFFSET 0x00000000 |
54 | #define PSC_CTRL_OFFSET 0x00000004 | 53 | #define PSC_CTRL_OFFSET 0x00000004 |
@@ -59,18 +58,17 @@ | |||
59 | #define PSC_SEL_CLK_SERCLK (2 << 4) | 58 | #define PSC_SEL_CLK_SERCLK (2 << 4) |
60 | 59 | ||
61 | #define PSC_SEL_PS_MASK 0x00000007 | 60 | #define PSC_SEL_PS_MASK 0x00000007 |
62 | #define PSC_SEL_PS_DISABLED (0) | 61 | #define PSC_SEL_PS_DISABLED 0 |
63 | #define PSC_SEL_PS_SPIMODE (2) | 62 | #define PSC_SEL_PS_SPIMODE 2 |
64 | #define PSC_SEL_PS_I2SMODE (3) | 63 | #define PSC_SEL_PS_I2SMODE 3 |
65 | #define PSC_SEL_PS_AC97MODE (4) | 64 | #define PSC_SEL_PS_AC97MODE 4 |
66 | #define PSC_SEL_PS_SMBUSMODE (5) | 65 | #define PSC_SEL_PS_SMBUSMODE 5 |
67 | 66 | ||
68 | #define PSC_CTRL_DISABLE (0) | 67 | #define PSC_CTRL_DISABLE 0 |
69 | #define PSC_CTRL_SUSPEND (2) | 68 | #define PSC_CTRL_SUSPEND 2 |
70 | #define PSC_CTRL_ENABLE (3) | 69 | #define PSC_CTRL_ENABLE 3 |
71 | 70 | ||
72 | /* AC97 Registers. | 71 | /* AC97 Registers. */ |
73 | */ | ||
74 | #define PSC_AC97CFG_OFFSET 0x00000008 | 72 | #define PSC_AC97CFG_OFFSET 0x00000008 |
75 | #define PSC_AC97MSK_OFFSET 0x0000000c | 73 | #define PSC_AC97MSK_OFFSET 0x0000000c |
76 | #define PSC_AC97PCR_OFFSET 0x00000010 | 74 | #define PSC_AC97PCR_OFFSET 0x00000010 |
@@ -95,8 +93,7 @@ | |||
95 | #define PSC_AC97GPO (AC97_PSC_BASE + PSC_AC97GPO_OFFSET) | 93 | #define PSC_AC97GPO (AC97_PSC_BASE + PSC_AC97GPO_OFFSET) |
96 | #define PSC_AC97GPI (AC97_PSC_BASE + PSC_AC97GPI_OFFSET) | 94 | #define PSC_AC97GPI (AC97_PSC_BASE + PSC_AC97GPI_OFFSET) |
97 | 95 | ||
98 | /* AC97 Config Register. | 96 | /* AC97 Config Register. */ |
99 | */ | ||
100 | #define PSC_AC97CFG_RT_MASK (3 << 30) | 97 | #define PSC_AC97CFG_RT_MASK (3 << 30) |
101 | #define PSC_AC97CFG_RT_FIFO1 (0 << 30) | 98 | #define PSC_AC97CFG_RT_FIFO1 (0 << 30) |
102 | #define PSC_AC97CFG_RT_FIFO2 (1 << 30) | 99 | #define PSC_AC97CFG_RT_FIFO2 (1 << 30) |
@@ -118,20 +115,19 @@ | |||
118 | #define PSC_AC97CFG_RXSLOT_MASK (0x3ff << 1) | 115 | #define PSC_AC97CFG_RXSLOT_MASK (0x3ff << 1) |
119 | #define PSC_AC97CFG_GE_ENABLE (1) | 116 | #define PSC_AC97CFG_GE_ENABLE (1) |
120 | 117 | ||
121 | /* Enable slots 3-12. | 118 | /* Enable slots 3-12. */ |
122 | */ | ||
123 | #define PSC_AC97CFG_TXSLOT_ENA(x) (1 << (((x) - 3) + 11)) | 119 | #define PSC_AC97CFG_TXSLOT_ENA(x) (1 << (((x) - 3) + 11)) |
124 | #define PSC_AC97CFG_RXSLOT_ENA(x) (1 << (((x) - 3) + 1)) | 120 | #define PSC_AC97CFG_RXSLOT_ENA(x) (1 << (((x) - 3) + 1)) |
125 | 121 | ||
126 | /* The word length equation is ((x) * 2) + 2, so choose 'x' appropriately. | 122 | /* |
123 | * The word length equation is ((x) * 2) + 2, so choose 'x' appropriately. | ||
127 | * The only sensible numbers are 7, 9, or possibly 11. Nah, just do the | 124 | * The only sensible numbers are 7, 9, or possibly 11. Nah, just do the |
128 | * arithmetic in the macro. | 125 | * arithmetic in the macro. |
129 | */ | 126 | */ |
130 | #define PSC_AC97CFG_SET_LEN(x) (((((x)-2)/2) & 0xf) << 21) | 127 | #define PSC_AC97CFG_SET_LEN(x) (((((x) - 2) / 2) & 0xf) << 21) |
131 | #define PSC_AC97CFG_GET_LEN(x) (((((x) >> 21) & 0xf) * 2) + 2) | 128 | #define PSC_AC97CFG_GET_LEN(x) (((((x) >> 21) & 0xf) * 2) + 2) |
132 | 129 | ||
133 | /* AC97 Mask Register. | 130 | /* AC97 Mask Register. */ |
134 | */ | ||
135 | #define PSC_AC97MSK_GR (1 << 25) | 131 | #define PSC_AC97MSK_GR (1 << 25) |
136 | #define PSC_AC97MSK_CD (1 << 24) | 132 | #define PSC_AC97MSK_CD (1 << 24) |
137 | #define PSC_AC97MSK_RR (1 << 13) | 133 | #define PSC_AC97MSK_RR (1 << 13) |
@@ -148,8 +144,7 @@ | |||
148 | PSC_AC97MSK_TO | PSC_AC97MSK_TU | \ | 144 | PSC_AC97MSK_TO | PSC_AC97MSK_TU | \ |
149 | PSC_AC97MSK_RD | PSC_AC97MSK_TD) | 145 | PSC_AC97MSK_RD | PSC_AC97MSK_TD) |
150 | 146 | ||
151 | /* AC97 Protocol Control Register. | 147 | /* AC97 Protocol Control Register. */ |
152 | */ | ||
153 | #define PSC_AC97PCR_RC (1 << 6) | 148 | #define PSC_AC97PCR_RC (1 << 6) |
154 | #define PSC_AC97PCR_RP (1 << 5) | 149 | #define PSC_AC97PCR_RP (1 << 5) |
155 | #define PSC_AC97PCR_RS (1 << 4) | 150 | #define PSC_AC97PCR_RS (1 << 4) |
@@ -157,8 +152,7 @@ | |||
157 | #define PSC_AC97PCR_TP (1 << 1) | 152 | #define PSC_AC97PCR_TP (1 << 1) |
158 | #define PSC_AC97PCR_TS (1 << 0) | 153 | #define PSC_AC97PCR_TS (1 << 0) |
159 | 154 | ||
160 | /* AC97 Status register (read only). | 155 | /* AC97 Status register (read only). */ |
161 | */ | ||
162 | #define PSC_AC97STAT_CB (1 << 26) | 156 | #define PSC_AC97STAT_CB (1 << 26) |
163 | #define PSC_AC97STAT_CP (1 << 25) | 157 | #define PSC_AC97STAT_CP (1 << 25) |
164 | #define PSC_AC97STAT_CR (1 << 24) | 158 | #define PSC_AC97STAT_CR (1 << 24) |
@@ -174,8 +168,7 @@ | |||
174 | #define PSC_AC97STAT_DR (1 << 1) | 168 | #define PSC_AC97STAT_DR (1 << 1) |
175 | #define PSC_AC97STAT_SR (1 << 0) | 169 | #define PSC_AC97STAT_SR (1 << 0) |
176 | 170 | ||
177 | /* AC97 Event Register. | 171 | /* AC97 Event Register. */ |
178 | */ | ||
179 | #define PSC_AC97EVNT_GR (1 << 25) | 172 | #define PSC_AC97EVNT_GR (1 << 25) |
180 | #define PSC_AC97EVNT_CD (1 << 24) | 173 | #define PSC_AC97EVNT_CD (1 << 24) |
181 | #define PSC_AC97EVNT_RR (1 << 13) | 174 | #define PSC_AC97EVNT_RR (1 << 13) |
@@ -187,22 +180,18 @@ | |||
187 | #define PSC_AC97EVNT_RD (1 << 5) | 180 | #define PSC_AC97EVNT_RD (1 << 5) |
188 | #define PSC_AC97EVNT_TD (1 << 4) | 181 | #define PSC_AC97EVNT_TD (1 << 4) |
189 | 182 | ||
190 | /* CODEC Command Register. | 183 | /* CODEC Command Register. */ |
191 | */ | ||
192 | #define PSC_AC97CDC_RD (1 << 25) | 184 | #define PSC_AC97CDC_RD (1 << 25) |
193 | #define PSC_AC97CDC_ID_MASK (3 << 23) | 185 | #define PSC_AC97CDC_ID_MASK (3 << 23) |
194 | #define PSC_AC97CDC_INDX_MASK (0x7f << 16) | 186 | #define PSC_AC97CDC_INDX_MASK (0x7f << 16) |
195 | #define PSC_AC97CDC_ID(x) (((x) & 0x3) << 23) | 187 | #define PSC_AC97CDC_ID(x) (((x) & 0x03) << 23) |
196 | #define PSC_AC97CDC_INDX(x) (((x) & 0x7f) << 16) | 188 | #define PSC_AC97CDC_INDX(x) (((x) & 0x7f) << 16) |
197 | 189 | ||
198 | /* AC97 Reset Control Register. | 190 | /* AC97 Reset Control Register. */ |
199 | */ | ||
200 | #define PSC_AC97RST_RST (1 << 1) | 191 | #define PSC_AC97RST_RST (1 << 1) |
201 | #define PSC_AC97RST_SNC (1 << 0) | 192 | #define PSC_AC97RST_SNC (1 << 0) |
202 | 193 | ||
203 | 194 | /* PSC in I2S Mode. */ | |
204 | /* PSC in I2S Mode. | ||
205 | */ | ||
206 | typedef struct psc_i2s { | 195 | typedef struct psc_i2s { |
207 | u32 psc_sel; | 196 | u32 psc_sel; |
208 | u32 psc_ctrl; | 197 | u32 psc_ctrl; |
@@ -215,8 +204,7 @@ typedef struct psc_i2s { | |||
215 | u32 psc_i2sudf; | 204 | u32 psc_i2sudf; |
216 | } psc_i2s_t; | 205 | } psc_i2s_t; |
217 | 206 | ||
218 | /* I2S Config Register. | 207 | /* I2S Config Register. */ |
219 | */ | ||
220 | #define PSC_I2SCFG_RT_MASK (3 << 30) | 208 | #define PSC_I2SCFG_RT_MASK (3 << 30) |
221 | #define PSC_I2SCFG_RT_FIFO1 (0 << 30) | 209 | #define PSC_I2SCFG_RT_FIFO1 (0 << 30) |
222 | #define PSC_I2SCFG_RT_FIFO2 (1 << 30) | 210 | #define PSC_I2SCFG_RT_FIFO2 (1 << 30) |
@@ -247,8 +235,7 @@ typedef struct psc_i2s { | |||
247 | #define PSC_I2SCFG_MLJ (1 << 10) | 235 | #define PSC_I2SCFG_MLJ (1 << 10) |
248 | #define PSC_I2SCFG_XM (1 << 9) | 236 | #define PSC_I2SCFG_XM (1 << 9) |
249 | 237 | ||
250 | /* The word length equation is simply LEN+1. | 238 | /* The word length equation is simply LEN+1. */ |
251 | */ | ||
252 | #define PSC_I2SCFG_SET_LEN(x) ((((x) - 1) & 0x1f) << 4) | 239 | #define PSC_I2SCFG_SET_LEN(x) ((((x) - 1) & 0x1f) << 4) |
253 | #define PSC_I2SCFG_GET_LEN(x) ((((x) >> 4) & 0x1f) + 1) | 240 | #define PSC_I2SCFG_GET_LEN(x) ((((x) >> 4) & 0x1f) + 1) |
254 | 241 | ||
@@ -256,8 +243,7 @@ typedef struct psc_i2s { | |||
256 | #define PSC_I2SCFG_MLF (1 << 1) | 243 | #define PSC_I2SCFG_MLF (1 << 1) |
257 | #define PSC_I2SCFG_MS (1 << 0) | 244 | #define PSC_I2SCFG_MS (1 << 0) |
258 | 245 | ||
259 | /* I2S Mask Register. | 246 | /* I2S Mask Register. */ |
260 | */ | ||
261 | #define PSC_I2SMSK_RR (1 << 13) | 247 | #define PSC_I2SMSK_RR (1 << 13) |
262 | #define PSC_I2SMSK_RO (1 << 12) | 248 | #define PSC_I2SMSK_RO (1 << 12) |
263 | #define PSC_I2SMSK_RU (1 << 11) | 249 | #define PSC_I2SMSK_RU (1 << 11) |
@@ -271,8 +257,7 @@ typedef struct psc_i2s { | |||
271 | PSC_I2SMSK_TO | PSC_I2SMSK_TU | \ | 257 | PSC_I2SMSK_TO | PSC_I2SMSK_TU | \ |
272 | PSC_I2SMSK_RD | PSC_I2SMSK_TD) | 258 | PSC_I2SMSK_RD | PSC_I2SMSK_TD) |
273 | 259 | ||
274 | /* I2S Protocol Control Register. | 260 | /* I2S Protocol Control Register. */ |
275 | */ | ||
276 | #define PSC_I2SPCR_RC (1 << 6) | 261 | #define PSC_I2SPCR_RC (1 << 6) |
277 | #define PSC_I2SPCR_RP (1 << 5) | 262 | #define PSC_I2SPCR_RP (1 << 5) |
278 | #define PSC_I2SPCR_RS (1 << 4) | 263 | #define PSC_I2SPCR_RS (1 << 4) |
@@ -280,8 +265,7 @@ typedef struct psc_i2s { | |||
280 | #define PSC_I2SPCR_TP (1 << 1) | 265 | #define PSC_I2SPCR_TP (1 << 1) |
281 | #define PSC_I2SPCR_TS (1 << 0) | 266 | #define PSC_I2SPCR_TS (1 << 0) |
282 | 267 | ||
283 | /* I2S Status register (read only). | 268 | /* I2S Status register (read only). */ |
284 | */ | ||
285 | #define PSC_I2SSTAT_RF (1 << 13) | 269 | #define PSC_I2SSTAT_RF (1 << 13) |
286 | #define PSC_I2SSTAT_RE (1 << 12) | 270 | #define PSC_I2SSTAT_RE (1 << 12) |
287 | #define PSC_I2SSTAT_RR (1 << 11) | 271 | #define PSC_I2SSTAT_RR (1 << 11) |
@@ -294,8 +278,7 @@ typedef struct psc_i2s { | |||
294 | #define PSC_I2SSTAT_DR (1 << 1) | 278 | #define PSC_I2SSTAT_DR (1 << 1) |
295 | #define PSC_I2SSTAT_SR (1 << 0) | 279 | #define PSC_I2SSTAT_SR (1 << 0) |
296 | 280 | ||
297 | /* I2S Event Register. | 281 | /* I2S Event Register. */ |
298 | */ | ||
299 | #define PSC_I2SEVNT_RR (1 << 13) | 282 | #define PSC_I2SEVNT_RR (1 << 13) |
300 | #define PSC_I2SEVNT_RO (1 << 12) | 283 | #define PSC_I2SEVNT_RO (1 << 12) |
301 | #define PSC_I2SEVNT_RU (1 << 11) | 284 | #define PSC_I2SEVNT_RU (1 << 11) |
@@ -305,8 +288,7 @@ typedef struct psc_i2s { | |||
305 | #define PSC_I2SEVNT_RD (1 << 5) | 288 | #define PSC_I2SEVNT_RD (1 << 5) |
306 | #define PSC_I2SEVNT_TD (1 << 4) | 289 | #define PSC_I2SEVNT_TD (1 << 4) |
307 | 290 | ||
308 | /* PSC in SPI Mode. | 291 | /* PSC in SPI Mode. */ |
309 | */ | ||
310 | typedef struct psc_spi { | 292 | typedef struct psc_spi { |
311 | u32 psc_sel; | 293 | u32 psc_sel; |
312 | u32 psc_ctrl; | 294 | u32 psc_ctrl; |
@@ -318,8 +300,7 @@ typedef struct psc_spi { | |||
318 | u32 psc_spitxrx; | 300 | u32 psc_spitxrx; |
319 | } psc_spi_t; | 301 | } psc_spi_t; |
320 | 302 | ||
321 | /* SPI Config Register. | 303 | /* SPI Config Register. */ |
322 | */ | ||
323 | #define PSC_SPICFG_RT_MASK (3 << 30) | 304 | #define PSC_SPICFG_RT_MASK (3 << 30) |
324 | #define PSC_SPICFG_RT_FIFO1 (0 << 30) | 305 | #define PSC_SPICFG_RT_FIFO1 (0 << 30) |
325 | #define PSC_SPICFG_RT_FIFO2 (1 << 30) | 306 | #define PSC_SPICFG_RT_FIFO2 (1 << 30) |
@@ -355,8 +336,7 @@ typedef struct psc_spi { | |||
355 | #define PSC_SPICFG_MLF (1 << 1) | 336 | #define PSC_SPICFG_MLF (1 << 1) |
356 | #define PSC_SPICFG_MO (1 << 0) | 337 | #define PSC_SPICFG_MO (1 << 0) |
357 | 338 | ||
358 | /* SPI Mask Register. | 339 | /* SPI Mask Register. */ |
359 | */ | ||
360 | #define PSC_SPIMSK_MM (1 << 16) | 340 | #define PSC_SPIMSK_MM (1 << 16) |
361 | #define PSC_SPIMSK_RR (1 << 13) | 341 | #define PSC_SPIMSK_RR (1 << 13) |
362 | #define PSC_SPIMSK_RO (1 << 12) | 342 | #define PSC_SPIMSK_RO (1 << 12) |
@@ -371,16 +351,14 @@ typedef struct psc_spi { | |||
371 | PSC_SPIMSK_TU | PSC_SPIMSK_SD | \ | 351 | PSC_SPIMSK_TU | PSC_SPIMSK_SD | \ |
372 | PSC_SPIMSK_MD) | 352 | PSC_SPIMSK_MD) |
373 | 353 | ||
374 | /* SPI Protocol Control Register. | 354 | /* SPI Protocol Control Register. */ |
375 | */ | ||
376 | #define PSC_SPIPCR_RC (1 << 6) | 355 | #define PSC_SPIPCR_RC (1 << 6) |
377 | #define PSC_SPIPCR_SP (1 << 5) | 356 | #define PSC_SPIPCR_SP (1 << 5) |
378 | #define PSC_SPIPCR_SS (1 << 4) | 357 | #define PSC_SPIPCR_SS (1 << 4) |
379 | #define PSC_SPIPCR_TC (1 << 2) | 358 | #define PSC_SPIPCR_TC (1 << 2) |
380 | #define PSC_SPIPCR_MS (1 << 0) | 359 | #define PSC_SPIPCR_MS (1 << 0) |
381 | 360 | ||
382 | /* SPI Status register (read only). | 361 | /* SPI Status register (read only). */ |
383 | */ | ||
384 | #define PSC_SPISTAT_RF (1 << 13) | 362 | #define PSC_SPISTAT_RF (1 << 13) |
385 | #define PSC_SPISTAT_RE (1 << 12) | 363 | #define PSC_SPISTAT_RE (1 << 12) |
386 | #define PSC_SPISTAT_RR (1 << 11) | 364 | #define PSC_SPISTAT_RR (1 << 11) |
@@ -393,8 +371,7 @@ typedef struct psc_spi { | |||
393 | #define PSC_SPISTAT_DR (1 << 1) | 371 | #define PSC_SPISTAT_DR (1 << 1) |
394 | #define PSC_SPISTAT_SR (1 << 0) | 372 | #define PSC_SPISTAT_SR (1 << 0) |
395 | 373 | ||
396 | /* SPI Event Register. | 374 | /* SPI Event Register. */ |
397 | */ | ||
398 | #define PSC_SPIEVNT_MM (1 << 16) | 375 | #define PSC_SPIEVNT_MM (1 << 16) |
399 | #define PSC_SPIEVNT_RR (1 << 13) | 376 | #define PSC_SPIEVNT_RR (1 << 13) |
400 | #define PSC_SPIEVNT_RO (1 << 12) | 377 | #define PSC_SPIEVNT_RO (1 << 12) |
@@ -405,13 +382,11 @@ typedef struct psc_spi { | |||
405 | #define PSC_SPIEVNT_SD (1 << 5) | 382 | #define PSC_SPIEVNT_SD (1 << 5) |
406 | #define PSC_SPIEVNT_MD (1 << 4) | 383 | #define PSC_SPIEVNT_MD (1 << 4) |
407 | 384 | ||
408 | /* Transmit register control. | 385 | /* Transmit register control. */ |
409 | */ | ||
410 | #define PSC_SPITXRX_LC (1 << 29) | 386 | #define PSC_SPITXRX_LC (1 << 29) |
411 | #define PSC_SPITXRX_SR (1 << 28) | 387 | #define PSC_SPITXRX_SR (1 << 28) |
412 | 388 | ||
413 | /* PSC in SMBus (I2C) Mode. | 389 | /* PSC in SMBus (I2C) Mode. */ |
414 | */ | ||
415 | typedef struct psc_smb { | 390 | typedef struct psc_smb { |
416 | u32 psc_sel; | 391 | u32 psc_sel; |
417 | u32 psc_ctrl; | 392 | u32 psc_ctrl; |
@@ -424,8 +399,7 @@ typedef struct psc_smb { | |||
424 | u32 psc_smbtmr; | 399 | u32 psc_smbtmr; |
425 | } psc_smb_t; | 400 | } psc_smb_t; |
426 | 401 | ||
427 | /* SMBus Config Register. | 402 | /* SMBus Config Register. */ |
428 | */ | ||
429 | #define PSC_SMBCFG_RT_MASK (3 << 30) | 403 | #define PSC_SMBCFG_RT_MASK (3 << 30) |
430 | #define PSC_SMBCFG_RT_FIFO1 (0 << 30) | 404 | #define PSC_SMBCFG_RT_FIFO1 (0 << 30) |
431 | #define PSC_SMBCFG_RT_FIFO2 (1 << 30) | 405 | #define PSC_SMBCFG_RT_FIFO2 (1 << 30) |
@@ -452,8 +426,7 @@ typedef struct psc_smb { | |||
452 | 426 | ||
453 | #define PSC_SMBCFG_SET_SLV(x) (((x) & 0x7f) << 1) | 427 | #define PSC_SMBCFG_SET_SLV(x) (((x) & 0x7f) << 1) |
454 | 428 | ||
455 | /* SMBus Mask Register. | 429 | /* SMBus Mask Register. */ |
456 | */ | ||
457 | #define PSC_SMBMSK_DN (1 << 30) | 430 | #define PSC_SMBMSK_DN (1 << 30) |
458 | #define PSC_SMBMSK_AN (1 << 29) | 431 | #define PSC_SMBMSK_AN (1 << 29) |
459 | #define PSC_SMBMSK_AL (1 << 28) | 432 | #define PSC_SMBMSK_AL (1 << 28) |
@@ -471,13 +444,11 @@ typedef struct psc_smb { | |||
471 | PSC_SMBMSK_TU | PSC_SMBMSK_SD | \ | 444 | PSC_SMBMSK_TU | PSC_SMBMSK_SD | \ |
472 | PSC_SMBMSK_MD) | 445 | PSC_SMBMSK_MD) |
473 | 446 | ||
474 | /* SMBus Protocol Control Register. | 447 | /* SMBus Protocol Control Register. */ |
475 | */ | ||
476 | #define PSC_SMBPCR_DC (1 << 2) | 448 | #define PSC_SMBPCR_DC (1 << 2) |
477 | #define PSC_SMBPCR_MS (1 << 0) | 449 | #define PSC_SMBPCR_MS (1 << 0) |
478 | 450 | ||
479 | /* SMBus Status register (read only). | 451 | /* SMBus Status register (read only). */ |
480 | */ | ||
481 | #define PSC_SMBSTAT_BB (1 << 28) | 452 | #define PSC_SMBSTAT_BB (1 << 28) |
482 | #define PSC_SMBSTAT_RF (1 << 13) | 453 | #define PSC_SMBSTAT_RF (1 << 13) |
483 | #define PSC_SMBSTAT_RE (1 << 12) | 454 | #define PSC_SMBSTAT_RE (1 << 12) |
@@ -491,8 +462,7 @@ typedef struct psc_smb { | |||
491 | #define PSC_SMBSTAT_DR (1 << 1) | 462 | #define PSC_SMBSTAT_DR (1 << 1) |
492 | #define PSC_SMBSTAT_SR (1 << 0) | 463 | #define PSC_SMBSTAT_SR (1 << 0) |
493 | 464 | ||
494 | /* SMBus Event Register. | 465 | /* SMBus Event Register. */ |
495 | */ | ||
496 | #define PSC_SMBEVNT_DN (1 << 30) | 466 | #define PSC_SMBEVNT_DN (1 << 30) |
497 | #define PSC_SMBEVNT_AN (1 << 29) | 467 | #define PSC_SMBEVNT_AN (1 << 29) |
498 | #define PSC_SMBEVNT_AL (1 << 28) | 468 | #define PSC_SMBEVNT_AL (1 << 28) |
@@ -510,15 +480,13 @@ typedef struct psc_smb { | |||
510 | PSC_SMBEVNT_TU | PSC_SMBEVNT_SD | \ | 480 | PSC_SMBEVNT_TU | PSC_SMBEVNT_SD | \ |
511 | PSC_SMBEVNT_MD) | 481 | PSC_SMBEVNT_MD) |
512 | 482 | ||
513 | /* Transmit register control. | 483 | /* Transmit register control. */ |
514 | */ | ||
515 | #define PSC_SMBTXRX_RSR (1 << 28) | 484 | #define PSC_SMBTXRX_RSR (1 << 28) |
516 | #define PSC_SMBTXRX_STP (1 << 29) | 485 | #define PSC_SMBTXRX_STP (1 << 29) |
517 | #define PSC_SMBTXRX_DATAMASK (0xff) | 486 | #define PSC_SMBTXRX_DATAMASK 0xff |
518 | 487 | ||
519 | /* SMBus protocol timers register. | 488 | /* SMBus protocol timers register. */ |
520 | */ | 489 | #define PSC_SMBTMR_SET_TH(x) (((x) & 0x03) << 30) |
521 | #define PSC_SMBTMR_SET_TH(x) (((x) & 0x3) << 30) | ||
522 | #define PSC_SMBTMR_SET_PS(x) (((x) & 0x1f) << 25) | 490 | #define PSC_SMBTMR_SET_PS(x) (((x) & 0x1f) << 25) |
523 | #define PSC_SMBTMR_SET_PU(x) (((x) & 0x1f) << 20) | 491 | #define PSC_SMBTMR_SET_PU(x) (((x) & 0x1f) << 20) |
524 | #define PSC_SMBTMR_SET_SH(x) (((x) & 0x1f) << 15) | 492 | #define PSC_SMBTMR_SET_SH(x) (((x) & 0x1f) << 15) |
@@ -526,5 +494,4 @@ typedef struct psc_smb { | |||
526 | #define PSC_SMBTMR_SET_CL(x) (((x) & 0x1f) << 5) | 494 | #define PSC_SMBTMR_SET_CL(x) (((x) & 0x1f) << 5) |
527 | #define PSC_SMBTMR_SET_CH(x) (((x) & 0x1f) << 0) | 495 | #define PSC_SMBTMR_SET_CH(x) (((x) & 0x1f) << 0) |
528 | 496 | ||
529 | |||
530 | #endif /* _AU1000_PSC_H_ */ | 497 | #endif /* _AU1000_PSC_H_ */ |
diff --git a/include/asm-mips/mach-db1x00/db1200.h b/include/asm-mips/mach-db1x00/db1200.h index eedd048a7261..27f26102b1bb 100644 --- a/include/asm-mips/mach-db1x00/db1200.h +++ b/include/asm-mips/mach-db1x00/db1200.h | |||
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | * AMD Alchemy DB1200 Referrence Board | 2 | * AMD Alchemy DBAu1200 Reference Board |
3 | * Board Registers defines. | 3 | * Board register defines. |
4 | * | 4 | * |
5 | * ######################################################################## | 5 | * ######################################################################## |
6 | * | 6 | * |
@@ -27,26 +27,25 @@ | |||
27 | #include <linux/types.h> | 27 | #include <linux/types.h> |
28 | #include <asm/mach-au1x00/au1xxx_psc.h> | 28 | #include <asm/mach-au1x00/au1xxx_psc.h> |
29 | 29 | ||
30 | // This is defined in au1000.h with bogus value | 30 | #define DBDMA_AC97_TX_CHAN DSCR_CMD0_PSC1_TX |
31 | #undef AU1X00_EXTERNAL_INT | 31 | #define DBDMA_AC97_RX_CHAN DSCR_CMD0_PSC1_RX |
32 | #define DBDMA_I2S_TX_CHAN DSCR_CMD0_PSC1_TX | ||
33 | #define DBDMA_I2S_RX_CHAN DSCR_CMD0_PSC1_RX | ||
32 | 34 | ||
33 | #define DBDMA_AC97_TX_CHAN DSCR_CMD0_PSC1_TX | 35 | /* |
34 | #define DBDMA_AC97_RX_CHAN DSCR_CMD0_PSC1_RX | 36 | * SPI and SMB are muxed on the DBAu1200 board. |
35 | #define DBDMA_I2S_TX_CHAN DSCR_CMD0_PSC1_TX | 37 | * Refer to board documentation. |
36 | #define DBDMA_I2S_RX_CHAN DSCR_CMD0_PSC1_RX | ||
37 | |||
38 | /* SPI and SMB are muxed on the Pb1200 board. | ||
39 | Refer to board documentation. | ||
40 | */ | 38 | */ |
41 | #define SPI_PSC_BASE PSC0_BASE_ADDR | 39 | #define SPI_PSC_BASE PSC0_BASE_ADDR |
42 | #define SMBUS_PSC_BASE PSC0_BASE_ADDR | 40 | #define SMBUS_PSC_BASE PSC0_BASE_ADDR |
43 | /* AC97 and I2S are muxed on the Pb1200 board. | 41 | /* |
44 | Refer to board documentation. | 42 | * AC'97 and I2S are muxed on the DBAu1200 board. |
43 | * Refer to board documentation. | ||
45 | */ | 44 | */ |
46 | #define AC97_PSC_BASE PSC1_BASE_ADDR | 45 | #define AC97_PSC_BASE PSC1_BASE_ADDR |
47 | #define I2S_PSC_BASE PSC1_BASE_ADDR | 46 | #define I2S_PSC_BASE PSC1_BASE_ADDR |
48 | 47 | ||
49 | #define BCSR_KSEG1_ADDR 0xB9800000 | 48 | #define BCSR_KSEG1_ADDR 0xB9800000 |
50 | 49 | ||
51 | typedef volatile struct | 50 | typedef volatile struct |
52 | { | 51 | { |
@@ -102,9 +101,9 @@ static BCSR * const bcsr = (BCSR *)BCSR_KSEG1_ADDR; | |||
102 | #define BCSR_STATUS_SWAPBOOT 0x0040 | 101 | #define BCSR_STATUS_SWAPBOOT 0x0040 |
103 | #define BCSR_STATUS_FLASHBUSY 0x0100 | 102 | #define BCSR_STATUS_FLASHBUSY 0x0100 |
104 | #define BCSR_STATUS_IDECBLID 0x0200 | 103 | #define BCSR_STATUS_IDECBLID 0x0200 |
105 | #define BCSR_STATUS_SD0WP 0x0400 | 104 | #define BCSR_STATUS_SD0WP 0x0400 |
106 | #define BCSR_STATUS_U0RXD 0x1000 | 105 | #define BCSR_STATUS_U0RXD 0x1000 |
107 | #define BCSR_STATUS_U1RXD 0x2000 | 106 | #define BCSR_STATUS_U1RXD 0x2000 |
108 | 107 | ||
109 | #define BCSR_SWITCHES_OCTAL 0x00FF | 108 | #define BCSR_SWITCHES_OCTAL 0x00FF |
110 | #define BCSR_SWITCHES_DIP_1 0x0080 | 109 | #define BCSR_SWITCHES_DIP_1 0x0080 |
@@ -122,8 +121,8 @@ static BCSR * const bcsr = (BCSR *)BCSR_KSEG1_ADDR; | |||
122 | #define BCSR_RESETS_DC 0x0004 | 121 | #define BCSR_RESETS_DC 0x0004 |
123 | #define BCSR_RESETS_IDE 0x0008 | 122 | #define BCSR_RESETS_IDE 0x0008 |
124 | #define BCSR_RESETS_TV 0x0010 | 123 | #define BCSR_RESETS_TV 0x0010 |
125 | /* not resets but in the same register */ | 124 | /* Not resets but in the same register */ |
126 | #define BCSR_RESETS_PWMR1mUX 0x0800 | 125 | #define BCSR_RESETS_PWMR1MUX 0x0800 |
127 | #define BCSR_RESETS_PCS0MUX 0x1000 | 126 | #define BCSR_RESETS_PCS0MUX 0x1000 |
128 | #define BCSR_RESETS_PCS1MUX 0x2000 | 127 | #define BCSR_RESETS_PCS1MUX 0x2000 |
129 | #define BCSR_RESETS_SPISEL 0x4000 | 128 | #define BCSR_RESETS_SPISEL 0x4000 |
@@ -160,7 +159,7 @@ static BCSR * const bcsr = (BCSR *)BCSR_KSEG1_ADDR; | |||
160 | #define BCSR_INT_PC0STSCHG 0x0008 | 159 | #define BCSR_INT_PC0STSCHG 0x0008 |
161 | #define BCSR_INT_PC1 0x0010 | 160 | #define BCSR_INT_PC1 0x0010 |
162 | #define BCSR_INT_PC1STSCHG 0x0020 | 161 | #define BCSR_INT_PC1STSCHG 0x0020 |
163 | #define BCSR_INT_DC 0x0040 | 162 | #define BCSR_INT_DC 0x0040 |
164 | #define BCSR_INT_FLASHBUSY 0x0080 | 163 | #define BCSR_INT_FLASHBUSY 0x0080 |
165 | #define BCSR_INT_PC0INSERT 0x0100 | 164 | #define BCSR_INT_PC0INSERT 0x0100 |
166 | #define BCSR_INT_PC0EJECT 0x0200 | 165 | #define BCSR_INT_PC0EJECT 0x0200 |
@@ -179,10 +178,10 @@ static BCSR * const bcsr = (BCSR *)BCSR_KSEG1_ADDR; | |||
179 | #define IDE_DDMA_REQ DSCR_CMD0_DMA_REQ1 | 178 | #define IDE_DDMA_REQ DSCR_CMD0_DMA_REQ1 |
180 | #define IDE_RQSIZE 128 | 179 | #define IDE_RQSIZE 128 |
181 | 180 | ||
182 | #define NAND_PHYS_ADDR 0x20000000 | 181 | #define NAND_PHYS_ADDR 0x20000000 |
183 | 182 | ||
184 | /* | 183 | /* |
185 | * External Interrupts for Pb1200 as of 8/6/2004. | 184 | * External Interrupts for DBAu1200 as of 8/6/2004. |
186 | * Bit positions in the CPLD registers can be calculated by taking | 185 | * Bit positions in the CPLD registers can be calculated by taking |
187 | * the interrupt define and subtracting the DB1200_INT_BEGIN value. | 186 | * the interrupt define and subtracting the DB1200_INT_BEGIN value. |
188 | * | 187 | * |
@@ -211,23 +210,21 @@ enum external_pb1200_ints { | |||
211 | }; | 210 | }; |
212 | 211 | ||
213 | 212 | ||
214 | /* For drivers/pcmcia/au1000_db1x00.c */ | 213 | /* |
215 | 214 | * DBAu1200 specific PCMCIA defines for drivers/pcmcia/au1000_db1x00.c | |
216 | /* PCMCIA Db1x00 specific defines */ | 215 | */ |
217 | 216 | #define PCMCIA_MAX_SOCK 1 | |
218 | #define PCMCIA_MAX_SOCK 1 | 217 | #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK + 1) |
219 | #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK+1) | ||
220 | 218 | ||
221 | /* VPP/VCC */ | 219 | /* VPP/VCC */ |
222 | #define SET_VCC_VPP(VCC, VPP, SLOT)\ | 220 | #define SET_VCC_VPP(VCC, VPP, SLOT) \ |
223 | ((((VCC)<<2) | ((VPP)<<0)) << ((SLOT)*8)) | 221 | ((((VCC) << 2) | ((VPP) << 0)) << ((SLOT) * 8)) |
224 | 222 | ||
225 | #define BOARD_PC0_INT DB1200_PC0_INT | 223 | #define BOARD_PC0_INT DB1200_PC0_INT |
226 | #define BOARD_PC1_INT DB1200_PC1_INT | 224 | #define BOARD_PC1_INT DB1200_PC1_INT |
227 | #define BOARD_CARD_INSERTED(SOCKET) bcsr->sig_status & (1<<(8+(2*SOCKET))) | 225 | #define BOARD_CARD_INSERTED(SOCKET) bcsr->sig_status & (1 << (8 + (2 * SOCKET))) |
228 | 226 | ||
229 | /* Nand chip select */ | 227 | /* NAND chip select */ |
230 | #define NAND_CS 1 | 228 | #define NAND_CS 1 |
231 | 229 | ||
232 | #endif /* __ASM_DB1200_H */ | 230 | #endif /* __ASM_DB1200_H */ |
233 | |||
diff --git a/include/asm-mips/mach-db1x00/db1x00.h b/include/asm-mips/mach-db1x00/db1x00.h index e7a88ba35833..612ae90dbcb8 100644 --- a/include/asm-mips/mach-db1x00/db1x00.h +++ b/include/asm-mips/mach-db1x00/db1x00.h | |||
@@ -1,9 +1,8 @@ | |||
1 | /* | 1 | /* |
2 | * AMD Alchemy DB1x00 Reference Boards | 2 | * AMD Alchemy DBAu1x00 Reference Boards |
3 | * | 3 | * |
4 | * Copyright 2001 MontaVista Software Inc. | 4 | * Copyright 2001, 2008 MontaVista Software Inc. |
5 | * Author: MontaVista Software, Inc. | 5 | * Author: MontaVista Software, Inc. <source@mvista.com> |
6 | * ppopov@mvista.com or source@mvista.com | ||
7 | * Copyright (C) 2005 Ralf Baechle (ralf@linux-mips.org) | 6 | * Copyright (C) 2005 Ralf Baechle (ralf@linux-mips.org) |
8 | * | 7 | * |
9 | * ######################################################################## | 8 | * ######################################################################## |
@@ -32,26 +31,26 @@ | |||
32 | 31 | ||
33 | #ifdef CONFIG_MIPS_DB1550 | 32 | #ifdef CONFIG_MIPS_DB1550 |
34 | 33 | ||
35 | #define DBDMA_AC97_TX_CHAN DSCR_CMD0_PSC1_TX | 34 | #define DBDMA_AC97_TX_CHAN DSCR_CMD0_PSC1_TX |
36 | #define DBDMA_AC97_RX_CHAN DSCR_CMD0_PSC1_RX | 35 | #define DBDMA_AC97_RX_CHAN DSCR_CMD0_PSC1_RX |
37 | #define DBDMA_I2S_TX_CHAN DSCR_CMD0_PSC3_TX | 36 | #define DBDMA_I2S_TX_CHAN DSCR_CMD0_PSC3_TX |
38 | #define DBDMA_I2S_RX_CHAN DSCR_CMD0_PSC3_RX | 37 | #define DBDMA_I2S_RX_CHAN DSCR_CMD0_PSC3_RX |
39 | 38 | ||
40 | #define SPI_PSC_BASE PSC0_BASE_ADDR | 39 | #define SPI_PSC_BASE PSC0_BASE_ADDR |
41 | #define AC97_PSC_BASE PSC1_BASE_ADDR | 40 | #define AC97_PSC_BASE PSC1_BASE_ADDR |
42 | #define SMBUS_PSC_BASE PSC2_BASE_ADDR | 41 | #define SMBUS_PSC_BASE PSC2_BASE_ADDR |
43 | #define I2S_PSC_BASE PSC3_BASE_ADDR | 42 | #define I2S_PSC_BASE PSC3_BASE_ADDR |
44 | 43 | ||
45 | #define BCSR_KSEG1_ADDR 0xAF000000 | 44 | #define BCSR_KSEG1_ADDR 0xAF000000 |
46 | #define NAND_PHYS_ADDR 0x20000000 | 45 | #define NAND_PHYS_ADDR 0x20000000 |
47 | 46 | ||
48 | #else | 47 | #else |
49 | #define BCSR_KSEG1_ADDR 0xAE000000 | 48 | #define BCSR_KSEG1_ADDR 0xAE000000 |
50 | #endif | 49 | #endif |
51 | 50 | ||
52 | /* | 51 | /* |
53 | * Overlay data structure of the Db1x00 board registers. | 52 | * Overlay data structure of the DBAu1x00 board registers. |
54 | * Registers located at physical 0E0000xx, KSEG1 0xAE0000xx | 53 | * Registers are located at physical 0E0000xx, KSEG1 0xAE0000xx. |
55 | */ | 54 | */ |
56 | typedef volatile struct | 55 | typedef volatile struct |
57 | { | 56 | { |
@@ -138,18 +137,19 @@ typedef volatile struct | |||
138 | 137 | ||
139 | #define BCSR_SWRESET_RESET 0x0080 | 138 | #define BCSR_SWRESET_RESET 0x0080 |
140 | 139 | ||
141 | /* PCMCIA Db1x00 specific defines */ | 140 | /* PCMCIA DBAu1x00 specific defines */ |
142 | #define PCMCIA_MAX_SOCK 1 | 141 | #define PCMCIA_MAX_SOCK 1 |
143 | #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK+1) | 142 | #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK + 1) |
144 | 143 | ||
145 | /* VPP/VCC */ | 144 | /* VPP/VCC */ |
146 | #define SET_VCC_VPP(VCC, VPP, SLOT)\ | 145 | #define SET_VCC_VPP(VCC, VPP, SLOT)\ |
147 | ((((VCC)<<2) | ((VPP)<<0)) << ((SLOT)*8)) | 146 | ((((VCC) << 2) | ((VPP) << 0)) << ((SLOT) * 8)) |
148 | 147 | ||
149 | /* SD controller macros */ | ||
150 | /* | 148 | /* |
151 | * Detect card. | 149 | * SD controller macros |
152 | */ | 150 | */ |
151 | |||
152 | /* Detect card. */ | ||
153 | #define mmc_card_inserted(_n_, _res_) \ | 153 | #define mmc_card_inserted(_n_, _res_) \ |
154 | do { \ | 154 | do { \ |
155 | BCSR * const bcsr = (BCSR *)0xAE000000; \ | 155 | BCSR * const bcsr = (BCSR *)0xAE000000; \ |
@@ -176,10 +176,10 @@ typedef volatile struct | |||
176 | unsigned long mmc_pwr, mmc_wp, board_specific; \ | 176 | unsigned long mmc_pwr, mmc_wp, board_specific; \ |
177 | if ((_n_)) { \ | 177 | if ((_n_)) { \ |
178 | mmc_pwr = BCSR_BOARD_SD1_PWR; \ | 178 | mmc_pwr = BCSR_BOARD_SD1_PWR; \ |
179 | mmc_wp = BCSR_BOARD_SD1_WP; \ | 179 | mmc_wp = BCSR_BOARD_SD1_WP; \ |
180 | } else { \ | 180 | } else { \ |
181 | mmc_pwr = BCSR_BOARD_SD0_PWR; \ | 181 | mmc_pwr = BCSR_BOARD_SD0_PWR; \ |
182 | mmc_wp = BCSR_BOARD_SD0_WP; \ | 182 | mmc_wp = BCSR_BOARD_SD0_WP; \ |
183 | } \ | 183 | } \ |
184 | board_specific = au_readl((unsigned long)(&bcsr->specific)); \ | 184 | board_specific = au_readl((unsigned long)(&bcsr->specific)); \ |
185 | if (!(board_specific & mmc_wp)) {/* low means card present */ \ | 185 | if (!(board_specific & mmc_wp)) {/* low means card present */ \ |
@@ -190,17 +190,19 @@ typedef volatile struct | |||
190 | } while (0) | 190 | } while (0) |
191 | 191 | ||
192 | 192 | ||
193 | /* NAND defines */ | 193 | /* |
194 | /* Timing values as described in databook, * ns value stripped of | 194 | * NAND defines |
195 | * | ||
196 | * Timing values as described in databook, * ns value stripped of the | ||
195 | * lower 2 bits. | 197 | * lower 2 bits. |
196 | * These defines are here rather than an SOC1550 generic file because | 198 | * These defines are here rather than an Au1550 generic file because |
197 | * the parts chosen on another board may be different and may require | 199 | * the parts chosen on another board may be different and may require |
198 | * different timings. | 200 | * different timings. |
199 | */ | 201 | */ |
200 | #define NAND_T_H (18 >> 2) | 202 | #define NAND_T_H (18 >> 2) |
201 | #define NAND_T_PUL (30 >> 2) | 203 | #define NAND_T_PUL (30 >> 2) |
202 | #define NAND_T_SU (30 >> 2) | 204 | #define NAND_T_SU (30 >> 2) |
203 | #define NAND_T_WH (30 >> 2) | 205 | #define NAND_T_WH (30 >> 2) |
204 | 206 | ||
205 | /* Bitfield shift amounts */ | 207 | /* Bitfield shift amounts */ |
206 | #define NAND_T_H_SHIFT 0 | 208 | #define NAND_T_H_SHIFT 0 |
@@ -208,16 +210,15 @@ typedef volatile struct | |||
208 | #define NAND_T_SU_SHIFT 8 | 210 | #define NAND_T_SU_SHIFT 8 |
209 | #define NAND_T_WH_SHIFT 12 | 211 | #define NAND_T_WH_SHIFT 12 |
210 | 212 | ||
211 | #define NAND_TIMING ((NAND_T_H & 0xF) << NAND_T_H_SHIFT) | \ | 213 | #define NAND_TIMING (((NAND_T_H & 0xF) << NAND_T_H_SHIFT) | \ |
212 | ((NAND_T_PUL & 0xF) << NAND_T_PUL_SHIFT) | \ | 214 | ((NAND_T_PUL & 0xF) << NAND_T_PUL_SHIFT) | \ |
213 | ((NAND_T_SU & 0xF) << NAND_T_SU_SHIFT) | \ | 215 | ((NAND_T_SU & 0xF) << NAND_T_SU_SHIFT) | \ |
214 | ((NAND_T_WH & 0xF) << NAND_T_WH_SHIFT) | 216 | ((NAND_T_WH & 0xF) << NAND_T_WH_SHIFT)) |
215 | #define NAND_CS 1 | 217 | #define NAND_CS 1 |
216 | 218 | ||
217 | /* should be done by yamon */ | 219 | /* Should be done by YAMON */ |
218 | #define NAND_STCFG 0x00400005 /* 8-bit NAND */ | 220 | #define NAND_STCFG 0x00400005 /* 8-bit NAND */ |
219 | #define NAND_STTIME 0x00007774 /* valid for 396MHz SD=2 only */ | 221 | #define NAND_STTIME 0x00007774 /* valid for 396 MHz SD=2 only */ |
220 | #define NAND_STADDR 0x12000FFF /* physical address 0x20000000 */ | 222 | #define NAND_STADDR 0x12000FFF /* physical address 0x20000000 */ |
221 | 223 | ||
222 | #endif /* __ASM_DB1X00_H */ | 224 | #endif /* __ASM_DB1X00_H */ |
223 | |||
diff --git a/include/asm-mips/mach-pb1x00/pb1000.h b/include/asm-mips/mach-pb1x00/pb1000.h index b52e0e7ee3fb..6d1ff9060e44 100644 --- a/include/asm-mips/mach-pb1x00/pb1000.h +++ b/include/asm-mips/mach-pb1x00/pb1000.h | |||
@@ -1,9 +1,8 @@ | |||
1 | /* | 1 | /* |
2 | * Alchemy Semi PB1000 Referrence Board | 2 | * Alchemy Semi Pb1000 Referrence Board |
3 | * | 3 | * |
4 | * Copyright 2001 MontaVista Software Inc. | 4 | * Copyright 2001, 2008 MontaVista Software Inc. |
5 | * Author: MontaVista Software, Inc. | 5 | * Author: MontaVista Software, Inc. <source@mvista.com> |
6 | * ppopov@mvista.com or source@mvista.com | ||
7 | * | 6 | * |
8 | * ######################################################################## | 7 | * ######################################################################## |
9 | * | 8 | * |
@@ -28,145 +27,61 @@ | |||
28 | #define __ASM_PB1000_H | 27 | #define __ASM_PB1000_H |
29 | 28 | ||
30 | /* PCMCIA PB1000 specific defines */ | 29 | /* PCMCIA PB1000 specific defines */ |
31 | #define PCMCIA_MAX_SOCK 1 | 30 | #define PCMCIA_MAX_SOCK 1 |
32 | #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK+1) | 31 | #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK + 1) |
33 | 32 | ||
34 | #define PB1000_PCR 0xBE000000 | 33 | #define PB1000_PCR 0xBE000000 |
35 | # define PCR_SLOT_0_VPP0 (1<<0) | 34 | # define PCR_SLOT_0_VPP0 (1 << 0) |
36 | # define PCR_SLOT_0_VPP1 (1<<1) | 35 | # define PCR_SLOT_0_VPP1 (1 << 1) |
37 | # define PCR_SLOT_0_VCC0 (1<<2) | 36 | # define PCR_SLOT_0_VCC0 (1 << 2) |
38 | # define PCR_SLOT_0_VCC1 (1<<3) | 37 | # define PCR_SLOT_0_VCC1 (1 << 3) |
39 | # define PCR_SLOT_0_RST (1<<4) | 38 | # define PCR_SLOT_0_RST (1 << 4) |
40 | 39 | # define PCR_SLOT_1_VPP0 (1 << 8) | |
41 | # define PCR_SLOT_1_VPP0 (1<<8) | 40 | # define PCR_SLOT_1_VPP1 (1 << 9) |
42 | # define PCR_SLOT_1_VPP1 (1<<9) | 41 | # define PCR_SLOT_1_VCC0 (1 << 10) |
43 | # define PCR_SLOT_1_VCC0 (1<<10) | 42 | # define PCR_SLOT_1_VCC1 (1 << 11) |
44 | # define PCR_SLOT_1_VCC1 (1<<11) | 43 | # define PCR_SLOT_1_RST (1 << 12) |
45 | # define PCR_SLOT_1_RST (1<<12) | 44 | |
46 | 45 | #define PB1000_MDR 0xBE000004 | |
47 | #define PB1000_MDR 0xBE000004 | 46 | # define MDR_PI (1 << 5) /* PCMCIA int latch */ |
48 | # define MDR_PI (1<<5) /* pcmcia int latch */ | 47 | # define MDR_EPI (1 << 14) /* enable PCMCIA int */ |
49 | # define MDR_EPI (1<<14) /* enable pcmcia int */ | 48 | # define MDR_CPI (1 << 15) /* clear PCMCIA int */ |
50 | # define MDR_CPI (1<<15) /* clear pcmcia int */ | 49 | |
51 | 50 | #define PB1000_ACR1 0xBE000008 | |
52 | #define PB1000_ACR1 0xBE000008 | 51 | # define ACR1_SLOT_0_CD1 (1 << 0) /* card detect 1 */ |
53 | # define ACR1_SLOT_0_CD1 (1<<0) /* card detect 1 */ | 52 | # define ACR1_SLOT_0_CD2 (1 << 1) /* card detect 2 */ |
54 | # define ACR1_SLOT_0_CD2 (1<<1) /* card detect 2 */ | 53 | # define ACR1_SLOT_0_READY (1 << 2) /* ready */ |
55 | # define ACR1_SLOT_0_READY (1<<2) /* ready */ | 54 | # define ACR1_SLOT_0_STATUS (1 << 3) /* status change */ |
56 | # define ACR1_SLOT_0_STATUS (1<<3) /* status change */ | 55 | # define ACR1_SLOT_0_VS1 (1 << 4) /* voltage sense 1 */ |
57 | # define ACR1_SLOT_0_VS1 (1<<4) /* voltage sense 1 */ | 56 | # define ACR1_SLOT_0_VS2 (1 << 5) /* voltage sense 2 */ |
58 | # define ACR1_SLOT_0_VS2 (1<<5) /* voltage sense 2 */ | 57 | # define ACR1_SLOT_0_INPACK (1 << 6) /* inpack pin status */ |
59 | # define ACR1_SLOT_0_INPACK (1<<6) /* inpack pin status */ | 58 | # define ACR1_SLOT_1_CD1 (1 << 8) /* card detect 1 */ |
60 | # define ACR1_SLOT_1_CD1 (1<<8) /* card detect 1 */ | 59 | # define ACR1_SLOT_1_CD2 (1 << 9) /* card detect 2 */ |
61 | # define ACR1_SLOT_1_CD2 (1<<9) /* card detect 2 */ | 60 | # define ACR1_SLOT_1_READY (1 << 10) /* ready */ |
62 | # define ACR1_SLOT_1_READY (1<<10) /* ready */ | 61 | # define ACR1_SLOT_1_STATUS (1 << 11) /* status change */ |
63 | # define ACR1_SLOT_1_STATUS (1<<11) /* status change */ | 62 | # define ACR1_SLOT_1_VS1 (1 << 12) /* voltage sense 1 */ |
64 | # define ACR1_SLOT_1_VS1 (1<<12) /* voltage sense 1 */ | 63 | # define ACR1_SLOT_1_VS2 (1 << 13) /* voltage sense 2 */ |
65 | # define ACR1_SLOT_1_VS2 (1<<13) /* voltage sense 2 */ | 64 | # define ACR1_SLOT_1_INPACK (1 << 14) /* inpack pin status */ |
66 | # define ACR1_SLOT_1_INPACK (1<<14) /* inpack pin status */ | 65 | |
67 | 66 | #define CPLD_AUX0 0xBE00000C | |
68 | #define CPLD_AUX0 0xBE00000C | 67 | #define CPLD_AUX1 0xBE000010 |
69 | #define CPLD_AUX1 0xBE000010 | 68 | #define CPLD_AUX2 0xBE000014 |
70 | #define CPLD_AUX2 0xBE000014 | ||
71 | 69 | ||
72 | /* Voltage levels */ | 70 | /* Voltage levels */ |
73 | 71 | ||
74 | /* VPPEN1 - VPPEN0 */ | 72 | /* VPPEN1 - VPPEN0 */ |
75 | #define VPP_GND ((0<<1) | (0<<0)) | 73 | #define VPP_GND ((0 << 1) | (0 << 0)) |
76 | #define VPP_5V ((1<<1) | (0<<0)) | 74 | #define VPP_5V ((1 << 1) | (0 << 0)) |
77 | #define VPP_3V ((0<<1) | (1<<0)) | 75 | #define VPP_3V ((0 << 1) | (1 << 0)) |
78 | #define VPP_12V ((0<<1) | (1<<0)) | 76 | #define VPP_12V ((0 << 1) | (1 << 0)) |
79 | #define VPP_HIZ ((1<<1) | (1<<0)) | 77 | #define VPP_HIZ ((1 << 1) | (1 << 0)) |
80 | 78 | ||
81 | /* VCCEN1 - VCCEN0 */ | 79 | /* VCCEN1 - VCCEN0 */ |
82 | #define VCC_3V ((0<<1) | (1<<0)) | 80 | #define VCC_3V ((0 << 1) | (1 << 0)) |
83 | #define VCC_5V ((1<<1) | (0<<0)) | 81 | #define VCC_5V ((1 << 1) | (0 << 0)) |
84 | #define VCC_HIZ ((0<<1) | (0<<0)) | 82 | #define VCC_HIZ ((0 << 1) | (0 << 0)) |
85 | 83 | ||
86 | /* VPP/VCC */ | 84 | /* VPP/VCC */ |
87 | #define SET_VCC_VPP(VCC, VPP, SLOT)\ | 85 | #define SET_VCC_VPP(VCC, VPP, SLOT) \ |
88 | ((((VCC)<<2) | ((VPP)<<0)) << ((SLOT)*8)) | 86 | ((((VCC) << 2) | ((VPP) << 0)) << ((SLOT) * 8)) |
89 | |||
90 | |||
91 | /* PCI PB1000 specific defines */ | ||
92 | /* The reason these defines are here instead of au1000.h is because | ||
93 | * the Au1000 does not have a PCI bus controller so the PCI implementation | ||
94 | * on the some of the older Pb1000 boards was very board specific. | ||
95 | */ | ||
96 | #define PCI_CONFIG_BASE 0xBA020000 /* the only external slot */ | ||
97 | |||
98 | #define SDRAM_DEVID 0xBA010000 | ||
99 | #define SDRAM_CMD 0xBA010004 | ||
100 | #define SDRAM_CLASS 0xBA010008 | ||
101 | #define SDRAM_MISC 0xBA01000C | ||
102 | #define SDRAM_MBAR 0xBA010010 | ||
103 | |||
104 | #define PCI_IO_DATA_PORT 0xBA800000 | ||
105 | |||
106 | #define PCI_IO_ADDR 0xBE00001C | ||
107 | #define PCI_INT_ACK 0xBBC00000 | ||
108 | #define PCI_IO_READ 0xBBC00020 | ||
109 | #define PCI_IO_WRITE 0xBBC00030 | ||
110 | |||
111 | #define PCI_BRIDGE_CONFIG 0xBE000018 | ||
112 | |||
113 | #define PCI_IO_START 0x10000000 | ||
114 | #define PCI_IO_END 0x1000ffff | ||
115 | #define PCI_MEM_START 0x18000000 | ||
116 | #define PCI_MEM_END 0x18ffffff | ||
117 | |||
118 | #define PCI_FIRST_DEVFN 0 | ||
119 | #define PCI_LAST_DEVFN 1 | ||
120 | |||
121 | static inline u8 au_pci_io_readb(u32 addr) | ||
122 | { | ||
123 | writel(addr, PCI_IO_ADDR); | ||
124 | writel((readl(PCI_BRIDGE_CONFIG) & 0xffffcfff) | (1<<12), PCI_BRIDGE_CONFIG); | ||
125 | return (readl(PCI_IO_DATA_PORT) & 0xff); | ||
126 | } | ||
127 | |||
128 | static inline u16 au_pci_io_readw(u32 addr) | ||
129 | { | ||
130 | writel(addr, PCI_IO_ADDR); | ||
131 | writel((readl(PCI_BRIDGE_CONFIG) & 0xffffcfff) | (1<<13), PCI_BRIDGE_CONFIG); | ||
132 | return (readl(PCI_IO_DATA_PORT) & 0xffff); | ||
133 | } | ||
134 | |||
135 | static inline u32 au_pci_io_readl(u32 addr) | ||
136 | { | ||
137 | writel(addr, PCI_IO_ADDR); | ||
138 | writel((readl(PCI_BRIDGE_CONFIG) & 0xffffcfff), PCI_BRIDGE_CONFIG); | ||
139 | return readl(PCI_IO_DATA_PORT); | ||
140 | } | ||
141 | |||
142 | static inline void au_pci_io_writeb(u8 val, u32 addr) | ||
143 | { | ||
144 | writel(addr, PCI_IO_ADDR); | ||
145 | writel((readl(PCI_BRIDGE_CONFIG) & 0xffffcfff) | (1<<12), PCI_BRIDGE_CONFIG); | ||
146 | writel(val, PCI_IO_DATA_PORT); | ||
147 | } | ||
148 | |||
149 | static inline void au_pci_io_writew(u16 val, u32 addr) | ||
150 | { | ||
151 | writel(addr, PCI_IO_ADDR); | ||
152 | writel((readl(PCI_BRIDGE_CONFIG) & 0xffffcfff) | (1<<13), PCI_BRIDGE_CONFIG); | ||
153 | writel(val, PCI_IO_DATA_PORT); | ||
154 | } | ||
155 | |||
156 | static inline void au_pci_io_writel(u32 val, u32 addr) | ||
157 | { | ||
158 | writel(addr, PCI_IO_ADDR); | ||
159 | writel(readl(PCI_BRIDGE_CONFIG) & 0xffffcfff, PCI_BRIDGE_CONFIG); | ||
160 | writel(val, PCI_IO_DATA_PORT); | ||
161 | } | ||
162 | |||
163 | static inline void set_sdram_extbyte(void) | ||
164 | { | ||
165 | writel(readl(PCI_BRIDGE_CONFIG) & 0xffffff00, PCI_BRIDGE_CONFIG); | ||
166 | } | ||
167 | |||
168 | static inline void set_slot_extbyte(void) | ||
169 | { | ||
170 | writel((readl(PCI_BRIDGE_CONFIG) & 0xffffbf00) | 0x18, PCI_BRIDGE_CONFIG); | ||
171 | } | ||
172 | #endif /* __ASM_PB1000_H */ | 87 | #endif /* __ASM_PB1000_H */ |
diff --git a/include/asm-mips/mach-pb1x00/pb1100.h b/include/asm-mips/mach-pb1x00/pb1100.h index 63aa3926b297..b1a60f1cbd02 100644 --- a/include/asm-mips/mach-pb1x00/pb1100.h +++ b/include/asm-mips/mach-pb1x00/pb1100.h | |||
@@ -1,9 +1,8 @@ | |||
1 | /* | 1 | /* |
2 | * Alchemy Semi PB1100 Referrence Board | 2 | * Alchemy Semi Pb1100 Referrence Board |
3 | * | 3 | * |
4 | * Copyright 2001 MontaVista Software Inc. | 4 | * Copyright 2001, 2008 MontaVista Software Inc. |
5 | * Author: MontaVista Software, Inc. | 5 | * Author: MontaVista Software, Inc. <source@mvista.com> |
6 | * ppopov@mvista.com or source@mvista.com | ||
7 | * | 6 | * |
8 | * ######################################################################## | 7 | * ######################################################################## |
9 | * | 8 | * |
@@ -27,59 +26,60 @@ | |||
27 | #ifndef __ASM_PB1100_H | 26 | #ifndef __ASM_PB1100_H |
28 | #define __ASM_PB1100_H | 27 | #define __ASM_PB1100_H |
29 | 28 | ||
30 | #define PB1100_IDENT 0xAE000000 | 29 | #define PB1100_IDENT 0xAE000000 |
31 | #define BOARD_STATUS_REG 0xAE000004 | 30 | #define BOARD_STATUS_REG 0xAE000004 |
32 | # define PB1100_ROM_SEL (1<<15) | 31 | # define PB1100_ROM_SEL (1 << 15) |
33 | # define PB1100_ROM_SIZ (1<<14) | 32 | # define PB1100_ROM_SIZ (1 << 14) |
34 | # define PB1100_SWAP_BOOT (1<<13) | 33 | # define PB1100_SWAP_BOOT (1 << 13) |
35 | # define PB1100_FLASH_WP (1<<12) | 34 | # define PB1100_FLASH_WP (1 << 12) |
36 | # define PB1100_ROM_H_STS (1<<11) | 35 | # define PB1100_ROM_H_STS (1 << 11) |
37 | # define PB1100_ROM_L_STS (1<<10) | 36 | # define PB1100_ROM_L_STS (1 << 10) |
38 | # define PB1100_FLASH_H_STS (1<<9) | 37 | # define PB1100_FLASH_H_STS (1 << 9) |
39 | # define PB1100_FLASH_L_STS (1<<8) | 38 | # define PB1100_FLASH_L_STS (1 << 8) |
40 | # define PB1100_SRAM_SIZ (1<<7) | 39 | # define PB1100_SRAM_SIZ (1 << 7) |
41 | # define PB1100_TSC_BUSY (1<<6) | 40 | # define PB1100_TSC_BUSY (1 << 6) |
42 | # define PB1100_PCMCIA_VS_MASK (3<<4) | 41 | # define PB1100_PCMCIA_VS_MASK (3 << 4) |
43 | # define PB1100_RS232_CD (1<<3) | 42 | # define PB1100_RS232_CD (1 << 3) |
44 | # define PB1100_RS232_CTS (1<<2) | 43 | # define PB1100_RS232_CTS (1 << 2) |
45 | # define PB1100_RS232_DSR (1<<1) | 44 | # define PB1100_RS232_DSR (1 << 1) |
46 | # define PB1100_RS232_RI (1<<0) | 45 | # define PB1100_RS232_RI (1 << 0) |
47 | 46 | ||
48 | #define PB1100_IRDA_RS232 0xAE00000C | 47 | #define PB1100_IRDA_RS232 0xAE00000C |
49 | # define PB1100_IRDA_FULL (0<<14) /* full power */ | 48 | # define PB1100_IRDA_FULL (0 << 14) /* full power */ |
50 | # define PB1100_IRDA_SHUTDOWN (1<<14) | 49 | # define PB1100_IRDA_SHUTDOWN (1 << 14) |
51 | # define PB1100_IRDA_TT (2<<14) /* 2/3 power */ | 50 | # define PB1100_IRDA_TT (2 << 14) /* 2/3 power */ |
52 | # define PB1100_IRDA_OT (3<<14) /* 1/3 power */ | 51 | # define PB1100_IRDA_OT (3 << 14) /* 1/3 power */ |
53 | # define PB1100_IRDA_FIR (1<<13) | 52 | # define PB1100_IRDA_FIR (1 << 13) |
54 | 53 | ||
55 | #define PCMCIA_BOARD_REG 0xAE000010 | 54 | #define PCMCIA_BOARD_REG 0xAE000010 |
56 | # define PB1100_SD_WP1_RO (1<<15) /* read only */ | 55 | # define PB1100_SD_WP1_RO (1 << 15) /* read only */ |
57 | # define PB1100_SD_WP0_RO (1<<14) /* read only */ | 56 | # define PB1100_SD_WP0_RO (1 << 14) /* read only */ |
58 | # define PB1100_SD_PWR1 (1<<11) /* applies power to SD1 */ | 57 | # define PB1100_SD_PWR1 (1 << 11) /* applies power to SD1 */ |
59 | # define PB1100_SD_PWR0 (1<<10) /* applies power to SD0 */ | 58 | # define PB1100_SD_PWR0 (1 << 10) /* applies power to SD0 */ |
60 | # define PB1100_SEL_SD_CONN1 (1<<9) | 59 | # define PB1100_SEL_SD_CONN1 (1 << 9) |
61 | # define PB1100_SEL_SD_CONN0 (1<<8) | 60 | # define PB1100_SEL_SD_CONN0 (1 << 8) |
62 | # define PC_DEASSERT_RST (1<<7) | 61 | # define PC_DEASSERT_RST (1 << 7) |
63 | # define PC_DRV_EN (1<<4) | 62 | # define PC_DRV_EN (1 << 4) |
64 | 63 | ||
65 | #define PB1100_G_CONTROL 0xAE000014 /* graphics control */ | 64 | #define PB1100_G_CONTROL 0xAE000014 /* graphics control */ |
66 | 65 | ||
67 | #define PB1100_RST_VDDI 0xAE00001C | 66 | #define PB1100_RST_VDDI 0xAE00001C |
68 | # define PB1100_SOFT_RESET (1<<15) /* clear to reset the board */ | 67 | # define PB1100_SOFT_RESET (1 << 15) /* clear to reset the board */ |
69 | # define PB1100_VDDI_MASK (0x1F) | 68 | # define PB1100_VDDI_MASK 0x1F |
70 | 69 | ||
71 | #define PB1100_LEDS 0xAE000018 | 70 | #define PB1100_LEDS 0xAE000018 |
72 | 71 | ||
73 | /* 11:8 is 4 discreet LEDs. Clearing a bit illuminates the LED. | 72 | /* |
74 | * 7:0 is the LED Display's decimal points. | 73 | * 11:8 is 4 discreet LEDs. Clearing a bit illuminates the LED. |
74 | * 7:0 is the LED Display's decimal points. | ||
75 | */ | 75 | */ |
76 | #define PB1100_HEX_LED 0xAE000018 | 76 | #define PB1100_HEX_LED 0xAE000018 |
77 | 77 | ||
78 | /* PCMCIA PB1100 specific defines */ | 78 | /* PCMCIA Pb1100 specific defines */ |
79 | #define PCMCIA_MAX_SOCK 0 | 79 | #define PCMCIA_MAX_SOCK 0 |
80 | #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK+1) | 80 | #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK + 1) |
81 | 81 | ||
82 | /* VPP/VCC */ | 82 | /* VPP/VCC */ |
83 | #define SET_VCC_VPP(VCC, VPP) (((VCC)<<2) | ((VPP)<<0)) | 83 | #define SET_VCC_VPP(VCC, VPP) (((VCC) << 2) | ((VPP) << 0)) |
84 | 84 | ||
85 | #endif /* __ASM_PB1100_H */ | 85 | #endif /* __ASM_PB1100_H */ |
diff --git a/include/asm-mips/mach-pb1x00/pb1200.h b/include/asm-mips/mach-pb1x00/pb1200.h index e2c6bcac3b42..c8618df88cb5 100644 --- a/include/asm-mips/mach-pb1x00/pb1200.h +++ b/include/asm-mips/mach-pb1x00/pb1200.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * AMD Alchemy PB1200 Referrence Board | 2 | * AMD Alchemy Pb1200 Referrence Board |
3 | * Board Registers defines. | 3 | * Board Registers defines. |
4 | * | 4 | * |
5 | * ######################################################################## | 5 | * ######################################################################## |
@@ -27,21 +27,20 @@ | |||
27 | #include <linux/types.h> | 27 | #include <linux/types.h> |
28 | #include <asm/mach-au1x00/au1xxx_psc.h> | 28 | #include <asm/mach-au1x00/au1xxx_psc.h> |
29 | 29 | ||
30 | // This is defined in au1000.h with bogus value | 30 | #define DBDMA_AC97_TX_CHAN DSCR_CMD0_PSC1_TX |
31 | #undef AU1X00_EXTERNAL_INT | 31 | #define DBDMA_AC97_RX_CHAN DSCR_CMD0_PSC1_RX |
32 | #define DBDMA_I2S_TX_CHAN DSCR_CMD0_PSC1_TX | ||
33 | #define DBDMA_I2S_RX_CHAN DSCR_CMD0_PSC1_RX | ||
32 | 34 | ||
33 | #define DBDMA_AC97_TX_CHAN DSCR_CMD0_PSC1_TX | 35 | /* |
34 | #define DBDMA_AC97_RX_CHAN DSCR_CMD0_PSC1_RX | 36 | * SPI and SMB are muxed on the Pb1200 board. |
35 | #define DBDMA_I2S_TX_CHAN DSCR_CMD0_PSC1_TX | 37 | * Refer to board documentation. |
36 | #define DBDMA_I2S_RX_CHAN DSCR_CMD0_PSC1_RX | ||
37 | |||
38 | /* SPI and SMB are muxed on the Pb1200 board. | ||
39 | Refer to board documentation. | ||
40 | */ | 38 | */ |
41 | #define SPI_PSC_BASE PSC0_BASE_ADDR | 39 | #define SPI_PSC_BASE PSC0_BASE_ADDR |
42 | #define SMBUS_PSC_BASE PSC0_BASE_ADDR | 40 | #define SMBUS_PSC_BASE PSC0_BASE_ADDR |
43 | /* AC97 and I2S are muxed on the Pb1200 board. | 41 | /* |
44 | Refer to board documentation. | 42 | * AC97 and I2S are muxed on the Pb1200 board. |
43 | * Refer to board documentation. | ||
45 | */ | 44 | */ |
46 | #define AC97_PSC_BASE PSC1_BASE_ADDR | 45 | #define AC97_PSC_BASE PSC1_BASE_ADDR |
47 | #define I2S_PSC_BASE PSC1_BASE_ADDR | 46 | #define I2S_PSC_BASE PSC1_BASE_ADDR |
@@ -102,10 +101,10 @@ static BCSR * const bcsr = (BCSR *)BCSR_KSEG1_ADDR; | |||
102 | #define BCSR_STATUS_SWAPBOOT 0x0040 | 101 | #define BCSR_STATUS_SWAPBOOT 0x0040 |
103 | #define BCSR_STATUS_FLASHBUSY 0x0100 | 102 | #define BCSR_STATUS_FLASHBUSY 0x0100 |
104 | #define BCSR_STATUS_IDECBLID 0x0200 | 103 | #define BCSR_STATUS_IDECBLID 0x0200 |
105 | #define BCSR_STATUS_SD0WP 0x0400 | 104 | #define BCSR_STATUS_SD0WP 0x0400 |
106 | #define BCSR_STATUS_SD1WP 0x0800 | 105 | #define BCSR_STATUS_SD1WP 0x0800 |
107 | #define BCSR_STATUS_U0RXD 0x1000 | 106 | #define BCSR_STATUS_U0RXD 0x1000 |
108 | #define BCSR_STATUS_U1RXD 0x2000 | 107 | #define BCSR_STATUS_U1RXD 0x2000 |
109 | 108 | ||
110 | #define BCSR_SWITCHES_OCTAL 0x00FF | 109 | #define BCSR_SWITCHES_OCTAL 0x00FF |
111 | #define BCSR_SWITCHES_DIP_1 0x0080 | 110 | #define BCSR_SWITCHES_DIP_1 0x0080 |
@@ -123,11 +122,11 @@ static BCSR * const bcsr = (BCSR *)BCSR_KSEG1_ADDR; | |||
123 | #define BCSR_RESETS_DC 0x0004 | 122 | #define BCSR_RESETS_DC 0x0004 |
124 | #define BCSR_RESETS_IDE 0x0008 | 123 | #define BCSR_RESETS_IDE 0x0008 |
125 | /* not resets but in the same register */ | 124 | /* not resets but in the same register */ |
126 | #define BCSR_RESETS_WSCFSM 0x0800 | 125 | #define BCSR_RESETS_WSCFSM 0x0800 |
127 | #define BCSR_RESETS_PCS0MUX 0x1000 | 126 | #define BCSR_RESETS_PCS0MUX 0x1000 |
128 | #define BCSR_RESETS_PCS1MUX 0x2000 | 127 | #define BCSR_RESETS_PCS1MUX 0x2000 |
129 | #define BCSR_RESETS_SPISEL 0x4000 | 128 | #define BCSR_RESETS_SPISEL 0x4000 |
130 | #define BCSR_RESETS_SD1MUX 0x8000 | 129 | #define BCSR_RESETS_SD1MUX 0x8000 |
131 | 130 | ||
132 | #define BCSR_PCMCIA_PC0VPP 0x0003 | 131 | #define BCSR_PCMCIA_PC0VPP 0x0003 |
133 | #define BCSR_PCMCIA_PC0VCC 0x000C | 132 | #define BCSR_PCMCIA_PC0VCC 0x000C |
@@ -163,7 +162,7 @@ static BCSR * const bcsr = (BCSR *)BCSR_KSEG1_ADDR; | |||
163 | #define BCSR_INT_PC0STSCHG 0x0008 | 162 | #define BCSR_INT_PC0STSCHG 0x0008 |
164 | #define BCSR_INT_PC1 0x0010 | 163 | #define BCSR_INT_PC1 0x0010 |
165 | #define BCSR_INT_PC1STSCHG 0x0020 | 164 | #define BCSR_INT_PC1STSCHG 0x0020 |
166 | #define BCSR_INT_DC 0x0040 | 165 | #define BCSR_INT_DC 0x0040 |
167 | #define BCSR_INT_FLASHBUSY 0x0080 | 166 | #define BCSR_INT_FLASHBUSY 0x0080 |
168 | #define BCSR_INT_PC0INSERT 0x0100 | 167 | #define BCSR_INT_PC0INSERT 0x0100 |
169 | #define BCSR_INT_PC0EJECT 0x0200 | 168 | #define BCSR_INT_PC0EJECT 0x0200 |
@@ -174,14 +173,6 @@ static BCSR * const bcsr = (BCSR *)BCSR_KSEG1_ADDR; | |||
174 | #define BCSR_INT_SD1INSERT 0x4000 | 173 | #define BCSR_INT_SD1INSERT 0x4000 |
175 | #define BCSR_INT_SD1EJECT 0x8000 | 174 | #define BCSR_INT_SD1EJECT 0x8000 |
176 | 175 | ||
177 | /* PCMCIA Db1x00 specific defines */ | ||
178 | #define PCMCIA_MAX_SOCK 1 | ||
179 | #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK+1) | ||
180 | |||
181 | /* VPP/VCC */ | ||
182 | #define SET_VCC_VPP(VCC, VPP, SLOT)\ | ||
183 | ((((VCC)<<2) | ((VPP)<<0)) << ((SLOT)*8)) | ||
184 | |||
185 | #define SMC91C111_PHYS_ADDR 0x0D000300 | 176 | #define SMC91C111_PHYS_ADDR 0x0D000300 |
186 | #define SMC91C111_INT PB1200_ETH_INT | 177 | #define SMC91C111_INT PB1200_ETH_INT |
187 | 178 | ||
@@ -192,18 +183,19 @@ static BCSR * const bcsr = (BCSR *)BCSR_KSEG1_ADDR; | |||
192 | #define IDE_DDMA_REQ DSCR_CMD0_DMA_REQ1 | 183 | #define IDE_DDMA_REQ DSCR_CMD0_DMA_REQ1 |
193 | #define IDE_RQSIZE 128 | 184 | #define IDE_RQSIZE 128 |
194 | 185 | ||
195 | #define NAND_PHYS_ADDR 0x1C000000 | 186 | #define NAND_PHYS_ADDR 0x1C000000 |
196 | 187 | ||
197 | /* Timing values as described in databook, * ns value stripped of | 188 | /* |
189 | * Timing values as described in databook, * ns value stripped of | ||
198 | * lower 2 bits. | 190 | * lower 2 bits. |
199 | * These defines are here rather than an SOC1200 generic file because | 191 | * These defines are here rather than an Au1200 generic file because |
200 | * the parts chosen on another board may be different and may require | 192 | * the parts chosen on another board may be different and may require |
201 | * different timings. | 193 | * different timings. |
202 | */ | 194 | */ |
203 | #define NAND_T_H (18 >> 2) | 195 | #define NAND_T_H (18 >> 2) |
204 | #define NAND_T_PUL (30 >> 2) | 196 | #define NAND_T_PUL (30 >> 2) |
205 | #define NAND_T_SU (30 >> 2) | 197 | #define NAND_T_SU (30 >> 2) |
206 | #define NAND_T_WH (30 >> 2) | 198 | #define NAND_T_WH (30 >> 2) |
207 | 199 | ||
208 | /* Bitfield shift amounts */ | 200 | /* Bitfield shift amounts */ |
209 | #define NAND_T_H_SHIFT 0 | 201 | #define NAND_T_H_SHIFT 0 |
@@ -211,11 +203,10 @@ static BCSR * const bcsr = (BCSR *)BCSR_KSEG1_ADDR; | |||
211 | #define NAND_T_SU_SHIFT 8 | 203 | #define NAND_T_SU_SHIFT 8 |
212 | #define NAND_T_WH_SHIFT 12 | 204 | #define NAND_T_WH_SHIFT 12 |
213 | 205 | ||
214 | #define NAND_TIMING ((NAND_T_H & 0xF) << NAND_T_H_SHIFT) | \ | 206 | #define NAND_TIMING (((NAND_T_H & 0xF) << NAND_T_H_SHIFT) | \ |
215 | ((NAND_T_PUL & 0xF) << NAND_T_PUL_SHIFT) | \ | 207 | ((NAND_T_PUL & 0xF) << NAND_T_PUL_SHIFT) | \ |
216 | ((NAND_T_SU & 0xF) << NAND_T_SU_SHIFT) | \ | 208 | ((NAND_T_SU & 0xF) << NAND_T_SU_SHIFT) | \ |
217 | ((NAND_T_WH & 0xF) << NAND_T_WH_SHIFT) | 209 | ((NAND_T_WH & 0xF) << NAND_T_WH_SHIFT)) |
218 | |||
219 | 210 | ||
220 | /* | 211 | /* |
221 | * External Interrupts for Pb1200 as of 8/6/2004. | 212 | * External Interrupts for Pb1200 as of 8/6/2004. |
@@ -248,13 +239,21 @@ enum external_pb1200_ints { | |||
248 | PB1200_INT_END = PB1200_INT_BEGIN + 15 | 239 | PB1200_INT_END = PB1200_INT_BEGIN + 15 |
249 | }; | 240 | }; |
250 | 241 | ||
251 | /* For drivers/pcmcia/au1000_db1x00.c */ | 242 | /* |
252 | #define BOARD_PC0_INT PB1200_PC0_INT | 243 | * Pb1200 specific PCMCIA defines for drivers/pcmcia/au1000_db1x00.c |
253 | #define BOARD_PC1_INT PB1200_PC1_INT | 244 | */ |
254 | #define BOARD_CARD_INSERTED(SOCKET) bcsr->sig_status & (1<<(8+(2*SOCKET))) | 245 | #define PCMCIA_MAX_SOCK 1 |
246 | #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK + 1) | ||
255 | 247 | ||
256 | /* Nand chip select */ | 248 | /* VPP/VCC */ |
249 | #define SET_VCC_VPP(VCC, VPP, SLOT) \ | ||
250 | ((((VCC) << 2) | ((VPP) << 0)) << ((SLOT) * 8)) | ||
251 | |||
252 | #define BOARD_PC0_INT PB1200_PC0_INT | ||
253 | #define BOARD_PC1_INT PB1200_PC1_INT | ||
254 | #define BOARD_CARD_INSERTED(SOCKET) bcsr->sig_status & (1 << (8 + (2 * SOCKET))) | ||
255 | |||
256 | /* NAND chip select */ | ||
257 | #define NAND_CS 1 | 257 | #define NAND_CS 1 |
258 | 258 | ||
259 | #endif /* __ASM_PB1200_H */ | 259 | #endif /* __ASM_PB1200_H */ |
260 | |||
diff --git a/include/asm-mips/mach-pb1x00/pb1500.h b/include/asm-mips/mach-pb1x00/pb1500.h index ff6d40c87a25..da51a2eb7b82 100644 --- a/include/asm-mips/mach-pb1x00/pb1500.h +++ b/include/asm-mips/mach-pb1x00/pb1500.h | |||
@@ -1,9 +1,8 @@ | |||
1 | /* | 1 | /* |
2 | * Alchemy Semi PB1500 Referrence Board | 2 | * Alchemy Semi Pb1500 Referrence Board |
3 | * | 3 | * |
4 | * Copyright 2001 MontaVista Software Inc. | 4 | * Copyright 2001, 2008 MontaVista Software Inc. |
5 | * Author: MontaVista Software, Inc. | 5 | * Author: MontaVista Software, Inc. <source@mvista.com> |
6 | * ppopov@mvista.com or source@mvista.com | ||
7 | * | 6 | * |
8 | * ######################################################################## | 7 | * ######################################################################## |
9 | * | 8 | * |
@@ -27,25 +26,24 @@ | |||
27 | #ifndef __ASM_PB1500_H | 26 | #ifndef __ASM_PB1500_H |
28 | #define __ASM_PB1500_H | 27 | #define __ASM_PB1500_H |
29 | 28 | ||
29 | #define IDENT_BOARD_REG 0xAE000000 | ||
30 | #define BOARD_STATUS_REG 0xAE000004 | ||
31 | #define PCI_BOARD_REG 0xAE000010 | ||
32 | #define PCMCIA_BOARD_REG 0xAE000010 | ||
33 | # define PC_DEASSERT_RST 0x80 | ||
34 | # define PC_DRV_EN 0x10 | ||
35 | #define PB1500_G_CONTROL 0xAE000014 | ||
36 | #define PB1500_RST_VDDI 0xAE00001C | ||
37 | #define PB1500_LEDS 0xAE000018 | ||
30 | 38 | ||
31 | #define IDENT_BOARD_REG 0xAE000000 | 39 | #define PB1500_HEX_LED 0xAF000004 |
32 | #define BOARD_STATUS_REG 0xAE000004 | 40 | #define PB1500_HEX_LED_BLANK 0xAF000008 |
33 | #define PCI_BOARD_REG 0xAE000010 | ||
34 | #define PCMCIA_BOARD_REG 0xAE000010 | ||
35 | #define PC_DEASSERT_RST 0x80 | ||
36 | #define PC_DRV_EN 0x10 | ||
37 | #define PB1500_G_CONTROL 0xAE000014 | ||
38 | #define PB1500_RST_VDDI 0xAE00001C | ||
39 | #define PB1500_LEDS 0xAE000018 | ||
40 | 41 | ||
41 | #define PB1500_HEX_LED 0xAF000004 | 42 | /* PCMCIA Pb1500 specific defines */ |
42 | #define PB1500_HEX_LED_BLANK 0xAF000008 | 43 | #define PCMCIA_MAX_SOCK 0 |
43 | 44 | #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK + 1) | |
44 | /* PCMCIA PB1500 specific defines */ | ||
45 | #define PCMCIA_MAX_SOCK 0 | ||
46 | #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK+1) | ||
47 | 45 | ||
48 | /* VPP/VCC */ | 46 | /* VPP/VCC */ |
49 | #define SET_VCC_VPP(VCC, VPP) (((VCC)<<2) | ((VPP)<<0)) | 47 | #define SET_VCC_VPP(VCC, VPP) (((VCC) << 2) | ((VPP) << 0)) |
50 | 48 | ||
51 | #endif /* __ASM_PB1500_H */ | 49 | #endif /* __ASM_PB1500_H */ |
diff --git a/include/asm-mips/mach-pb1x00/pb1550.h b/include/asm-mips/mach-pb1x00/pb1550.h index c2ab0e2df4ae..6704a11497db 100644 --- a/include/asm-mips/mach-pb1x00/pb1550.h +++ b/include/asm-mips/mach-pb1x00/pb1550.h | |||
@@ -30,15 +30,15 @@ | |||
30 | #include <linux/types.h> | 30 | #include <linux/types.h> |
31 | #include <asm/mach-au1x00/au1xxx_psc.h> | 31 | #include <asm/mach-au1x00/au1xxx_psc.h> |
32 | 32 | ||
33 | #define DBDMA_AC97_TX_CHAN DSCR_CMD0_PSC1_TX | 33 | #define DBDMA_AC97_TX_CHAN DSCR_CMD0_PSC1_TX |
34 | #define DBDMA_AC97_RX_CHAN DSCR_CMD0_PSC1_RX | 34 | #define DBDMA_AC97_RX_CHAN DSCR_CMD0_PSC1_RX |
35 | #define DBDMA_I2S_TX_CHAN DSCR_CMD0_PSC3_TX | 35 | #define DBDMA_I2S_TX_CHAN DSCR_CMD0_PSC3_TX |
36 | #define DBDMA_I2S_RX_CHAN DSCR_CMD0_PSC3_RX | 36 | #define DBDMA_I2S_RX_CHAN DSCR_CMD0_PSC3_RX |
37 | 37 | ||
38 | #define SPI_PSC_BASE PSC0_BASE_ADDR | 38 | #define SPI_PSC_BASE PSC0_BASE_ADDR |
39 | #define AC97_PSC_BASE PSC1_BASE_ADDR | 39 | #define AC97_PSC_BASE PSC1_BASE_ADDR |
40 | #define SMBUS_PSC_BASE PSC2_BASE_ADDR | 40 | #define SMBUS_PSC_BASE PSC2_BASE_ADDR |
41 | #define I2S_PSC_BASE PSC3_BASE_ADDR | 41 | #define I2S_PSC_BASE PSC3_BASE_ADDR |
42 | 42 | ||
43 | #define BCSR_PHYS_ADDR 0xAF000000 | 43 | #define BCSR_PHYS_ADDR 0xAF000000 |
44 | 44 | ||
@@ -129,12 +129,12 @@ static BCSR * const bcsr = (BCSR *)BCSR_PHYS_ADDR; | |||
129 | #define BCSR_SYSTEM_POWEROFF 0x4000 | 129 | #define BCSR_SYSTEM_POWEROFF 0x4000 |
130 | #define BCSR_SYSTEM_RESET 0x8000 | 130 | #define BCSR_SYSTEM_RESET 0x8000 |
131 | 131 | ||
132 | #define PCMCIA_MAX_SOCK 1 | 132 | #define PCMCIA_MAX_SOCK 1 |
133 | #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK+1) | 133 | #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK + 1) |
134 | 134 | ||
135 | /* VPP/VCC */ | 135 | /* VPP/VCC */ |
136 | #define SET_VCC_VPP(VCC, VPP, SLOT)\ | 136 | #define SET_VCC_VPP(VCC, VPP, SLOT) \ |
137 | ((((VCC)<<2) | ((VPP)<<0)) << ((SLOT)*8)) | 137 | ((((VCC) << 2) | ((VPP) << 0)) << ((SLOT) * 8)) |
138 | 138 | ||
139 | #if defined(CONFIG_MTD_PB1550_BOOT) && defined(CONFIG_MTD_PB1550_USER) | 139 | #if defined(CONFIG_MTD_PB1550_BOOT) && defined(CONFIG_MTD_PB1550_USER) |
140 | #define PB1550_BOTH_BANKS | 140 | #define PB1550_BOTH_BANKS |
@@ -144,16 +144,17 @@ static BCSR * const bcsr = (BCSR *)BCSR_PHYS_ADDR; | |||
144 | #define PB1550_USER_ONLY | 144 | #define PB1550_USER_ONLY |
145 | #endif | 145 | #endif |
146 | 146 | ||
147 | /* Timing values as described in databook, * ns value stripped of | 147 | /* |
148 | * Timing values as described in databook, * ns value stripped of | ||
148 | * lower 2 bits. | 149 | * lower 2 bits. |
149 | * These defines are here rather than an SOC1550 generic file because | 150 | * These defines are here rather than an SOC1550 generic file because |
150 | * the parts chosen on another board may be different and may require | 151 | * the parts chosen on another board may be different and may require |
151 | * different timings. | 152 | * different timings. |
152 | */ | 153 | */ |
153 | #define NAND_T_H (18 >> 2) | 154 | #define NAND_T_H (18 >> 2) |
154 | #define NAND_T_PUL (30 >> 2) | 155 | #define NAND_T_PUL (30 >> 2) |
155 | #define NAND_T_SU (30 >> 2) | 156 | #define NAND_T_SU (30 >> 2) |
156 | #define NAND_T_WH (30 >> 2) | 157 | #define NAND_T_WH (30 >> 2) |
157 | 158 | ||
158 | /* Bitfield shift amounts */ | 159 | /* Bitfield shift amounts */ |
159 | #define NAND_T_H_SHIFT 0 | 160 | #define NAND_T_H_SHIFT 0 |
@@ -161,16 +162,16 @@ static BCSR * const bcsr = (BCSR *)BCSR_PHYS_ADDR; | |||
161 | #define NAND_T_SU_SHIFT 8 | 162 | #define NAND_T_SU_SHIFT 8 |
162 | #define NAND_T_WH_SHIFT 12 | 163 | #define NAND_T_WH_SHIFT 12 |
163 | 164 | ||
164 | #define NAND_TIMING ((NAND_T_H & 0xF) << NAND_T_H_SHIFT) | \ | 165 | #define NAND_TIMING (((NAND_T_H & 0xF) << NAND_T_H_SHIFT) | \ |
165 | ((NAND_T_PUL & 0xF) << NAND_T_PUL_SHIFT) | \ | 166 | ((NAND_T_PUL & 0xF) << NAND_T_PUL_SHIFT) | \ |
166 | ((NAND_T_SU & 0xF) << NAND_T_SU_SHIFT) | \ | 167 | ((NAND_T_SU & 0xF) << NAND_T_SU_SHIFT) | \ |
167 | ((NAND_T_WH & 0xF) << NAND_T_WH_SHIFT) | 168 | ((NAND_T_WH & 0xF) << NAND_T_WH_SHIFT)) |
168 | 169 | ||
169 | #define NAND_CS 1 | 170 | #define NAND_CS 1 |
170 | 171 | ||
171 | /* should be done by yamon */ | 172 | /* Should be done by YAMON */ |
172 | #define NAND_STCFG 0x00400005 /* 8-bit NAND */ | 173 | #define NAND_STCFG 0x00400005 /* 8-bit NAND */ |
173 | #define NAND_STTIME 0x00007774 /* valid for 396MHz SD=2 only */ | 174 | #define NAND_STTIME 0x00007774 /* valid for 396 MHz SD=2 only */ |
174 | #define NAND_STADDR 0x12000FFF /* physical address 0x20000000 */ | 175 | #define NAND_STADDR 0x12000FFF /* physical address 0x20000000 */ |
175 | 176 | ||
176 | #endif /* __ASM_PB1550_H */ | 177 | #endif /* __ASM_PB1550_H */ |
diff --git a/include/asm-mips/rtlx.h b/include/asm-mips/rtlx.h index 65778c890a62..20b666022dcb 100644 --- a/include/asm-mips/rtlx.h +++ b/include/asm-mips/rtlx.h | |||
@@ -29,13 +29,13 @@ extern unsigned int rtlx_read_poll(int index, int can_sleep); | |||
29 | extern unsigned int rtlx_write_poll(int index); | 29 | extern unsigned int rtlx_write_poll(int index); |
30 | 30 | ||
31 | enum rtlx_state { | 31 | enum rtlx_state { |
32 | RTLX_STATE_UNUSED, | 32 | RTLX_STATE_UNUSED = 0, |
33 | RTLX_STATE_INITIALISED, | 33 | RTLX_STATE_INITIALISED, |
34 | RTLX_STATE_REMOTE_READY, | 34 | RTLX_STATE_REMOTE_READY, |
35 | RTLX_STATE_OPENED | 35 | RTLX_STATE_OPENED |
36 | }; | 36 | }; |
37 | 37 | ||
38 | #define RTLX_BUFFER_SIZE 1024 | 38 | #define RTLX_BUFFER_SIZE 2048 |
39 | 39 | ||
40 | /* each channel supports read and write. | 40 | /* each channel supports read and write. |
41 | linux (vpe0) reads lx_buffer and writes rt_buffer | 41 | linux (vpe0) reads lx_buffer and writes rt_buffer |
diff --git a/include/asm-mn10300/processor.h b/include/asm-mn10300/processor.h index f1b081f53468..73239271873d 100644 --- a/include/asm-mn10300/processor.h +++ b/include/asm-mn10300/processor.h | |||
@@ -58,7 +58,7 @@ extern struct mn10300_cpuinfo boot_cpu_data; | |||
58 | extern void identify_cpu(struct mn10300_cpuinfo *); | 58 | extern void identify_cpu(struct mn10300_cpuinfo *); |
59 | extern void print_cpu_info(struct mn10300_cpuinfo *); | 59 | extern void print_cpu_info(struct mn10300_cpuinfo *); |
60 | extern void dodgy_tsc(void); | 60 | extern void dodgy_tsc(void); |
61 | #define cpu_relax() do {} while (0) | 61 | #define cpu_relax() barrier() |
62 | 62 | ||
63 | /* | 63 | /* |
64 | * User space process size: 1.75GB (default). | 64 | * User space process size: 1.75GB (default). |
diff --git a/include/asm-powerpc/io.h b/include/asm-powerpc/io.h index afae0697e8ce..e0062d73db1c 100644 --- a/include/asm-powerpc/io.h +++ b/include/asm-powerpc/io.h | |||
@@ -2,7 +2,7 @@ | |||
2 | #define _ASM_POWERPC_IO_H | 2 | #define _ASM_POWERPC_IO_H |
3 | #ifdef __KERNEL__ | 3 | #ifdef __KERNEL__ |
4 | 4 | ||
5 | /* | 5 | /* |
6 | * This program is free software; you can redistribute it and/or | 6 | * This program is free software; you can redistribute it and/or |
7 | * modify it under the terms of the GNU General Public License | 7 | * modify it under the terms of the GNU General Public License |
8 | * as published by the Free Software Foundation; either version | 8 | * as published by the Free Software Foundation; either version |
@@ -18,6 +18,9 @@ extern int check_legacy_ioport(unsigned long base_port); | |||
18 | #define _PNPWRP 0xa79 | 18 | #define _PNPWRP 0xa79 |
19 | #define PNPBIOS_BASE 0xf000 | 19 | #define PNPBIOS_BASE 0xf000 |
20 | 20 | ||
21 | #include <linux/device.h> | ||
22 | #include <linux/io.h> | ||
23 | |||
21 | #include <linux/compiler.h> | 24 | #include <linux/compiler.h> |
22 | #include <asm/page.h> | 25 | #include <asm/page.h> |
23 | #include <asm/byteorder.h> | 26 | #include <asm/byteorder.h> |
@@ -744,6 +747,9 @@ static inline void * bus_to_virt(unsigned long address) | |||
744 | 747 | ||
745 | #define clrsetbits_8(addr, clear, set) clrsetbits(8, addr, clear, set) | 748 | #define clrsetbits_8(addr, clear, set) clrsetbits(8, addr, clear, set) |
746 | 749 | ||
750 | void __iomem *devm_ioremap_prot(struct device *dev, resource_size_t offset, | ||
751 | size_t size, unsigned long flags); | ||
752 | |||
747 | #endif /* __KERNEL__ */ | 753 | #endif /* __KERNEL__ */ |
748 | 754 | ||
749 | #endif /* _ASM_POWERPC_IO_H */ | 755 | #endif /* _ASM_POWERPC_IO_H */ |
diff --git a/include/asm-powerpc/pgtable-ppc32.h b/include/asm-powerpc/pgtable-ppc32.h index 7c97b5a08d08..c08e714d0c42 100644 --- a/include/asm-powerpc/pgtable-ppc32.h +++ b/include/asm-powerpc/pgtable-ppc32.h | |||
@@ -209,6 +209,13 @@ extern int icache_44x_need_flush; | |||
209 | * 0 1 2 3 4 ... 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 209 | * 0 1 2 3 4 ... 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
210 | * - - - - - - U0 U1 U2 U3 W I M G E - UX UW UR SX SW SR | 210 | * - - - - - - U0 U1 U2 U3 W I M G E - UX UW UR SX SW SR |
211 | * | 211 | * |
212 | * Newer 440 cores (440x6 as used on AMCC 460EX/460GT) have additional | ||
213 | * TLB2 storage attibute fields. Those are: | ||
214 | * | ||
215 | * TLB2: | ||
216 | * 0...10 11 12 13 14 15 16...31 | ||
217 | * no change WL1 IL1I IL1D IL2I IL2D no change | ||
218 | * | ||
212 | * There are some constrains and options, to decide mapping software bits | 219 | * There are some constrains and options, to decide mapping software bits |
213 | * into TLB entry. | 220 | * into TLB entry. |
214 | * | 221 | * |
diff --git a/include/asm-powerpc/spu.h b/include/asm-powerpc/spu.h index e3c845b0f764..6abead6e681a 100644 --- a/include/asm-powerpc/spu.h +++ b/include/asm-powerpc/spu.h | |||
@@ -100,6 +100,7 @@ | |||
100 | 100 | ||
101 | /* Flag indicating progress during context switch. */ | 101 | /* Flag indicating progress during context switch. */ |
102 | #define SPU_CONTEXT_SWITCH_PENDING 0UL | 102 | #define SPU_CONTEXT_SWITCH_PENDING 0UL |
103 | #define SPU_CONTEXT_FAULT_PENDING 1UL | ||
103 | 104 | ||
104 | struct spu_context; | 105 | struct spu_context; |
105 | struct spu_runqueue; | 106 | struct spu_runqueue; |
@@ -128,9 +129,11 @@ struct spu { | |||
128 | unsigned int irqs[3]; | 129 | unsigned int irqs[3]; |
129 | u32 node; | 130 | u32 node; |
130 | u64 flags; | 131 | u64 flags; |
131 | u64 dar; | ||
132 | u64 dsisr; | ||
133 | u64 class_0_pending; | 132 | u64 class_0_pending; |
133 | u64 class_0_dar; | ||
134 | u64 class_0_dsisr; | ||
135 | u64 class_1_dar; | ||
136 | u64 class_1_dsisr; | ||
134 | size_t ls_size; | 137 | size_t ls_size; |
135 | unsigned int slb_replace; | 138 | unsigned int slb_replace; |
136 | struct mm_struct *mm; | 139 | struct mm_struct *mm; |
@@ -143,7 +146,7 @@ struct spu { | |||
143 | 146 | ||
144 | void (* wbox_callback)(struct spu *spu); | 147 | void (* wbox_callback)(struct spu *spu); |
145 | void (* ibox_callback)(struct spu *spu); | 148 | void (* ibox_callback)(struct spu *spu); |
146 | void (* stop_callback)(struct spu *spu); | 149 | void (* stop_callback)(struct spu *spu, int irq); |
147 | void (* mfc_callback)(struct spu *spu); | 150 | void (* mfc_callback)(struct spu *spu); |
148 | 151 | ||
149 | char irq_c0[8]; | 152 | char irq_c0[8]; |
diff --git a/include/asm-powerpc/spu_csa.h b/include/asm-powerpc/spu_csa.h index 0ab6bff86078..129ec148d451 100644 --- a/include/asm-powerpc/spu_csa.h +++ b/include/asm-powerpc/spu_csa.h | |||
@@ -254,7 +254,8 @@ struct spu_state { | |||
254 | u64 spu_chnldata_RW[32]; | 254 | u64 spu_chnldata_RW[32]; |
255 | u32 spu_mailbox_data[4]; | 255 | u32 spu_mailbox_data[4]; |
256 | u32 pu_mailbox_data[1]; | 256 | u32 pu_mailbox_data[1]; |
257 | u64 dar, dsisr, class_0_pending; | 257 | u64 class_0_dar, class_0_dsisr, class_0_pending; |
258 | u64 class_1_dar, class_1_dsisr; | ||
258 | unsigned long suspend_time; | 259 | unsigned long suspend_time; |
259 | spinlock_t register_lock; | 260 | spinlock_t register_lock; |
260 | }; | 261 | }; |
diff --git a/include/asm-ppc/system.h b/include/asm-ppc/system.h index 0593cb889d45..70ebd333c55b 100644 --- a/include/asm-ppc/system.h +++ b/include/asm-ppc/system.h | |||
@@ -178,7 +178,7 @@ static inline unsigned long __xchg(unsigned long x, volatile void *ptr, int size | |||
178 | 178 | ||
179 | } | 179 | } |
180 | 180 | ||
181 | extern inline void * xchg_ptr(void * m, void * val) | 181 | static inline void * xchg_ptr(void * m, void * val) |
182 | { | 182 | { |
183 | return (void *) xchg_u32(m, (unsigned long) val); | 183 | return (void *) xchg_u32(m, (unsigned long) val); |
184 | } | 184 | } |
diff --git a/include/asm-s390/kvm_host.h b/include/asm-s390/kvm_host.h index f8204a4f2e02..18cbd8a39796 100644 --- a/include/asm-s390/kvm_host.h +++ b/include/asm-s390/kvm_host.h | |||
@@ -104,6 +104,7 @@ struct sie_block { | |||
104 | 104 | ||
105 | struct kvm_vcpu_stat { | 105 | struct kvm_vcpu_stat { |
106 | u32 exit_userspace; | 106 | u32 exit_userspace; |
107 | u32 exit_null; | ||
107 | u32 exit_external_request; | 108 | u32 exit_external_request; |
108 | u32 exit_external_interrupt; | 109 | u32 exit_external_interrupt; |
109 | u32 exit_stop_request; | 110 | u32 exit_stop_request; |
diff --git a/include/asm-s390/page.h b/include/asm-s390/page.h index f0f4579eac13..12fd9c4f0f15 100644 --- a/include/asm-s390/page.h +++ b/include/asm-s390/page.h | |||
@@ -125,6 +125,17 @@ page_get_storage_key(unsigned long addr) | |||
125 | return skey; | 125 | return skey; |
126 | } | 126 | } |
127 | 127 | ||
128 | #ifdef CONFIG_PAGE_STATES | ||
129 | |||
130 | struct page; | ||
131 | void arch_free_page(struct page *page, int order); | ||
132 | void arch_alloc_page(struct page *page, int order); | ||
133 | |||
134 | #define HAVE_ARCH_FREE_PAGE | ||
135 | #define HAVE_ARCH_ALLOC_PAGE | ||
136 | |||
137 | #endif | ||
138 | |||
128 | #endif /* !__ASSEMBLY__ */ | 139 | #endif /* !__ASSEMBLY__ */ |
129 | 140 | ||
130 | /* to align the pointer to the (next) page boundary */ | 141 | /* to align the pointer to the (next) page boundary */ |
diff --git a/include/asm-s390/ptrace.h b/include/asm-s390/ptrace.h index 441d7c260857..d7d4e2eb3e6f 100644 --- a/include/asm-s390/ptrace.h +++ b/include/asm-s390/ptrace.h | |||
@@ -471,6 +471,8 @@ struct task_struct; | |||
471 | extern void user_enable_single_step(struct task_struct *); | 471 | extern void user_enable_single_step(struct task_struct *); |
472 | extern void user_disable_single_step(struct task_struct *); | 472 | extern void user_disable_single_step(struct task_struct *); |
473 | 473 | ||
474 | #define __ARCH_WANT_COMPAT_SYS_PTRACE | ||
475 | |||
474 | #define user_mode(regs) (((regs)->psw.mask & PSW_MASK_PSTATE) != 0) | 476 | #define user_mode(regs) (((regs)->psw.mask & PSW_MASK_PSTATE) != 0) |
475 | #define instruction_pointer(regs) ((regs)->psw.addr & PSW_ADDR_INSN) | 477 | #define instruction_pointer(regs) ((regs)->psw.addr & PSW_ADDR_INSN) |
476 | #define regs_return_value(regs)((regs)->gprs[2]) | 478 | #define regs_return_value(regs)((regs)->gprs[2]) |
diff --git a/include/asm-s390/system.h b/include/asm-s390/system.h index c819ae25a842..e0d4500d5f95 100644 --- a/include/asm-s390/system.h +++ b/include/asm-s390/system.h | |||
@@ -116,6 +116,12 @@ extern void pfault_fini(void); | |||
116 | #define pfault_fini() do { } while (0) | 116 | #define pfault_fini() do { } while (0) |
117 | #endif /* CONFIG_PFAULT */ | 117 | #endif /* CONFIG_PFAULT */ |
118 | 118 | ||
119 | #ifdef CONFIG_PAGE_STATES | ||
120 | extern void cmma_init(void); | ||
121 | #else | ||
122 | static inline void cmma_init(void) { } | ||
123 | #endif | ||
124 | |||
119 | #define finish_arch_switch(prev) do { \ | 125 | #define finish_arch_switch(prev) do { \ |
120 | set_fs(current->thread.mm_segment); \ | 126 | set_fs(current->thread.mm_segment); \ |
121 | account_vtime(prev); \ | 127 | account_vtime(prev); \ |
diff --git a/include/asm-s390/types.h b/include/asm-s390/types.h index 78dda038dd47..0e959e20e9a3 100644 --- a/include/asm-s390/types.h +++ b/include/asm-s390/types.h | |||
@@ -10,9 +10,9 @@ | |||
10 | #define _S390_TYPES_H | 10 | #define _S390_TYPES_H |
11 | 11 | ||
12 | #ifndef __s390x__ | 12 | #ifndef __s390x__ |
13 | # include <asm-generic/int-l64.h> | ||
14 | #else | ||
15 | # include <asm-generic/int-ll64.h> | 13 | # include <asm-generic/int-ll64.h> |
14 | #else | ||
15 | # include <asm-generic/int-l64.h> | ||
16 | #endif | 16 | #endif |
17 | 17 | ||
18 | #ifndef __ASSEMBLY__ | 18 | #ifndef __ASSEMBLY__ |
diff --git a/include/asm-sh/cpu-sh3/dma.h b/include/asm-sh/cpu-sh3/dma.h index 092ff9d872c3..6813c3220a1d 100644 --- a/include/asm-sh/cpu-sh3/dma.h +++ b/include/asm-sh/cpu-sh3/dma.h | |||
@@ -3,19 +3,19 @@ | |||
3 | 3 | ||
4 | 4 | ||
5 | #if defined(CONFIG_CPU_SUBTYPE_SH7720) || \ | 5 | #if defined(CONFIG_CPU_SUBTYPE_SH7720) || \ |
6 | defined(CONFIG_CPU_SUBTYPE_SH7721) || \ | 6 | defined(CONFIG_CPU_SUBTYPE_SH7721) |
7 | defined(CONFIG_CPU_SUBTYPE_SH7709) | ||
8 | #define SH_DMAC_BASE 0xa4010020 | 7 | #define SH_DMAC_BASE 0xa4010020 |
8 | #else | ||
9 | #define SH_DMAC_BASE 0xa4000020 | ||
10 | #endif | ||
9 | 11 | ||
12 | #if defined(CONFIG_CPU_SUBTYPE_SH7720) || defined(CONFIG_CPU_SUBTYPE_SH7709) | ||
10 | #define DMTE0_IRQ 48 | 13 | #define DMTE0_IRQ 48 |
11 | #define DMTE1_IRQ 49 | 14 | #define DMTE1_IRQ 49 |
12 | #define DMTE2_IRQ 50 | 15 | #define DMTE2_IRQ 50 |
13 | #define DMTE3_IRQ 51 | 16 | #define DMTE3_IRQ 51 |
14 | #define DMTE4_IRQ 76 | 17 | #define DMTE4_IRQ 76 |
15 | #define DMTE5_IRQ 77 | 18 | #define DMTE5_IRQ 77 |
16 | |||
17 | #else | ||
18 | #define SH_DMAC_BASE 0xa4000020 | ||
19 | #endif | 19 | #endif |
20 | 20 | ||
21 | /* Definitions for the SuperH DMAC */ | 21 | /* Definitions for the SuperH DMAC */ |
diff --git a/include/asm-sh/hw_irq.h b/include/asm-sh/hw_irq.h index c958fdaa0095..7438d1e21bc9 100644 --- a/include/asm-sh/hw_irq.h +++ b/include/asm-sh/hw_irq.h | |||
@@ -79,6 +79,10 @@ struct intc_desc { | |||
79 | struct intc_sense_reg *sense_regs; | 79 | struct intc_sense_reg *sense_regs; |
80 | unsigned int nr_sense_regs; | 80 | unsigned int nr_sense_regs; |
81 | char *name; | 81 | char *name; |
82 | #ifdef CONFIG_CPU_SH3 | ||
83 | struct intc_mask_reg *ack_regs; | ||
84 | unsigned int nr_ack_regs; | ||
85 | #endif | ||
82 | }; | 86 | }; |
83 | 87 | ||
84 | #define _INTC_ARRAY(a) a, sizeof(a)/sizeof(*a) | 88 | #define _INTC_ARRAY(a) a, sizeof(a)/sizeof(*a) |
@@ -91,10 +95,25 @@ struct intc_desc symbol __initdata = { \ | |||
91 | chipname, \ | 95 | chipname, \ |
92 | } | 96 | } |
93 | 97 | ||
98 | #ifdef CONFIG_CPU_SH3 | ||
99 | #define DECLARE_INTC_DESC_ACK(symbol, chipname, vectors, groups, \ | ||
100 | mask_regs, prio_regs, sense_regs, ack_regs) \ | ||
101 | struct intc_desc symbol __initdata = { \ | ||
102 | _INTC_ARRAY(vectors), _INTC_ARRAY(groups), \ | ||
103 | _INTC_ARRAY(mask_regs), _INTC_ARRAY(prio_regs), \ | ||
104 | _INTC_ARRAY(sense_regs), \ | ||
105 | chipname, \ | ||
106 | _INTC_ARRAY(ack_regs), \ | ||
107 | } | ||
108 | #endif | ||
109 | |||
94 | void __init register_intc_controller(struct intc_desc *desc); | 110 | void __init register_intc_controller(struct intc_desc *desc); |
95 | int intc_set_priority(unsigned int irq, unsigned int prio); | 111 | int intc_set_priority(unsigned int irq, unsigned int prio); |
96 | 112 | ||
97 | void __init plat_irq_setup(void); | 113 | void __init plat_irq_setup(void); |
114 | #ifdef CONFIG_CPU_SH3 | ||
115 | void __init plat_irq_setup_sh3(void); | ||
116 | #endif | ||
98 | 117 | ||
99 | enum { IRQ_MODE_IRQ, IRQ_MODE_IRQ7654, IRQ_MODE_IRQ3210, | 118 | enum { IRQ_MODE_IRQ, IRQ_MODE_IRQ7654, IRQ_MODE_IRQ3210, |
100 | IRQ_MODE_IRL7654_MASK, IRQ_MODE_IRL3210_MASK, | 119 | IRQ_MODE_IRL7654_MASK, IRQ_MODE_IRL3210_MASK, |
diff --git a/include/asm-sh/io.h b/include/asm-sh/io.h index 356e50d06745..a4fbf0c84fb1 100644 --- a/include/asm-sh/io.h +++ b/include/asm-sh/io.h | |||
@@ -268,11 +268,6 @@ unsigned long long peek_real_address_q(unsigned long long addr); | |||
268 | unsigned long long poke_real_address_q(unsigned long long addr, | 268 | unsigned long long poke_real_address_q(unsigned long long addr, |
269 | unsigned long long val); | 269 | unsigned long long val); |
270 | 270 | ||
271 | /* arch/sh/mm/ioremap_64.c */ | ||
272 | unsigned long onchip_remap(unsigned long addr, unsigned long size, | ||
273 | const char *name); | ||
274 | extern void onchip_unmap(unsigned long vaddr); | ||
275 | |||
276 | #if !defined(CONFIG_MMU) | 271 | #if !defined(CONFIG_MMU) |
277 | #define virt_to_phys(address) ((unsigned long)(address)) | 272 | #define virt_to_phys(address) ((unsigned long)(address)) |
278 | #define phys_to_virt(address) ((void *)(address)) | 273 | #define phys_to_virt(address) ((void *)(address)) |
@@ -302,9 +297,16 @@ extern void onchip_unmap(unsigned long vaddr); | |||
302 | void __iomem *__ioremap(unsigned long offset, unsigned long size, | 297 | void __iomem *__ioremap(unsigned long offset, unsigned long size, |
303 | unsigned long flags); | 298 | unsigned long flags); |
304 | void __iounmap(void __iomem *addr); | 299 | void __iounmap(void __iomem *addr); |
300 | |||
301 | /* arch/sh/mm/ioremap_64.c */ | ||
302 | unsigned long onchip_remap(unsigned long addr, unsigned long size, | ||
303 | const char *name); | ||
304 | extern void onchip_unmap(unsigned long vaddr); | ||
305 | #else | 305 | #else |
306 | #define __ioremap(offset, size, flags) ((void __iomem *)(offset)) | 306 | #define __ioremap(offset, size, flags) ((void __iomem *)(offset)) |
307 | #define __iounmap(addr) do { } while (0) | 307 | #define __iounmap(addr) do { } while (0) |
308 | #define onchip_remap(addr, size, name) (addr) | ||
309 | #define onchip_unmap(addr) do { } while (0) | ||
308 | #endif /* CONFIG_MMU */ | 310 | #endif /* CONFIG_MMU */ |
309 | 311 | ||
310 | static inline void __iomem * | 312 | static inline void __iomem * |
diff --git a/include/asm-sh/keyboard.h b/include/asm-sh/keyboard.h deleted file mode 100644 index 31dcc4fa5f28..000000000000 --- a/include/asm-sh/keyboard.h +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | #ifndef __ASM_SH_KEYBOARD_H | ||
2 | #define __ASM_SH_KEYBOARD_H | ||
3 | /* | ||
4 | * $Id: keyboard.h,v 1.1.1.1 2001/10/15 20:45:09 mrbrown Exp $ | ||
5 | */ | ||
6 | |||
7 | #include <linux/kd.h> | ||
8 | #include <asm/machvec.h> | ||
9 | |||
10 | #ifdef CONFIG_SH_MPC1211 | ||
11 | #include <asm/mpc1211/keyboard-mpc1211.h> | ||
12 | #endif | ||
13 | #endif | ||
diff --git a/include/asm-sh/mmu_context.h b/include/asm-sh/mmu_context.h index fe58d00b250c..87e812f68bb0 100644 --- a/include/asm-sh/mmu_context.h +++ b/include/asm-sh/mmu_context.h | |||
@@ -27,6 +27,7 @@ | |||
27 | /* ASID is 8-bit value, so it can't be 0x100 */ | 27 | /* ASID is 8-bit value, so it can't be 0x100 */ |
28 | #define MMU_NO_ASID 0x100 | 28 | #define MMU_NO_ASID 0x100 |
29 | 29 | ||
30 | #ifdef CONFIG_MMU | ||
30 | #define asid_cache(cpu) (cpu_data[cpu].asid_cache) | 31 | #define asid_cache(cpu) (cpu_data[cpu].asid_cache) |
31 | #define cpu_context(cpu, mm) ((mm)->context.id[cpu]) | 32 | #define cpu_context(cpu, mm) ((mm)->context.id[cpu]) |
32 | 33 | ||
@@ -38,7 +39,6 @@ | |||
38 | */ | 39 | */ |
39 | #define MMU_VPN_MASK 0xfffff000 | 40 | #define MMU_VPN_MASK 0xfffff000 |
40 | 41 | ||
41 | #ifdef CONFIG_MMU | ||
42 | #if defined(CONFIG_SUPERH32) | 42 | #if defined(CONFIG_SUPERH32) |
43 | #include "mmu_context_32.h" | 43 | #include "mmu_context_32.h" |
44 | #else | 44 | #else |
@@ -129,6 +129,8 @@ static inline void switch_mm(struct mm_struct *prev, | |||
129 | #define destroy_context(mm) do { } while (0) | 129 | #define destroy_context(mm) do { } while (0) |
130 | #define set_asid(asid) do { } while (0) | 130 | #define set_asid(asid) do { } while (0) |
131 | #define get_asid() (0) | 131 | #define get_asid() (0) |
132 | #define cpu_asid(cpu, mm) ({ (void)cpu; 0; }) | ||
133 | #define switch_and_save_asid(asid) (0) | ||
132 | #define set_TTB(pgd) do { } while (0) | 134 | #define set_TTB(pgd) do { } while (0) |
133 | #define get_TTB() (0) | 135 | #define get_TTB() (0) |
134 | #define activate_context(mm,cpu) do { } while (0) | 136 | #define activate_context(mm,cpu) do { } while (0) |
diff --git a/include/asm-sh/mmzone.h b/include/asm-sh/mmzone.h index 7969f381dff2..2969253c4042 100644 --- a/include/asm-sh/mmzone.h +++ b/include/asm-sh/mmzone.h | |||
@@ -41,6 +41,8 @@ void __init plat_mem_setup(void); | |||
41 | 41 | ||
42 | /* arch/sh/kernel/setup.c */ | 42 | /* arch/sh/kernel/setup.c */ |
43 | void __init setup_bootmem_allocator(unsigned long start_pfn); | 43 | void __init setup_bootmem_allocator(unsigned long start_pfn); |
44 | void __init __add_active_range(unsigned int nid, unsigned long start_pfn, | ||
45 | unsigned long end_pfn); | ||
44 | 46 | ||
45 | #endif /* __KERNEL__ */ | 47 | #endif /* __KERNEL__ */ |
46 | #endif /* __ASM_SH_MMZONE_H */ | 48 | #endif /* __ASM_SH_MMZONE_H */ |
diff --git a/include/asm-sh/mpc1211/dma.h b/include/asm-sh/mpc1211/dma.h deleted file mode 100644 index e506d1aaa0d0..000000000000 --- a/include/asm-sh/mpc1211/dma.h +++ /dev/null | |||
@@ -1,303 +0,0 @@ | |||
1 | /* $Id: dma.h,v 1.7 1992/12/14 00:29:34 root Exp root $ | ||
2 | * linux/include/asm/dma.h: Defines for using and allocating dma channels. | ||
3 | * Written by Hennus Bergman, 1992. | ||
4 | * High DMA channel support & info by Hannu Savolainen | ||
5 | * and John Boyd, Nov. 1992. | ||
6 | */ | ||
7 | |||
8 | #ifndef _ASM_MPC1211_DMA_H | ||
9 | #define _ASM_MPC1211_DMA_H | ||
10 | |||
11 | #include <linux/spinlock.h> /* And spinlocks */ | ||
12 | #include <asm/io.h> /* need byte IO */ | ||
13 | #include <linux/delay.h> | ||
14 | |||
15 | |||
16 | #ifdef HAVE_REALLY_SLOW_DMA_CONTROLLER | ||
17 | #define dma_outb outb_p | ||
18 | #else | ||
19 | #define dma_outb outb | ||
20 | #endif | ||
21 | |||
22 | #define dma_inb inb | ||
23 | |||
24 | /* | ||
25 | * NOTES about DMA transfers: | ||
26 | * | ||
27 | * controller 1: channels 0-3, byte operations, ports 00-1F | ||
28 | * controller 2: channels 4-7, word operations, ports C0-DF | ||
29 | * | ||
30 | * - ALL registers are 8 bits only, regardless of transfer size | ||
31 | * - channel 4 is not used - cascades 1 into 2. | ||
32 | * - channels 0-3 are byte - addresses/counts are for physical bytes | ||
33 | * - channels 5-7 are word - addresses/counts are for physical words | ||
34 | * - transfers must not cross physical 64K (0-3) or 128K (5-7) boundaries | ||
35 | * - transfer count loaded to registers is 1 less than actual count | ||
36 | * - controller 2 offsets are all even (2x offsets for controller 1) | ||
37 | * - page registers for 5-7 don't use data bit 0, represent 128K pages | ||
38 | * - page registers for 0-3 use bit 0, represent 64K pages | ||
39 | * | ||
40 | * DMA transfers are limited to the lower 16MB of _physical_ memory. | ||
41 | * Note that addresses loaded into registers must be _physical_ addresses, | ||
42 | * not logical addresses (which may differ if paging is active). | ||
43 | * | ||
44 | * Address mapping for channels 0-3: | ||
45 | * | ||
46 | * A23 ... A16 A15 ... A8 A7 ... A0 (Physical addresses) | ||
47 | * | ... | | ... | | ... | | ||
48 | * | ... | | ... | | ... | | ||
49 | * | ... | | ... | | ... | | ||
50 | * P7 ... P0 A7 ... A0 A7 ... A0 | ||
51 | * | Page | Addr MSB | Addr LSB | (DMA registers) | ||
52 | * | ||
53 | * Address mapping for channels 5-7: | ||
54 | * | ||
55 | * A23 ... A17 A16 A15 ... A9 A8 A7 ... A1 A0 (Physical addresses) | ||
56 | * | ... | \ \ ... \ \ \ ... \ \ | ||
57 | * | ... | \ \ ... \ \ \ ... \ (not used) | ||
58 | * | ... | \ \ ... \ \ \ ... \ | ||
59 | * P7 ... P1 (0) A7 A6 ... A0 A7 A6 ... A0 | ||
60 | * | Page | Addr MSB | Addr LSB | (DMA registers) | ||
61 | * | ||
62 | * Again, channels 5-7 transfer _physical_ words (16 bits), so addresses | ||
63 | * and counts _must_ be word-aligned (the lowest address bit is _ignored_ at | ||
64 | * the hardware level, so odd-byte transfers aren't possible). | ||
65 | * | ||
66 | * Transfer count (_not # bytes_) is limited to 64K, represented as actual | ||
67 | * count - 1 : 64K => 0xFFFF, 1 => 0x0000. Thus, count is always 1 or more, | ||
68 | * and up to 128K bytes may be transferred on channels 5-7 in one operation. | ||
69 | * | ||
70 | */ | ||
71 | |||
72 | #define MAX_DMA_CHANNELS 8 | ||
73 | |||
74 | /* The maximum address that we can perform a DMA transfer to on this platform */ | ||
75 | #define MAX_DMA_ADDRESS (PAGE_OFFSET+0x10000000) | ||
76 | |||
77 | /* 8237 DMA controllers */ | ||
78 | #define IO_DMA1_BASE 0x00 /* 8 bit slave DMA, channels 0..3 */ | ||
79 | #define IO_DMA2_BASE 0xC0 /* 16 bit master DMA, ch 4(=slave input)..7 */ | ||
80 | |||
81 | /* DMA controller registers */ | ||
82 | #define DMA1_CMD_REG 0x08 /* command register (w) */ | ||
83 | #define DMA1_STAT_REG 0x08 /* status register (r) */ | ||
84 | #define DMA1_REQ_REG 0x09 /* request register (w) */ | ||
85 | #define DMA1_MASK_REG 0x0A /* single-channel mask (w) */ | ||
86 | #define DMA1_MODE_REG 0x0B /* mode register (w) */ | ||
87 | #define DMA1_CLEAR_FF_REG 0x0C /* clear pointer flip-flop (w) */ | ||
88 | #define DMA1_TEMP_REG 0x0D /* Temporary Register (r) */ | ||
89 | #define DMA1_RESET_REG 0x0D /* Master Clear (w) */ | ||
90 | #define DMA1_CLR_MASK_REG 0x0E /* Clear Mask */ | ||
91 | #define DMA1_MASK_ALL_REG 0x0F /* all-channels mask (w) */ | ||
92 | |||
93 | #define DMA2_CMD_REG 0xD0 /* command register (w) */ | ||
94 | #define DMA2_STAT_REG 0xD0 /* status register (r) */ | ||
95 | #define DMA2_REQ_REG 0xD2 /* request register (w) */ | ||
96 | #define DMA2_MASK_REG 0xD4 /* single-channel mask (w) */ | ||
97 | #define DMA2_MODE_REG 0xD6 /* mode register (w) */ | ||
98 | #define DMA2_CLEAR_FF_REG 0xD8 /* clear pointer flip-flop (w) */ | ||
99 | #define DMA2_TEMP_REG 0xDA /* Temporary Register (r) */ | ||
100 | #define DMA2_RESET_REG 0xDA /* Master Clear (w) */ | ||
101 | #define DMA2_CLR_MASK_REG 0xDC /* Clear Mask */ | ||
102 | #define DMA2_MASK_ALL_REG 0xDE /* all-channels mask (w) */ | ||
103 | |||
104 | #define DMA_ADDR_0 0x00 /* DMA address registers */ | ||
105 | #define DMA_ADDR_1 0x02 | ||
106 | #define DMA_ADDR_2 0x04 | ||
107 | #define DMA_ADDR_3 0x06 | ||
108 | #define DMA_ADDR_4 0xC0 | ||
109 | #define DMA_ADDR_5 0xC4 | ||
110 | #define DMA_ADDR_6 0xC8 | ||
111 | #define DMA_ADDR_7 0xCC | ||
112 | |||
113 | #define DMA_CNT_0 0x01 /* DMA count registers */ | ||
114 | #define DMA_CNT_1 0x03 | ||
115 | #define DMA_CNT_2 0x05 | ||
116 | #define DMA_CNT_3 0x07 | ||
117 | #define DMA_CNT_4 0xC2 | ||
118 | #define DMA_CNT_5 0xC6 | ||
119 | #define DMA_CNT_6 0xCA | ||
120 | #define DMA_CNT_7 0xCE | ||
121 | |||
122 | #define DMA_PAGE_0 0x87 /* DMA page registers */ | ||
123 | #define DMA_PAGE_1 0x83 | ||
124 | #define DMA_PAGE_2 0x81 | ||
125 | #define DMA_PAGE_3 0x82 | ||
126 | #define DMA_PAGE_5 0x8B | ||
127 | #define DMA_PAGE_6 0x89 | ||
128 | #define DMA_PAGE_7 0x8A | ||
129 | |||
130 | #define DMA_MODE_READ 0x44 /* I/O to memory, no autoinit, increment, single mode */ | ||
131 | #define DMA_MODE_WRITE 0x48 /* memory to I/O, no autoinit, increment, single mode */ | ||
132 | #define DMA_MODE_CASCADE 0xC0 /* pass thru DREQ->HRQ, DACK<-HLDA only */ | ||
133 | |||
134 | #define DMA_AUTOINIT 0x10 | ||
135 | |||
136 | |||
137 | extern spinlock_t dma_spin_lock; | ||
138 | |||
139 | static __inline__ unsigned long claim_dma_lock(void) | ||
140 | { | ||
141 | unsigned long flags; | ||
142 | spin_lock_irqsave(&dma_spin_lock, flags); | ||
143 | return flags; | ||
144 | } | ||
145 | |||
146 | static __inline__ void release_dma_lock(unsigned long flags) | ||
147 | { | ||
148 | spin_unlock_irqrestore(&dma_spin_lock, flags); | ||
149 | } | ||
150 | |||
151 | /* enable/disable a specific DMA channel */ | ||
152 | static __inline__ void enable_dma(unsigned int dmanr) | ||
153 | { | ||
154 | if (dmanr<=3) | ||
155 | dma_outb(dmanr, DMA1_MASK_REG); | ||
156 | else | ||
157 | dma_outb(dmanr & 3, DMA2_MASK_REG); | ||
158 | } | ||
159 | |||
160 | static __inline__ void disable_dma(unsigned int dmanr) | ||
161 | { | ||
162 | if (dmanr<=3) | ||
163 | dma_outb(dmanr | 4, DMA1_MASK_REG); | ||
164 | else | ||
165 | dma_outb((dmanr & 3) | 4, DMA2_MASK_REG); | ||
166 | } | ||
167 | |||
168 | /* Clear the 'DMA Pointer Flip Flop'. | ||
169 | * Write 0 for LSB/MSB, 1 for MSB/LSB access. | ||
170 | * Use this once to initialize the FF to a known state. | ||
171 | * After that, keep track of it. :-) | ||
172 | * --- In order to do that, the DMA routines below should --- | ||
173 | * --- only be used while holding the DMA lock ! --- | ||
174 | */ | ||
175 | static __inline__ void clear_dma_ff(unsigned int dmanr) | ||
176 | { | ||
177 | if (dmanr<=3) | ||
178 | dma_outb(0, DMA1_CLEAR_FF_REG); | ||
179 | else | ||
180 | dma_outb(0, DMA2_CLEAR_FF_REG); | ||
181 | } | ||
182 | |||
183 | /* set mode (above) for a specific DMA channel */ | ||
184 | static __inline__ void set_dma_mode(unsigned int dmanr, char mode) | ||
185 | { | ||
186 | if (dmanr<=3) | ||
187 | dma_outb(mode | dmanr, DMA1_MODE_REG); | ||
188 | else | ||
189 | dma_outb(mode | (dmanr&3), DMA2_MODE_REG); | ||
190 | } | ||
191 | |||
192 | /* Set only the page register bits of the transfer address. | ||
193 | * This is used for successive transfers when we know the contents of | ||
194 | * the lower 16 bits of the DMA current address register, but a 64k boundary | ||
195 | * may have been crossed. | ||
196 | */ | ||
197 | static __inline__ void set_dma_page(unsigned int dmanr, unsigned int pagenr) | ||
198 | { | ||
199 | switch(dmanr) { | ||
200 | case 0: | ||
201 | dma_outb( pagenr & 0xff, DMA_PAGE_0); | ||
202 | dma_outb((pagenr >> 8) & 0xff, DMA_PAGE_0 + 0x400); | ||
203 | break; | ||
204 | case 1: | ||
205 | dma_outb( pagenr & 0xff, DMA_PAGE_1); | ||
206 | dma_outb((pagenr >> 8) & 0xff, DMA_PAGE_1 + 0x400); | ||
207 | break; | ||
208 | case 2: | ||
209 | dma_outb( pagenr & 0xff, DMA_PAGE_2); | ||
210 | dma_outb((pagenr >> 8) & 0xff, DMA_PAGE_2 + 0x400); | ||
211 | break; | ||
212 | case 3: | ||
213 | dma_outb( pagenr & 0xff, DMA_PAGE_3); | ||
214 | dma_outb((pagenr >> 8) & 0xff, DMA_PAGE_3 + 0x400); | ||
215 | break; | ||
216 | case 5: | ||
217 | dma_outb( pagenr & 0xfe, DMA_PAGE_5); | ||
218 | dma_outb((pagenr >> 8) & 0xff, DMA_PAGE_5 + 0x400); | ||
219 | break; | ||
220 | case 6: | ||
221 | dma_outb( pagenr & 0xfe, DMA_PAGE_6); | ||
222 | dma_outb((pagenr >> 8) & 0xff, DMA_PAGE_6 + 0x400); | ||
223 | break; | ||
224 | case 7: | ||
225 | dma_outb( pagenr & 0xfe, DMA_PAGE_7); | ||
226 | dma_outb((pagenr >> 8) & 0xff, DMA_PAGE_7 + 0x400); | ||
227 | break; | ||
228 | } | ||
229 | } | ||
230 | |||
231 | |||
232 | /* Set transfer address & page bits for specific DMA channel. | ||
233 | * Assumes dma flipflop is clear. | ||
234 | */ | ||
235 | static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int a) | ||
236 | { | ||
237 | set_dma_page(dmanr, a>>16); | ||
238 | if (dmanr <= 3) { | ||
239 | dma_outb( a & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); | ||
240 | dma_outb( (a>>8) & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); | ||
241 | } else { | ||
242 | dma_outb( (a>>1) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); | ||
243 | dma_outb( (a>>9) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); | ||
244 | } | ||
245 | } | ||
246 | |||
247 | |||
248 | /* Set transfer size (max 64k for DMA1..3, 128k for DMA5..7) for | ||
249 | * a specific DMA channel. | ||
250 | * You must ensure the parameters are valid. | ||
251 | * NOTE: from a manual: "the number of transfers is one more | ||
252 | * than the initial word count"! This is taken into account. | ||
253 | * Assumes dma flip-flop is clear. | ||
254 | * NOTE 2: "count" represents _bytes_ and must be even for channels 5-7. | ||
255 | */ | ||
256 | static __inline__ void set_dma_count(unsigned int dmanr, unsigned int count) | ||
257 | { | ||
258 | count--; | ||
259 | if (dmanr <= 3) { | ||
260 | dma_outb( count & 0xff, ((dmanr&3)<<1) + 1 + IO_DMA1_BASE ); | ||
261 | dma_outb( (count>>8) & 0xff, ((dmanr&3)<<1) + 1 + IO_DMA1_BASE ); | ||
262 | } else { | ||
263 | dma_outb( (count>>1) & 0xff, ((dmanr&3)<<2) + 2 + IO_DMA2_BASE ); | ||
264 | dma_outb( (count>>9) & 0xff, ((dmanr&3)<<2) + 2 + IO_DMA2_BASE ); | ||
265 | } | ||
266 | } | ||
267 | |||
268 | |||
269 | /* Get DMA residue count. After a DMA transfer, this | ||
270 | * should return zero. Reading this while a DMA transfer is | ||
271 | * still in progress will return unpredictable results. | ||
272 | * If called before the channel has been used, it may return 1. | ||
273 | * Otherwise, it returns the number of _bytes_ left to transfer. | ||
274 | * | ||
275 | * Assumes DMA flip-flop is clear. | ||
276 | */ | ||
277 | static __inline__ int get_dma_residue(unsigned int dmanr) | ||
278 | { | ||
279 | unsigned int io_port = (dmanr<=3)? ((dmanr&3)<<1) + 1 + IO_DMA1_BASE | ||
280 | : ((dmanr&3)<<2) + 2 + IO_DMA2_BASE; | ||
281 | |||
282 | /* using short to get 16-bit wrap around */ | ||
283 | unsigned short count; | ||
284 | |||
285 | count = 1 + dma_inb(io_port); | ||
286 | count += dma_inb(io_port) << 8; | ||
287 | return (dmanr<=3)? count : (count<<1); | ||
288 | } | ||
289 | |||
290 | |||
291 | /* These are in kernel/dma.c: */ | ||
292 | extern int request_dma(unsigned int dmanr, const char * device_id); /* reserve a DMA channel */ | ||
293 | extern void free_dma(unsigned int dmanr); /* release it again */ | ||
294 | |||
295 | /* From PCI */ | ||
296 | |||
297 | #ifdef CONFIG_PCI | ||
298 | extern int isa_dma_bridge_buggy; | ||
299 | #else | ||
300 | #define isa_dma_bridge_buggy (0) | ||
301 | #endif | ||
302 | |||
303 | #endif /* _ASM_MPC1211_DMA_H */ | ||
diff --git a/include/asm-sh/mpc1211/io.h b/include/asm-sh/mpc1211/io.h deleted file mode 100644 index 6298370bec2d..000000000000 --- a/include/asm-sh/mpc1211/io.h +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | /* | ||
2 | * include/asm-sh/mpc1211/io.h | ||
3 | * | ||
4 | * Copyright 2001 Saito.K & Jeanne | ||
5 | * | ||
6 | * IO functions for an Interface MPC-1211 | ||
7 | */ | ||
8 | |||
9 | #ifndef _ASM_SH_IO_MPC1211_H | ||
10 | #define _ASM_SH_IO_MPC1211_H | ||
11 | |||
12 | #include <linux/time.h> | ||
13 | |||
14 | extern int mpc1211_irq_demux(int irq); | ||
15 | |||
16 | extern void init_mpc1211_IRQ(void); | ||
17 | extern void heartbeat_mpc1211(void); | ||
18 | |||
19 | extern void mpc1211_rtc_gettimeofday(struct timeval *tv); | ||
20 | extern int mpc1211_rtc_settimeofday(const struct timeval *tv); | ||
21 | |||
22 | #endif /* _ASM_SH_IO_MPC1211_H */ | ||
diff --git a/include/asm-sh/mpc1211/keyboard.h b/include/asm-sh/mpc1211/keyboard.h deleted file mode 100644 index 9020feee7b4c..000000000000 --- a/include/asm-sh/mpc1211/keyboard.h +++ /dev/null | |||
@@ -1,60 +0,0 @@ | |||
1 | /* | ||
2 | * MPC1211 specific keybord definitions | ||
3 | * Taken from the old asm-i386/keybord.h for PC/AT-style definitions | ||
4 | * created 3 Nov 1996 by Geert Uytterhoeven. | ||
5 | */ | ||
6 | |||
7 | #ifdef __KERNEL__ | ||
8 | |||
9 | #include <linux/kernel.h> | ||
10 | #include <linux/ioport.h> | ||
11 | #include <linux/kd.h> | ||
12 | #include <linux/pm.h> | ||
13 | #include <asm/io.h> | ||
14 | |||
15 | #define KEYBOARD_IRQ 1 | ||
16 | #define DISABLE_KBD_DURING_INTERRUPTS 0 | ||
17 | |||
18 | extern int pckbd_setkeycode(unsigned int scancode, unsigned int keycode); | ||
19 | extern int pckbd_getkeycode(unsigned int scancode); | ||
20 | extern int pckbd_translate(unsigned char scancode, unsigned char *keycode, | ||
21 | char raw_mode); | ||
22 | extern char pckbd_unexpected_up(unsigned char keycode); | ||
23 | extern void pckbd_leds(unsigned char leds); | ||
24 | extern void pckbd_init_hw(void); | ||
25 | extern int pckbd_pm_resume(struct pm_dev *, pm_request_t, void *); | ||
26 | extern pm_callback pm_kbd_request_override; | ||
27 | |||
28 | #define kbd_setkeycode pckbd_setkeycode | ||
29 | #define kbd_getkeycode pckbd_getkeycode | ||
30 | #define kbd_translate pckbd_translate | ||
31 | #define kbd_unexpected_up pckbd_unexpected_up | ||
32 | #define kbd_leds pckbd_leds | ||
33 | #define kbd_init_hw pckbd_init_hw | ||
34 | |||
35 | /* resource allocation */ | ||
36 | #define kbd_request_region() | ||
37 | #define kbd_request_irq(handler) request_irq(KEYBOARD_IRQ, handler, 0, \ | ||
38 | "keyboard", NULL) | ||
39 | |||
40 | /* How to access the keyboard macros on this platform. */ | ||
41 | #define kbd_read_input() inb(KBD_DATA_REG) | ||
42 | #define kbd_read_status() inb(KBD_STATUS_REG) | ||
43 | #define kbd_write_output(val) outb(val, KBD_DATA_REG) | ||
44 | #define kbd_write_command(val) outb(val, KBD_CNTL_REG) | ||
45 | |||
46 | /* Some stoneage hardware needs delays after some operations. */ | ||
47 | #define kbd_pause() do { } while(0) | ||
48 | |||
49 | /* | ||
50 | * Machine specific bits for the PS/2 driver | ||
51 | */ | ||
52 | |||
53 | #define AUX_IRQ 12 | ||
54 | |||
55 | #define aux_request_irq(hand, dev_id) \ | ||
56 | request_irq(AUX_IRQ, hand, IRQF_SHARED, "PS2 Mouse", dev_id) | ||
57 | |||
58 | #define aux_free_irq(dev_id) free_irq(AUX_IRQ, dev_id) | ||
59 | |||
60 | #endif /* __KERNEL__ */ | ||
diff --git a/include/asm-sh/mpc1211/m1543c.h b/include/asm-sh/mpc1211/m1543c.h deleted file mode 100644 index c95d13236c3b..000000000000 --- a/include/asm-sh/mpc1211/m1543c.h +++ /dev/null | |||
@@ -1,200 +0,0 @@ | |||
1 | #ifndef __ASM_SH_M1543C_H | ||
2 | #define __ASM_SH_M1543C_H | ||
3 | |||
4 | /* | ||
5 | * linux/include/asm-sh/m1543c.h | ||
6 | * Copyright (C) 2001 Nobuhiro Sakawa | ||
7 | * M1543C:PCI-ISA Bus Bridge with Super IO Chip support | ||
8 | * | ||
9 | * from | ||
10 | * | ||
11 | * linux/include/asm-sh/smc37c93x.h | ||
12 | * | ||
13 | * Copyright (C) 2000 Kazumoto Kojima | ||
14 | * | ||
15 | * SMSC 37C93x Super IO Chip support | ||
16 | */ | ||
17 | |||
18 | /* Default base I/O address */ | ||
19 | #define FDC_PRIMARY_BASE 0x3f0 | ||
20 | #define IDE1_PRIMARY_BASE 0x1f0 | ||
21 | #define IDE1_SECONDARY_BASE 0x170 | ||
22 | #define PARPORT_PRIMARY_BASE 0x378 | ||
23 | #define COM1_PRIMARY_BASE 0x2f8 | ||
24 | #define COM2_PRIMARY_BASE 0x3f8 | ||
25 | #define COM3_PRIMARY_BASE 0x3e8 | ||
26 | #define RTC_PRIMARY_BASE 0x070 | ||
27 | #define KBC_PRIMARY_BASE 0x060 | ||
28 | #define AUXIO_PRIMARY_BASE 0x000 /* XXX */ | ||
29 | #define I8259_M_CR 0x20 | ||
30 | #define I8259_M_MR 0x21 | ||
31 | #define I8259_S_CR 0xa0 | ||
32 | #define I8259_S_MR 0xa1 | ||
33 | |||
34 | /* Logical device number */ | ||
35 | #define LDN_FDC 0 | ||
36 | #define LDN_IDE1 1 | ||
37 | #define LDN_IDE2 2 | ||
38 | #define LDN_PARPORT 3 | ||
39 | #define LDN_COM1 4 | ||
40 | #define LDN_COM2 5 | ||
41 | #define LDN_COM3 11 | ||
42 | #define LDN_RTC 6 | ||
43 | #define LDN_KBC 7 | ||
44 | |||
45 | /* Configuration port and key */ | ||
46 | #define CONFIG_PORT 0x3f0 | ||
47 | #define INDEX_PORT CONFIG_PORT | ||
48 | #define DATA_PORT 0x3f1 | ||
49 | #define CONFIG_ENTER1 0x51 | ||
50 | #define CONFIG_ENTER2 0x23 | ||
51 | #define CONFIG_EXIT 0xbb | ||
52 | |||
53 | /* Configuration index */ | ||
54 | #define CURRENT_LDN_INDEX 0x07 | ||
55 | #define POWER_CONTROL_INDEX 0x22 | ||
56 | #define ACTIVATE_INDEX 0x30 | ||
57 | #define IO_BASE_HI_INDEX 0x60 | ||
58 | #define IO_BASE_LO_INDEX 0x61 | ||
59 | #define IRQ_SELECT_INDEX 0x70 | ||
60 | #define PS2_IRQ_INDEX 0x72 | ||
61 | #define DMA_SELECT_INDEX 0x74 | ||
62 | |||
63 | /* UART stuff. Only for debugging. */ | ||
64 | /* UART Register */ | ||
65 | |||
66 | #define UART_RBR 0x0 /* Receiver Buffer Register (Read Only) */ | ||
67 | #define UART_THR 0x0 /* Transmitter Holding Register (Write Only) */ | ||
68 | #define UART_IER 0x2 /* Interrupt Enable Register */ | ||
69 | #define UART_IIR 0x4 /* Interrupt Ident Register (Read Only) */ | ||
70 | #define UART_FCR 0x4 /* FIFO Control Register (Write Only) */ | ||
71 | #define UART_LCR 0x6 /* Line Control Register */ | ||
72 | #define UART_MCR 0x8 /* MODEM Control Register */ | ||
73 | #define UART_LSR 0xa /* Line Status Register */ | ||
74 | #define UART_MSR 0xc /* MODEM Status Register */ | ||
75 | #define UART_SCR 0xe /* Scratch Register */ | ||
76 | #define UART_DLL 0x0 /* Divisor Latch (LS) */ | ||
77 | #define UART_DLM 0x2 /* Divisor Latch (MS) */ | ||
78 | |||
79 | #ifndef __ASSEMBLY__ | ||
80 | typedef struct uart_reg { | ||
81 | volatile __u16 rbr; | ||
82 | volatile __u16 ier; | ||
83 | volatile __u16 iir; | ||
84 | volatile __u16 lcr; | ||
85 | volatile __u16 mcr; | ||
86 | volatile __u16 lsr; | ||
87 | volatile __u16 msr; | ||
88 | volatile __u16 scr; | ||
89 | } uart_reg; | ||
90 | #endif /* ! __ASSEMBLY__ */ | ||
91 | |||
92 | /* Alias for Write Only Register */ | ||
93 | |||
94 | #define thr rbr | ||
95 | #define tcr iir | ||
96 | |||
97 | /* Alias for Divisor Latch Register */ | ||
98 | |||
99 | #define dll rbr | ||
100 | #define dlm ier | ||
101 | #define fcr iir | ||
102 | |||
103 | /* Interrupt Enable Register */ | ||
104 | |||
105 | #define IER_ERDAI 0x0100 /* Enable Received Data Available Interrupt */ | ||
106 | #define IER_ETHREI 0x0200 /* Enable Transmitter Holding Register Empty Interrupt */ | ||
107 | #define IER_ELSI 0x0400 /* Enable Receiver Line Status Interrupt */ | ||
108 | #define IER_EMSI 0x0800 /* Enable MODEM Status Interrupt */ | ||
109 | |||
110 | /* Interrupt Ident Register */ | ||
111 | |||
112 | #define IIR_IP 0x0100 /* "0" if Interrupt Pending */ | ||
113 | #define IIR_IIB0 0x0200 /* Interrupt ID Bit 0 */ | ||
114 | #define IIR_IIB1 0x0400 /* Interrupt ID Bit 1 */ | ||
115 | #define IIR_IIB2 0x0800 /* Interrupt ID Bit 2 */ | ||
116 | #define IIR_FIFO 0xc000 /* FIFOs enabled */ | ||
117 | |||
118 | /* FIFO Control Register */ | ||
119 | |||
120 | #define FCR_FEN 0x0100 /* FIFO enable */ | ||
121 | #define FCR_RFRES 0x0200 /* Receiver FIFO reset */ | ||
122 | #define FCR_TFRES 0x0400 /* Transmitter FIFO reset */ | ||
123 | #define FCR_DMA 0x0800 /* DMA mode select */ | ||
124 | #define FCR_RTL 0x4000 /* Receiver triger (LSB) */ | ||
125 | #define FCR_RTM 0x8000 /* Receiver triger (MSB) */ | ||
126 | |||
127 | /* Line Control Register */ | ||
128 | |||
129 | #define LCR_WLS0 0x0100 /* Word Length Select Bit 0 */ | ||
130 | #define LCR_WLS1 0x0200 /* Word Length Select Bit 1 */ | ||
131 | #define LCR_STB 0x0400 /* Number of Stop Bits */ | ||
132 | #define LCR_PEN 0x0800 /* Parity Enable */ | ||
133 | #define LCR_EPS 0x1000 /* Even Parity Select */ | ||
134 | #define LCR_SP 0x2000 /* Stick Parity */ | ||
135 | #define LCR_SB 0x4000 /* Set Break */ | ||
136 | #define LCR_DLAB 0x8000 /* Divisor Latch Access Bit */ | ||
137 | |||
138 | /* MODEM Control Register */ | ||
139 | |||
140 | #define MCR_DTR 0x0100 /* Data Terminal Ready */ | ||
141 | #define MCR_RTS 0x0200 /* Request to Send */ | ||
142 | #define MCR_OUT1 0x0400 /* Out 1 */ | ||
143 | #define MCR_IRQEN 0x0800 /* IRQ Enable */ | ||
144 | #define MCR_LOOP 0x1000 /* Loop */ | ||
145 | |||
146 | /* Line Status Register */ | ||
147 | |||
148 | #define LSR_DR 0x0100 /* Data Ready */ | ||
149 | #define LSR_OE 0x0200 /* Overrun Error */ | ||
150 | #define LSR_PE 0x0400 /* Parity Error */ | ||
151 | #define LSR_FE 0x0800 /* Framing Error */ | ||
152 | #define LSR_BI 0x1000 /* Break Interrupt */ | ||
153 | #define LSR_THRE 0x2000 /* Transmitter Holding Register Empty */ | ||
154 | #define LSR_TEMT 0x4000 /* Transmitter Empty */ | ||
155 | #define LSR_FIFOE 0x8000 /* Receiver FIFO error */ | ||
156 | |||
157 | /* MODEM Status Register */ | ||
158 | |||
159 | #define MSR_DCTS 0x0100 /* Delta Clear to Send */ | ||
160 | #define MSR_DDSR 0x0200 /* Delta Data Set Ready */ | ||
161 | #define MSR_TERI 0x0400 /* Trailing Edge Ring Indicator */ | ||
162 | #define MSR_DDCD 0x0800 /* Delta Data Carrier Detect */ | ||
163 | #define MSR_CTS 0x1000 /* Clear to Send */ | ||
164 | #define MSR_DSR 0x2000 /* Data Set Ready */ | ||
165 | #define MSR_RI 0x4000 /* Ring Indicator */ | ||
166 | #define MSR_DCD 0x8000 /* Data Carrier Detect */ | ||
167 | |||
168 | /* Baud Rate Divisor */ | ||
169 | |||
170 | #define UART_CLK (1843200) /* 1.8432 MHz */ | ||
171 | #define UART_BAUD(x) (UART_CLK / (16 * (x))) | ||
172 | |||
173 | /* RTC register definition */ | ||
174 | #define RTC_SECONDS 0 | ||
175 | #define RTC_SECONDS_ALARM 1 | ||
176 | #define RTC_MINUTES 2 | ||
177 | #define RTC_MINUTES_ALARM 3 | ||
178 | #define RTC_HOURS 4 | ||
179 | #define RTC_HOURS_ALARM 5 | ||
180 | #define RTC_DAY_OF_WEEK 6 | ||
181 | #define RTC_DAY_OF_MONTH 7 | ||
182 | #define RTC_MONTH 8 | ||
183 | #define RTC_YEAR 9 | ||
184 | #define RTC_FREQ_SELECT 10 | ||
185 | # define RTC_UIP 0x80 | ||
186 | # define RTC_DIV_CTL 0x70 | ||
187 | /* This RTC can work under 32.768KHz clock only. */ | ||
188 | # define RTC_OSC_ENABLE 0x20 | ||
189 | # define RTC_OSC_DISABLE 0x00 | ||
190 | #define RTC_CONTROL 11 | ||
191 | # define RTC_SET 0x80 | ||
192 | # define RTC_PIE 0x40 | ||
193 | # define RTC_AIE 0x20 | ||
194 | # define RTC_UIE 0x10 | ||
195 | # define RTC_SQWE 0x08 | ||
196 | # define RTC_DM_BINARY 0x04 | ||
197 | # define RTC_24H 0x02 | ||
198 | # define RTC_DST_EN 0x01 | ||
199 | |||
200 | #endif /* __ASM_SH_M1543C_H */ | ||
diff --git a/include/asm-sh/mpc1211/mc146818rtc.h b/include/asm-sh/mpc1211/mc146818rtc.h deleted file mode 100644 index e245f2a3cd78..000000000000 --- a/include/asm-sh/mpc1211/mc146818rtc.h +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | /* | ||
2 | * MPC1211 uses PC/AT style RTC definitions. | ||
3 | */ | ||
4 | #include <asm-x86/mc146818rtc_32.h> | ||
5 | |||
6 | |||
diff --git a/include/asm-sh/mpc1211/mpc1211.h b/include/asm-sh/mpc1211/mpc1211.h deleted file mode 100644 index fa456c3e4e01..000000000000 --- a/include/asm-sh/mpc1211/mpc1211.h +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | #ifndef __ASM_SH_MPC1211_H | ||
2 | #define __ASM_SH_MPC1211_H | ||
3 | |||
4 | /* | ||
5 | * linux/include/asm-sh/mpc1211.h | ||
6 | * | ||
7 | * Copyright (C) 2001 Saito.K & Jeanne | ||
8 | * | ||
9 | * Interface MPC-1211 support | ||
10 | */ | ||
11 | |||
12 | #define PA_PCI_IO (0xa4000000) /* PCI I/O space */ | ||
13 | #define PA_PCI_MEM (0xb0000000) /* PCI MEM space */ | ||
14 | |||
15 | #define PCIPAR (0xa4000cf8) /* PCI Config address */ | ||
16 | #define PCIPDR (0xa4000cfc) /* PCI Config data */ | ||
17 | |||
18 | #endif /* __ASM_SH_MPC1211_H */ | ||
diff --git a/include/asm-sh/mpc1211/pci.h b/include/asm-sh/mpc1211/pci.h deleted file mode 100644 index d9162c5ed76a..000000000000 --- a/include/asm-sh/mpc1211/pci.h +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | /* | ||
2 | * Low-Level PCI Support for MPC-1211 | ||
3 | * | ||
4 | * (c) 2002 Saito.K & Jeanne | ||
5 | * | ||
6 | */ | ||
7 | |||
8 | #ifndef _PCI_MPC1211_H_ | ||
9 | #define _PCI_MPC1211_H_ | ||
10 | |||
11 | #include <linux/pci.h> | ||
12 | |||
13 | /* set debug level 4=verbose...1=terse */ | ||
14 | //#define DEBUG_PCI 3 | ||
15 | #undef DEBUG_PCI | ||
16 | |||
17 | #ifdef DEBUG_PCI | ||
18 | #define PCIDBG(n, x...) { if(DEBUG_PCI>=n) printk(x); } | ||
19 | #else | ||
20 | #define PCIDBG(n, x...) | ||
21 | #endif | ||
22 | |||
23 | /* startup values */ | ||
24 | #define PCI_PROBE_BIOS 1 | ||
25 | #define PCI_PROBE_CONF1 2 | ||
26 | #define PCI_PROBE_CONF2 4 | ||
27 | #define PCI_NO_CHECKS 0x400 | ||
28 | #define PCI_ASSIGN_ROMS 0x1000 | ||
29 | #define PCI_BIOS_IRQ_SCAN 0x2000 | ||
30 | |||
31 | /* MPC-1211 Specific Values */ | ||
32 | #define PCIPAR (0xa4000cf8) /* PCI Config address */ | ||
33 | #define PCIPDR (0xa4000cfc) /* PCI Config data */ | ||
34 | |||
35 | #define PA_PCI_IO (0xa4000000) /* PCI I/O space */ | ||
36 | #define PA_PCI_MEM (0xb0000000) /* PCI MEM space */ | ||
37 | |||
38 | #endif /* _PCI_MPC1211_H_ */ | ||
diff --git a/include/asm-sh/r7780rp.h b/include/asm-sh/r7780rp.h index a33838f23a6d..306f7359f7d4 100644 --- a/include/asm-sh/r7780rp.h +++ b/include/asm-sh/r7780rp.h | |||
@@ -193,8 +193,6 @@ | |||
193 | #define IRQ_SCIF0 (HL_FPGA_IRQ_BASE + 15) | 193 | #define IRQ_SCIF0 (HL_FPGA_IRQ_BASE + 15) |
194 | #define IRQ_SCIF1 (HL_FPGA_IRQ_BASE + 16) | 194 | #define IRQ_SCIF1 (HL_FPGA_IRQ_BASE + 16) |
195 | 195 | ||
196 | unsigned char *highlander_init_irq_r7780mp(void); | 196 | unsigned char *highlander_plat_irq_setup(void); |
197 | unsigned char *highlander_init_irq_r7780rp(void); | ||
198 | unsigned char *highlander_init_irq_r7785rp(void); | ||
199 | 197 | ||
200 | #endif /* __ASM_SH_RENESAS_R7780RP */ | 198 | #endif /* __ASM_SH_RENESAS_R7780RP */ |
diff --git a/include/asm-sh/tlb_64.h b/include/asm-sh/tlb_64.h index 0308e05fc57b..0a96f3af69e3 100644 --- a/include/asm-sh/tlb_64.h +++ b/include/asm-sh/tlb_64.h | |||
@@ -56,6 +56,7 @@ static inline void __flush_tlb_slot(unsigned long long slot) | |||
56 | __asm__ __volatile__ ("putcfg %0, 0, r63\n" : : "r" (slot)); | 56 | __asm__ __volatile__ ("putcfg %0, 0, r63\n" : : "r" (slot)); |
57 | } | 57 | } |
58 | 58 | ||
59 | #ifdef CONFIG_MMU | ||
59 | /* arch/sh64/mm/tlb.c */ | 60 | /* arch/sh64/mm/tlb.c */ |
60 | int sh64_tlb_init(void); | 61 | int sh64_tlb_init(void); |
61 | unsigned long long sh64_next_free_dtlb_entry(void); | 62 | unsigned long long sh64_next_free_dtlb_entry(void); |
@@ -64,6 +65,13 @@ int sh64_put_wired_dtlb_entry(unsigned long long entry); | |||
64 | void sh64_setup_tlb_slot(unsigned long long config_addr, unsigned long eaddr, | 65 | void sh64_setup_tlb_slot(unsigned long long config_addr, unsigned long eaddr, |
65 | unsigned long asid, unsigned long paddr); | 66 | unsigned long asid, unsigned long paddr); |
66 | void sh64_teardown_tlb_slot(unsigned long long config_addr); | 67 | void sh64_teardown_tlb_slot(unsigned long long config_addr); |
67 | 68 | #else | |
69 | #define sh64_tlb_init() do { } while (0) | ||
70 | #define sh64_next_free_dtlb_entry() (0) | ||
71 | #define sh64_get_wired_dtlb_entry() (0) | ||
72 | #define sh64_put_wired_dtlb_entry(entry) do { } while (0) | ||
73 | #define sh64_setup_tlb_slot(conf, virt, asid, phys) do { } while (0) | ||
74 | #define sh64_teardown_tlb_slot(addr) do { } while (0) | ||
75 | #endif /* CONFIG_MMU */ | ||
68 | #endif /* __ASSEMBLY__ */ | 76 | #endif /* __ASSEMBLY__ */ |
69 | #endif /* __ASM_SH_TLB_64_H */ | 77 | #endif /* __ASM_SH_TLB_64_H */ |
diff --git a/include/asm-sh/topology.h b/include/asm-sh/topology.h index 34cdb28e8f44..95f0085e098a 100644 --- a/include/asm-sh/topology.h +++ b/include/asm-sh/topology.h | |||
@@ -29,6 +29,17 @@ | |||
29 | .nr_balance_failed = 0, \ | 29 | .nr_balance_failed = 0, \ |
30 | } | 30 | } |
31 | 31 | ||
32 | #define cpu_to_node(cpu) ((void)(cpu),0) | ||
33 | #define parent_node(node) ((void)(node),0) | ||
34 | |||
35 | #define node_to_cpumask(node) ((void)node, cpu_online_map) | ||
36 | #define node_to_first_cpu(node) ((void)(node),0) | ||
37 | |||
38 | #define pcibus_to_node(bus) ((void)(bus), -1) | ||
39 | #define pcibus_to_cpumask(bus) (pcibus_to_node(bus) == -1 ? \ | ||
40 | CPU_MASK_ALL : \ | ||
41 | node_to_cpumask(pcibus_to_node(bus)) \ | ||
42 | ) | ||
32 | #endif | 43 | #endif |
33 | 44 | ||
34 | #include <asm-generic/topology.h> | 45 | #include <asm-generic/topology.h> |
diff --git a/include/asm-sh/uaccess_64.h b/include/asm-sh/uaccess_64.h index f956b7b316c7..a9b68d094844 100644 --- a/include/asm-sh/uaccess_64.h +++ b/include/asm-sh/uaccess_64.h | |||
@@ -274,7 +274,9 @@ struct exception_table_entry | |||
274 | unsigned long insn, fixup; | 274 | unsigned long insn, fixup; |
275 | }; | 275 | }; |
276 | 276 | ||
277 | #ifdef CONFIG_MMU | ||
277 | #define ARCH_HAS_SEARCH_EXTABLE | 278 | #define ARCH_HAS_SEARCH_EXTABLE |
279 | #endif | ||
278 | 280 | ||
279 | /* Returns 0 if exception not found and fixup.unit otherwise. */ | 281 | /* Returns 0 if exception not found and fixup.unit otherwise. */ |
280 | extern unsigned long search_exception_table(unsigned long addr); | 282 | extern unsigned long search_exception_table(unsigned long addr); |
diff --git a/include/asm-sparc/mman.h b/include/asm-sparc/mman.h index e18be984c01d..3d16b40bb8ef 100644 --- a/include/asm-sparc/mman.h +++ b/include/asm-sparc/mman.h | |||
@@ -24,9 +24,8 @@ | |||
24 | 24 | ||
25 | #ifdef __KERNEL__ | 25 | #ifdef __KERNEL__ |
26 | #ifndef __ASSEMBLY__ | 26 | #ifndef __ASSEMBLY__ |
27 | #define arch_mmap_check sparc_mmap_check | 27 | #define arch_mmap_check(addr,len,flags) sparc_mmap_check(addr,len) |
28 | int sparc_mmap_check(unsigned long addr, unsigned long len, | 28 | int sparc_mmap_check(unsigned long addr, unsigned long len); |
29 | unsigned long flags); | ||
30 | #endif | 29 | #endif |
31 | #endif | 30 | #endif |
32 | 31 | ||
diff --git a/include/asm-sparc/psr.h b/include/asm-sparc/psr.h index 19c978051118..213970477a24 100644 --- a/include/asm-sparc/psr.h +++ b/include/asm-sparc/psr.h | |||
@@ -25,6 +25,7 @@ | |||
25 | #define PSR_PIL 0x00000f00 /* processor interrupt level */ | 25 | #define PSR_PIL 0x00000f00 /* processor interrupt level */ |
26 | #define PSR_EF 0x00001000 /* enable floating point */ | 26 | #define PSR_EF 0x00001000 /* enable floating point */ |
27 | #define PSR_EC 0x00002000 /* enable co-processor */ | 27 | #define PSR_EC 0x00002000 /* enable co-processor */ |
28 | #define PSR_SYSCALL 0x00004000 /* inside of a syscall */ | ||
28 | #define PSR_LE 0x00008000 /* SuperSparcII little-endian */ | 29 | #define PSR_LE 0x00008000 /* SuperSparcII little-endian */ |
29 | #define PSR_ICC 0x00f00000 /* integer condition codes */ | 30 | #define PSR_ICC 0x00f00000 /* integer condition codes */ |
30 | #define PSR_C 0x00100000 /* carry bit */ | 31 | #define PSR_C 0x00100000 /* carry bit */ |
diff --git a/include/asm-sparc/ptrace.h b/include/asm-sparc/ptrace.h index 8201a7b29d49..0afb867d6c1b 100644 --- a/include/asm-sparc/ptrace.h +++ b/include/asm-sparc/ptrace.h | |||
@@ -10,6 +10,8 @@ | |||
10 | 10 | ||
11 | #ifndef __ASSEMBLY__ | 11 | #ifndef __ASSEMBLY__ |
12 | 12 | ||
13 | #include <linux/types.h> | ||
14 | |||
13 | struct pt_regs { | 15 | struct pt_regs { |
14 | unsigned long psr; | 16 | unsigned long psr; |
15 | unsigned long pc; | 17 | unsigned long pc; |
@@ -39,6 +41,16 @@ struct pt_regs { | |||
39 | #define UREG_FP UREG_I6 | 41 | #define UREG_FP UREG_I6 |
40 | #define UREG_RETPC UREG_I7 | 42 | #define UREG_RETPC UREG_I7 |
41 | 43 | ||
44 | static inline bool pt_regs_is_syscall(struct pt_regs *regs) | ||
45 | { | ||
46 | return (regs->psr & PSR_SYSCALL); | ||
47 | } | ||
48 | |||
49 | static inline bool pt_regs_clear_syscall(struct pt_regs *regs) | ||
50 | { | ||
51 | return (regs->psr &= ~PSR_SYSCALL); | ||
52 | } | ||
53 | |||
42 | /* A register window */ | 54 | /* A register window */ |
43 | struct reg_window { | 55 | struct reg_window { |
44 | unsigned long locals[8]; | 56 | unsigned long locals[8]; |
@@ -149,6 +161,7 @@ extern void show_regs(struct pt_regs *); | |||
149 | #define SF_XXARG 0x5c | 161 | #define SF_XXARG 0x5c |
150 | 162 | ||
151 | /* Stuff for the ptrace system call */ | 163 | /* Stuff for the ptrace system call */ |
164 | #define PTRACE_SPARC_DETACH 11 | ||
152 | #define PTRACE_GETREGS 12 | 165 | #define PTRACE_GETREGS 12 |
153 | #define PTRACE_SETREGS 13 | 166 | #define PTRACE_SETREGS 13 |
154 | #define PTRACE_GETFPREGS 14 | 167 | #define PTRACE_GETFPREGS 14 |
diff --git a/include/asm-sparc/signal.h b/include/asm-sparc/signal.h index d03a21c97abb..94071c75701f 100644 --- a/include/asm-sparc/signal.h +++ b/include/asm-sparc/signal.h | |||
@@ -199,13 +199,7 @@ typedef struct sigaltstack { | |||
199 | size_t ss_size; | 199 | size_t ss_size; |
200 | } stack_t; | 200 | } stack_t; |
201 | 201 | ||
202 | struct sparc_deliver_cookie { | 202 | #define ptrace_signal_deliver(regs, cookie) do { } while (0) |
203 | int restart_syscall; | ||
204 | unsigned long orig_i0; | ||
205 | }; | ||
206 | |||
207 | struct pt_regs; | ||
208 | extern void ptrace_signal_deliver(struct pt_regs *regs, void *cookie); | ||
209 | 203 | ||
210 | #endif /* !(__KERNEL__) */ | 204 | #endif /* !(__KERNEL__) */ |
211 | 205 | ||
diff --git a/include/asm-sparc64/mman.h b/include/asm-sparc64/mman.h index e584563b56eb..625be4d61baf 100644 --- a/include/asm-sparc64/mman.h +++ b/include/asm-sparc64/mman.h | |||
@@ -24,9 +24,8 @@ | |||
24 | 24 | ||
25 | #ifdef __KERNEL__ | 25 | #ifdef __KERNEL__ |
26 | #ifndef __ASSEMBLY__ | 26 | #ifndef __ASSEMBLY__ |
27 | #define arch_mmap_check sparc64_mmap_check | 27 | #define arch_mmap_check(addr,len,flags) sparc64_mmap_check(addr,len) |
28 | int sparc64_mmap_check(unsigned long addr, unsigned long len, | 28 | int sparc64_mmap_check(unsigned long addr, unsigned long len); |
29 | unsigned long flags); | ||
30 | #endif | 29 | #endif |
31 | #endif | 30 | #endif |
32 | 31 | ||
diff --git a/include/asm-sparc64/psrcompat.h b/include/asm-sparc64/psrcompat.h index 5590ce6bd076..3614ca04753f 100644 --- a/include/asm-sparc64/psrcompat.h +++ b/include/asm-sparc64/psrcompat.h | |||
@@ -12,6 +12,7 @@ | |||
12 | #define PSR_PIL 0x00000f00 /* processor interrupt level */ | 12 | #define PSR_PIL 0x00000f00 /* processor interrupt level */ |
13 | #define PSR_EF 0x00001000 /* enable floating point */ | 13 | #define PSR_EF 0x00001000 /* enable floating point */ |
14 | #define PSR_EC 0x00002000 /* enable co-processor */ | 14 | #define PSR_EC 0x00002000 /* enable co-processor */ |
15 | #define PSR_SYSCALL 0x00004000 /* inside of a syscall */ | ||
15 | #define PSR_LE 0x00008000 /* SuperSparcII little-endian */ | 16 | #define PSR_LE 0x00008000 /* SuperSparcII little-endian */ |
16 | #define PSR_ICC 0x00f00000 /* integer condition codes */ | 17 | #define PSR_ICC 0x00f00000 /* integer condition codes */ |
17 | #define PSR_C 0x00100000 /* carry bit */ | 18 | #define PSR_C 0x00100000 /* carry bit */ |
@@ -30,6 +31,7 @@ static inline unsigned int tstate_to_psr(unsigned long tstate) | |||
30 | PSR_S | | 31 | PSR_S | |
31 | ((tstate & TSTATE_ICC) >> 12) | | 32 | ((tstate & TSTATE_ICC) >> 12) | |
32 | ((tstate & TSTATE_XCC) >> 20) | | 33 | ((tstate & TSTATE_XCC) >> 20) | |
34 | ((tstate & TSTATE_SYSCALL) ? PSR_SYSCALL : 0) | | ||
33 | PSR_V8PLUS); | 35 | PSR_V8PLUS); |
34 | } | 36 | } |
35 | 37 | ||
diff --git a/include/asm-sparc64/pstate.h b/include/asm-sparc64/pstate.h index f3c45484c636..949aebaf991d 100644 --- a/include/asm-sparc64/pstate.h +++ b/include/asm-sparc64/pstate.h | |||
@@ -62,6 +62,7 @@ | |||
62 | #define TSTATE_PRIV _AC(0x0000000000000400,UL) /* Privilege. */ | 62 | #define TSTATE_PRIV _AC(0x0000000000000400,UL) /* Privilege. */ |
63 | #define TSTATE_IE _AC(0x0000000000000200,UL) /* Interrupt Enable. */ | 63 | #define TSTATE_IE _AC(0x0000000000000200,UL) /* Interrupt Enable. */ |
64 | #define TSTATE_AG _AC(0x0000000000000100,UL) /* Alternate Globals.*/ | 64 | #define TSTATE_AG _AC(0x0000000000000100,UL) /* Alternate Globals.*/ |
65 | #define TSTATE_SYSCALL _AC(0x0000000000000020,UL) /* in syscall trap */ | ||
65 | #define TSTATE_CWP _AC(0x000000000000001f,UL) /* Curr Win-Pointer. */ | 66 | #define TSTATE_CWP _AC(0x000000000000001f,UL) /* Curr Win-Pointer. */ |
66 | 67 | ||
67 | /* Floating-Point Registers State Register. | 68 | /* Floating-Point Registers State Register. |
diff --git a/include/asm-sparc64/ptrace.h b/include/asm-sparc64/ptrace.h index 714b81956f32..90972a5ada59 100644 --- a/include/asm-sparc64/ptrace.h +++ b/include/asm-sparc64/ptrace.h | |||
@@ -42,16 +42,14 @@ static inline int pt_regs_trap_type(struct pt_regs *regs) | |||
42 | return regs->magic & 0x1ff; | 42 | return regs->magic & 0x1ff; |
43 | } | 43 | } |
44 | 44 | ||
45 | static inline int pt_regs_clear_trap_type(struct pt_regs *regs) | 45 | static inline bool pt_regs_is_syscall(struct pt_regs *regs) |
46 | { | 46 | { |
47 | return regs->magic &= ~0x1ff; | 47 | return (regs->tstate & TSTATE_SYSCALL); |
48 | } | 48 | } |
49 | 49 | ||
50 | static inline bool pt_regs_is_syscall(struct pt_regs *regs) | 50 | static inline bool pt_regs_clear_syscall(struct pt_regs *regs) |
51 | { | 51 | { |
52 | int tt = pt_regs_trap_type(regs); | 52 | return (regs->tstate &= ~TSTATE_SYSCALL); |
53 | |||
54 | return (tt == 0x110 || tt == 0x111 || tt == 0x16d); | ||
55 | } | 53 | } |
56 | 54 | ||
57 | struct pt_regs32 { | 55 | struct pt_regs32 { |
@@ -298,6 +296,7 @@ extern void __show_regs(struct pt_regs *); | |||
298 | #define SF_XXARG 0x5c | 296 | #define SF_XXARG 0x5c |
299 | 297 | ||
300 | /* Stuff for the ptrace system call */ | 298 | /* Stuff for the ptrace system call */ |
299 | #define PTRACE_SPARC_DETACH 11 | ||
301 | #define PTRACE_GETREGS 12 | 300 | #define PTRACE_GETREGS 12 |
302 | #define PTRACE_SETREGS 13 | 301 | #define PTRACE_SETREGS 13 |
303 | #define PTRACE_GETFPREGS 14 | 302 | #define PTRACE_GETFPREGS 14 |
diff --git a/include/asm-sparc64/signal.h b/include/asm-sparc64/signal.h index fa6f467389db..c49f32d38707 100644 --- a/include/asm-sparc64/signal.h +++ b/include/asm-sparc64/signal.h | |||
@@ -186,13 +186,7 @@ struct k_sigaction { | |||
186 | void __user *ka_restorer; | 186 | void __user *ka_restorer; |
187 | }; | 187 | }; |
188 | 188 | ||
189 | struct signal_deliver_cookie { | 189 | #define ptrace_signal_deliver(regs, cookie) do { } while (0) |
190 | int restart_syscall; | ||
191 | unsigned long orig_i0; | ||
192 | }; | ||
193 | |||
194 | struct pt_regs; | ||
195 | extern void ptrace_signal_deliver(struct pt_regs *regs, void *cookie); | ||
196 | 190 | ||
197 | #endif /* !(__KERNEL__) */ | 191 | #endif /* !(__KERNEL__) */ |
198 | 192 | ||
diff --git a/include/asm-sparc64/thread_info.h b/include/asm-sparc64/thread_info.h index 71e42d1a80d9..e5873e385306 100644 --- a/include/asm-sparc64/thread_info.h +++ b/include/asm-sparc64/thread_info.h | |||
@@ -38,7 +38,7 @@ struct thread_info { | |||
38 | struct task_struct *task; | 38 | struct task_struct *task; |
39 | unsigned long flags; | 39 | unsigned long flags; |
40 | __u8 fpsaved[7]; | 40 | __u8 fpsaved[7]; |
41 | __u8 pad; | 41 | __u8 status; |
42 | unsigned long ksp; | 42 | unsigned long ksp; |
43 | 43 | ||
44 | /* D$ line 2 */ | 44 | /* D$ line 2 */ |
@@ -217,7 +217,7 @@ register struct thread_info *current_thread_info_reg asm("g6"); | |||
217 | * nop | 217 | * nop |
218 | */ | 218 | */ |
219 | #define TIF_SYSCALL_TRACE 0 /* syscall trace active */ | 219 | #define TIF_SYSCALL_TRACE 0 /* syscall trace active */ |
220 | #define TIF_RESTORE_SIGMASK 1 /* restore signal mask in do_signal() */ | 220 | /* flags bit 1 is available */ |
221 | #define TIF_SIGPENDING 2 /* signal pending */ | 221 | #define TIF_SIGPENDING 2 /* signal pending */ |
222 | #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ | 222 | #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ |
223 | #define TIF_PERFCTR 4 /* performance counters active */ | 223 | #define TIF_PERFCTR 4 /* performance counters active */ |
@@ -244,14 +244,34 @@ register struct thread_info *current_thread_info_reg asm("g6"); | |||
244 | #define _TIF_32BIT (1<<TIF_32BIT) | 244 | #define _TIF_32BIT (1<<TIF_32BIT) |
245 | #define _TIF_SECCOMP (1<<TIF_SECCOMP) | 245 | #define _TIF_SECCOMP (1<<TIF_SECCOMP) |
246 | #define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT) | 246 | #define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT) |
247 | #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK) | ||
248 | #define _TIF_ABI_PENDING (1<<TIF_ABI_PENDING) | 247 | #define _TIF_ABI_PENDING (1<<TIF_ABI_PENDING) |
249 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) | 248 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) |
250 | 249 | ||
251 | #define _TIF_USER_WORK_MASK ((0xff << TI_FLAG_WSAVED_SHIFT) | \ | 250 | #define _TIF_USER_WORK_MASK ((0xff << TI_FLAG_WSAVED_SHIFT) | \ |
252 | (_TIF_SIGPENDING | _TIF_RESTORE_SIGMASK | \ | 251 | (_TIF_SIGPENDING | \ |
253 | _TIF_NEED_RESCHED | _TIF_PERFCTR)) | 252 | _TIF_NEED_RESCHED | _TIF_PERFCTR)) |
254 | 253 | ||
254 | /* | ||
255 | * Thread-synchronous status. | ||
256 | * | ||
257 | * This is different from the flags in that nobody else | ||
258 | * ever touches our thread-synchronous status, so we don't | ||
259 | * have to worry about atomic accesses. | ||
260 | * | ||
261 | * Note that there are only 8 bits available. | ||
262 | */ | ||
263 | #define TS_RESTORE_SIGMASK 0x0001 /* restore signal mask in do_signal() */ | ||
264 | |||
265 | #ifndef __ASSEMBLY__ | ||
266 | #define HAVE_SET_RESTORE_SIGMASK 1 | ||
267 | static inline void set_restore_sigmask(void) | ||
268 | { | ||
269 | struct thread_info *ti = current_thread_info(); | ||
270 | ti->status |= TS_RESTORE_SIGMASK; | ||
271 | set_bit(TIF_SIGPENDING, &ti->flags); | ||
272 | } | ||
273 | #endif /* !__ASSEMBLY__ */ | ||
274 | |||
255 | #endif /* __KERNEL__ */ | 275 | #endif /* __KERNEL__ */ |
256 | 276 | ||
257 | #endif /* _ASM_THREAD_INFO_H */ | 277 | #endif /* _ASM_THREAD_INFO_H */ |
diff --git a/include/asm-sparc64/ttable.h b/include/asm-sparc64/ttable.h index 1b55538b944f..52d67d394107 100644 --- a/include/asm-sparc64/ttable.h +++ b/include/asm-sparc64/ttable.h | |||
@@ -91,13 +91,14 @@ | |||
91 | nop; | 91 | nop; |
92 | 92 | ||
93 | #define SYSCALL_TRAP(routine, systbl) \ | 93 | #define SYSCALL_TRAP(routine, systbl) \ |
94 | rdpr %pil, %g2; \ | ||
95 | mov TSTATE_SYSCALL, %g3; \ | ||
94 | sethi %hi(109f), %g7; \ | 96 | sethi %hi(109f), %g7; \ |
95 | ba,pt %xcc, etrap; \ | 97 | ba,pt %xcc, etrap_syscall; \ |
96 | 109: or %g7, %lo(109b), %g7; \ | 98 | 109: or %g7, %lo(109b), %g7; \ |
97 | sethi %hi(systbl), %l7; \ | 99 | sethi %hi(systbl), %l7; \ |
98 | ba,pt %xcc, routine; \ | 100 | ba,pt %xcc, routine; \ |
99 | or %l7, %lo(systbl), %l7; \ | 101 | or %l7, %lo(systbl), %l7; |
100 | nop; nop; | ||
101 | 102 | ||
102 | #define TRAP_UTRAP(handler,lvl) \ | 103 | #define TRAP_UTRAP(handler,lvl) \ |
103 | mov handler, %g3; \ | 104 | mov handler, %g3; \ |
diff --git a/include/asm-um/irq.h b/include/asm-um/irq.h index de389a477cdd..4a2037f8204b 100644 --- a/include/asm-um/irq.h +++ b/include/asm-um/irq.h | |||
@@ -15,8 +15,9 @@ | |||
15 | #define SIGIO_WRITE_IRQ 11 | 15 | #define SIGIO_WRITE_IRQ 11 |
16 | #define TELNETD_IRQ 12 | 16 | #define TELNETD_IRQ 12 |
17 | #define XTERM_IRQ 13 | 17 | #define XTERM_IRQ 13 |
18 | #define RANDOM_IRQ 14 | ||
18 | 19 | ||
19 | #define LAST_IRQ XTERM_IRQ | 20 | #define LAST_IRQ RANDOM_IRQ |
20 | #define NR_IRQS (LAST_IRQ + 1) | 21 | #define NR_IRQS (LAST_IRQ + 1) |
21 | 22 | ||
22 | #endif | 23 | #endif |
diff --git a/include/asm-um/keyboard.h b/include/asm-um/keyboard.h deleted file mode 100644 index ee2e2303d0e4..000000000000 --- a/include/asm-um/keyboard.h +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | #ifndef __UM_KEYBOARD_H | ||
2 | #define __UM_KEYBOARD_H | ||
3 | |||
4 | #include "asm/arch/keyboard.h" | ||
5 | |||
6 | #endif | ||
diff --git a/include/asm-um/page.h b/include/asm-um/page.h index 381f96b1c825..916e1a61999f 100644 --- a/include/asm-um/page.h +++ b/include/asm-um/page.h | |||
@@ -7,16 +7,20 @@ | |||
7 | #ifndef __UM_PAGE_H | 7 | #ifndef __UM_PAGE_H |
8 | #define __UM_PAGE_H | 8 | #define __UM_PAGE_H |
9 | 9 | ||
10 | struct page; | 10 | #include <linux/const.h> |
11 | |||
12 | #include <linux/types.h> | ||
13 | #include <asm/vm-flags.h> | ||
14 | 11 | ||
15 | /* PAGE_SHIFT determines the page size */ | 12 | /* PAGE_SHIFT determines the page size */ |
16 | #define PAGE_SHIFT 12 | 13 | #define PAGE_SHIFT 12 |
17 | #define PAGE_SIZE (1UL << PAGE_SHIFT) | 14 | #define PAGE_SIZE (_AC(1, UL) << PAGE_SHIFT) |
18 | #define PAGE_MASK (~(PAGE_SIZE-1)) | 15 | #define PAGE_MASK (~(PAGE_SIZE-1)) |
19 | 16 | ||
17 | #ifndef __ASSEMBLY__ | ||
18 | |||
19 | struct page; | ||
20 | |||
21 | #include <linux/types.h> | ||
22 | #include <asm/vm-flags.h> | ||
23 | |||
20 | /* | 24 | /* |
21 | * These are used to make use of C type-checking.. | 25 | * These are used to make use of C type-checking.. |
22 | */ | 26 | */ |
@@ -120,4 +124,5 @@ extern struct page *arch_validate(struct page *page, gfp_t mask, int order); | |||
120 | #include <asm-generic/memory_model.h> | 124 | #include <asm-generic/memory_model.h> |
121 | #include <asm-generic/page.h> | 125 | #include <asm-generic/page.h> |
122 | 126 | ||
123 | #endif | 127 | #endif /* __ASSEMBLY__ */ |
128 | #endif /* __UM_PAGE_H */ | ||
diff --git a/include/asm-um/param.h b/include/asm-um/param.h index 4cd4a226f8c1..e44f4e60d16d 100644 --- a/include/asm-um/param.h +++ b/include/asm-um/param.h | |||
@@ -13,6 +13,8 @@ | |||
13 | #define HZ CONFIG_HZ | 13 | #define HZ CONFIG_HZ |
14 | #define USER_HZ 100 /* .. some user interfaces are in "ticks" */ | 14 | #define USER_HZ 100 /* .. some user interfaces are in "ticks" */ |
15 | #define CLOCKS_PER_SEC (USER_HZ) /* frequency at which times() counts */ | 15 | #define CLOCKS_PER_SEC (USER_HZ) /* frequency at which times() counts */ |
16 | #else | ||
17 | #define HZ 100 | ||
16 | #endif | 18 | #endif |
17 | 19 | ||
18 | #endif | 20 | #endif |
diff --git a/include/asm-v850/param.h b/include/asm-v850/param.h index 281832690290..4391f5fe0204 100644 --- a/include/asm-v850/param.h +++ b/include/asm-v850/param.h | |||
@@ -26,6 +26,8 @@ | |||
26 | # define HZ CONFIG_HZ | 26 | # define HZ CONFIG_HZ |
27 | # define USER_HZ 100 | 27 | # define USER_HZ 100 |
28 | # define CLOCKS_PER_SEC USER_HZ | 28 | # define CLOCKS_PER_SEC USER_HZ |
29 | #else | ||
30 | # define HZ 100 | ||
29 | #endif | 31 | #endif |
30 | 32 | ||
31 | #endif /* __V850_PARAM_H__ */ | 33 | #endif /* __V850_PARAM_H__ */ |
diff --git a/include/asm-x86/bitops.h b/include/asm-x86/bitops.h index b81a4d4d3337..ee4b3ead6a43 100644 --- a/include/asm-x86/bitops.h +++ b/include/asm-x86/bitops.h | |||
@@ -23,13 +23,10 @@ | |||
23 | #if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 1) | 23 | #if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 1) |
24 | /* Technically wrong, but this avoids compilation errors on some gcc | 24 | /* Technically wrong, but this avoids compilation errors on some gcc |
25 | versions. */ | 25 | versions. */ |
26 | #define ADDR "=m" (*(volatile long *)addr) | 26 | #define ADDR "=m" (*(volatile long *) addr) |
27 | #define BIT_ADDR "=m" (((volatile int *)addr)[nr >> 5]) | ||
28 | #else | 27 | #else |
29 | #define ADDR "+m" (*(volatile long *) addr) | 28 | #define ADDR "+m" (*(volatile long *) addr) |
30 | #define BIT_ADDR "+m" (((volatile int *)addr)[nr >> 5]) | ||
31 | #endif | 29 | #endif |
32 | #define BASE_ADDR "m" (*(volatile int *)addr) | ||
33 | 30 | ||
34 | /** | 31 | /** |
35 | * set_bit - Atomically set a bit in memory | 32 | * set_bit - Atomically set a bit in memory |
@@ -77,7 +74,7 @@ static inline void __set_bit(int nr, volatile void *addr) | |||
77 | */ | 74 | */ |
78 | static inline void clear_bit(int nr, volatile void *addr) | 75 | static inline void clear_bit(int nr, volatile void *addr) |
79 | { | 76 | { |
80 | asm volatile(LOCK_PREFIX "btr %1,%2" : BIT_ADDR : "Ir" (nr), BASE_ADDR); | 77 | asm volatile(LOCK_PREFIX "btr %1,%0" : ADDR : "Ir" (nr)); |
81 | } | 78 | } |
82 | 79 | ||
83 | /* | 80 | /* |
@@ -96,7 +93,7 @@ static inline void clear_bit_unlock(unsigned nr, volatile void *addr) | |||
96 | 93 | ||
97 | static inline void __clear_bit(int nr, volatile void *addr) | 94 | static inline void __clear_bit(int nr, volatile void *addr) |
98 | { | 95 | { |
99 | asm volatile("btr %1,%2" : BIT_ADDR : "Ir" (nr), BASE_ADDR); | 96 | asm volatile("btr %1,%0" : ADDR : "Ir" (nr)); |
100 | } | 97 | } |
101 | 98 | ||
102 | /* | 99 | /* |
@@ -131,7 +128,7 @@ static inline void __clear_bit_unlock(unsigned nr, volatile void *addr) | |||
131 | */ | 128 | */ |
132 | static inline void __change_bit(int nr, volatile void *addr) | 129 | static inline void __change_bit(int nr, volatile void *addr) |
133 | { | 130 | { |
134 | asm volatile("btc %1,%2" : BIT_ADDR : "Ir" (nr), BASE_ADDR); | 131 | asm volatile("btc %1,%0" : ADDR : "Ir" (nr)); |
135 | } | 132 | } |
136 | 133 | ||
137 | /** | 134 | /** |
@@ -145,7 +142,7 @@ static inline void __change_bit(int nr, volatile void *addr) | |||
145 | */ | 142 | */ |
146 | static inline void change_bit(int nr, volatile void *addr) | 143 | static inline void change_bit(int nr, volatile void *addr) |
147 | { | 144 | { |
148 | asm volatile(LOCK_PREFIX "btc %1,%2" : BIT_ADDR : "Ir" (nr), BASE_ADDR); | 145 | asm volatile(LOCK_PREFIX "btc %1,%0" : ADDR : "Ir" (nr)); |
149 | } | 146 | } |
150 | 147 | ||
151 | /** | 148 | /** |
@@ -191,9 +188,10 @@ static inline int __test_and_set_bit(int nr, volatile void *addr) | |||
191 | { | 188 | { |
192 | int oldbit; | 189 | int oldbit; |
193 | 190 | ||
194 | asm volatile("bts %2,%3\n\t" | 191 | asm("bts %2,%1\n\t" |
195 | "sbb %0,%0" | 192 | "sbb %0,%0" |
196 | : "=r" (oldbit), BIT_ADDR : "Ir" (nr), BASE_ADDR); | 193 | : "=r" (oldbit), ADDR |
194 | : "Ir" (nr)); | ||
197 | return oldbit; | 195 | return oldbit; |
198 | } | 196 | } |
199 | 197 | ||
@@ -229,9 +227,10 @@ static inline int __test_and_clear_bit(int nr, volatile void *addr) | |||
229 | { | 227 | { |
230 | int oldbit; | 228 | int oldbit; |
231 | 229 | ||
232 | asm volatile("btr %2,%3\n\t" | 230 | asm volatile("btr %2,%1\n\t" |
233 | "sbb %0,%0" | 231 | "sbb %0,%0" |
234 | : "=r" (oldbit), BIT_ADDR : "Ir" (nr), BASE_ADDR); | 232 | : "=r" (oldbit), ADDR |
233 | : "Ir" (nr)); | ||
235 | return oldbit; | 234 | return oldbit; |
236 | } | 235 | } |
237 | 236 | ||
@@ -240,9 +239,10 @@ static inline int __test_and_change_bit(int nr, volatile void *addr) | |||
240 | { | 239 | { |
241 | int oldbit; | 240 | int oldbit; |
242 | 241 | ||
243 | asm volatile("btc %2,%3\n\t" | 242 | asm volatile("btc %2,%1\n\t" |
244 | "sbb %0,%0" | 243 | "sbb %0,%0" |
245 | : "=r" (oldbit), BIT_ADDR : "Ir" (nr), BASE_ADDR); | 244 | : "=r" (oldbit), ADDR |
245 | : "Ir" (nr) : "memory"); | ||
246 | 246 | ||
247 | return oldbit; | 247 | return oldbit; |
248 | } | 248 | } |
@@ -276,11 +276,10 @@ static inline int variable_test_bit(int nr, volatile const void *addr) | |||
276 | { | 276 | { |
277 | int oldbit; | 277 | int oldbit; |
278 | 278 | ||
279 | asm volatile("bt %2,%3\n\t" | 279 | asm volatile("bt %2,%1\n\t" |
280 | "sbb %0,%0" | 280 | "sbb %0,%0" |
281 | : "=r" (oldbit) | 281 | : "=r" (oldbit) |
282 | : "m" (((volatile const int *)addr)[nr >> 5]), | 282 | : "m" (*(unsigned long *)addr), "Ir" (nr)); |
283 | "Ir" (nr), BASE_ADDR); | ||
284 | 283 | ||
285 | return oldbit; | 284 | return oldbit; |
286 | } | 285 | } |
@@ -397,8 +396,6 @@ static inline int fls(int x) | |||
397 | } | 396 | } |
398 | #endif /* __KERNEL__ */ | 397 | #endif /* __KERNEL__ */ |
399 | 398 | ||
400 | #undef BASE_ADDR | ||
401 | #undef BIT_ADDR | ||
402 | #undef ADDR | 399 | #undef ADDR |
403 | 400 | ||
404 | static inline void set_bit_string(unsigned long *bitmap, | 401 | static inline void set_bit_string(unsigned long *bitmap, |
diff --git a/include/asm-x86/geode.h b/include/asm-x86/geode.h index 7154dc4de951..6e6458853a36 100644 --- a/include/asm-x86/geode.h +++ b/include/asm-x86/geode.h | |||
@@ -185,16 +185,14 @@ static inline int is_geode(void) | |||
185 | return (is_geode_gx() || is_geode_lx()); | 185 | return (is_geode_gx() || is_geode_lx()); |
186 | } | 186 | } |
187 | 187 | ||
188 | /* | 188 | #ifdef CONFIG_MGEODE_LX |
189 | * The VSA has virtual registers that we can query for a signature. | 189 | extern int geode_has_vsa2(void); |
190 | */ | 190 | #else |
191 | static inline int geode_has_vsa2(void) | 191 | static inline int geode_has_vsa2(void) |
192 | { | 192 | { |
193 | outw(VSA_VR_UNLOCK, VSA_VRC_INDEX); | 193 | return 0; |
194 | outw(VSA_VR_SIGNATURE, VSA_VRC_INDEX); | ||
195 | |||
196 | return (inw(VSA_VRC_DATA) == VSA_SIG); | ||
197 | } | 194 | } |
195 | #endif | ||
198 | 196 | ||
199 | /* MFGPTs */ | 197 | /* MFGPTs */ |
200 | 198 | ||
diff --git a/include/asm-x86/i387.h b/include/asm-x86/i387.h index da2adb45f6e3..6b722d315936 100644 --- a/include/asm-x86/i387.h +++ b/include/asm-x86/i387.h | |||
@@ -175,7 +175,15 @@ static inline int save_i387(struct _fpstate __user *buf) | |||
175 | */ | 175 | */ |
176 | static inline int restore_i387(struct _fpstate __user *buf) | 176 | static inline int restore_i387(struct _fpstate __user *buf) |
177 | { | 177 | { |
178 | set_used_math(); | 178 | struct task_struct *tsk = current; |
179 | int err; | ||
180 | |||
181 | if (!used_math()) { | ||
182 | err = init_fpu(tsk); | ||
183 | if (err) | ||
184 | return err; | ||
185 | } | ||
186 | |||
179 | if (!(task_thread_info(current)->status & TS_USEDFPU)) { | 187 | if (!(task_thread_info(current)->status & TS_USEDFPU)) { |
180 | clts(); | 188 | clts(); |
181 | task_thread_info(current)->status |= TS_USEDFPU; | 189 | task_thread_info(current)->status |= TS_USEDFPU; |
diff --git a/include/asm-x86/pat.h b/include/asm-x86/pat.h index 8b822b5a1786..88f60cc6a227 100644 --- a/include/asm-x86/pat.h +++ b/include/asm-x86/pat.h | |||
@@ -4,7 +4,13 @@ | |||
4 | 4 | ||
5 | #include <linux/types.h> | 5 | #include <linux/types.h> |
6 | 6 | ||
7 | #ifdef CONFIG_X86_PAT | ||
7 | extern int pat_wc_enabled; | 8 | extern int pat_wc_enabled; |
9 | extern void validate_pat_support(struct cpuinfo_x86 *c); | ||
10 | #else | ||
11 | static const int pat_wc_enabled = 0; | ||
12 | static inline void validate_pat_support(struct cpuinfo_x86 *c) { } | ||
13 | #endif | ||
8 | 14 | ||
9 | extern void pat_init(void); | 15 | extern void pat_init(void); |
10 | 16 | ||
@@ -12,5 +18,7 @@ extern int reserve_memtype(u64 start, u64 end, | |||
12 | unsigned long req_type, unsigned long *ret_type); | 18 | unsigned long req_type, unsigned long *ret_type); |
13 | extern int free_memtype(u64 start, u64 end); | 19 | extern int free_memtype(u64 start, u64 end); |
14 | 20 | ||
21 | extern void pat_disable(char *reason); | ||
22 | |||
15 | #endif | 23 | #endif |
16 | 24 | ||
diff --git a/include/asm-x86/pgtable.h b/include/asm-x86/pgtable.h index 801b31f71452..55c3a0e3a8ce 100644 --- a/include/asm-x86/pgtable.h +++ b/include/asm-x86/pgtable.h | |||
@@ -57,7 +57,8 @@ | |||
57 | #define _KERNPG_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | \ | 57 | #define _KERNPG_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | \ |
58 | _PAGE_DIRTY) | 58 | _PAGE_DIRTY) |
59 | 59 | ||
60 | #define _PAGE_CHG_MASK (PTE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY) | 60 | #define _PAGE_CHG_MASK (PTE_MASK | _PAGE_PCD | _PAGE_PWT | \ |
61 | _PAGE_ACCESSED | _PAGE_DIRTY) | ||
61 | 62 | ||
62 | #define _PAGE_CACHE_MASK (_PAGE_PCD | _PAGE_PWT) | 63 | #define _PAGE_CACHE_MASK (_PAGE_PCD | _PAGE_PWT) |
63 | #define _PAGE_CACHE_WB (0) | 64 | #define _PAGE_CACHE_WB (0) |
@@ -288,12 +289,21 @@ static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) | |||
288 | * Chop off the NX bit (if present), and add the NX portion of | 289 | * Chop off the NX bit (if present), and add the NX portion of |
289 | * the newprot (if present): | 290 | * the newprot (if present): |
290 | */ | 291 | */ |
291 | val &= _PAGE_CHG_MASK & ~_PAGE_NX; | 292 | val &= _PAGE_CHG_MASK; |
292 | val |= pgprot_val(newprot) & __supported_pte_mask; | 293 | val |= pgprot_val(newprot) & (~_PAGE_CHG_MASK) & __supported_pte_mask; |
293 | 294 | ||
294 | return __pte(val); | 295 | return __pte(val); |
295 | } | 296 | } |
296 | 297 | ||
298 | /* mprotect needs to preserve PAT bits when updating vm_page_prot */ | ||
299 | #define pgprot_modify pgprot_modify | ||
300 | static inline pgprot_t pgprot_modify(pgprot_t oldprot, pgprot_t newprot) | ||
301 | { | ||
302 | pgprotval_t preservebits = pgprot_val(oldprot) & _PAGE_CHG_MASK; | ||
303 | pgprotval_t addbits = pgprot_val(newprot); | ||
304 | return __pgprot(preservebits | addbits); | ||
305 | } | ||
306 | |||
297 | #define pte_pgprot(x) __pgprot(pte_val(x) & (0xfff | _PAGE_NX)) | 307 | #define pte_pgprot(x) __pgprot(pte_val(x) & (0xfff | _PAGE_NX)) |
298 | 308 | ||
299 | #define canon_pgprot(p) __pgprot(pgprot_val(p) & __supported_pte_mask) | 309 | #define canon_pgprot(p) __pgprot(pgprot_val(p) & __supported_pte_mask) |
diff --git a/include/asm-x86/pgtable_32.h b/include/asm-x86/pgtable_32.h index 577ab79c4c27..d7f0403bbecb 100644 --- a/include/asm-x86/pgtable_32.h +++ b/include/asm-x86/pgtable_32.h | |||
@@ -88,14 +88,7 @@ extern unsigned long pg0[]; | |||
88 | /* To avoid harmful races, pmd_none(x) should check only the lower when PAE */ | 88 | /* To avoid harmful races, pmd_none(x) should check only the lower when PAE */ |
89 | #define pmd_none(x) (!(unsigned long)pmd_val((x))) | 89 | #define pmd_none(x) (!(unsigned long)pmd_val((x))) |
90 | #define pmd_present(x) (pmd_val((x)) & _PAGE_PRESENT) | 90 | #define pmd_present(x) (pmd_val((x)) & _PAGE_PRESENT) |
91 | 91 | #define pmd_bad(x) ((pmd_val(x) & (~PAGE_MASK & ~_PAGE_USER)) != _KERNPG_TABLE) | |
92 | extern int pmd_bad(pmd_t pmd); | ||
93 | |||
94 | #define pmd_bad_v1(x) \ | ||
95 | (_KERNPG_TABLE != (pmd_val((x)) & ~(PAGE_MASK | _PAGE_USER))) | ||
96 | #define pmd_bad_v2(x) \ | ||
97 | (_KERNPG_TABLE != (pmd_val((x)) & ~(PAGE_MASK | _PAGE_USER | \ | ||
98 | _PAGE_PSE | _PAGE_NX))) | ||
99 | 92 | ||
100 | #define pages_to_mb(x) ((x) >> (20-PAGE_SHIFT)) | 93 | #define pages_to_mb(x) ((x) >> (20-PAGE_SHIFT)) |
101 | 94 | ||
diff --git a/include/asm-x86/pgtable_64.h b/include/asm-x86/pgtable_64.h index a3bbf8766c1d..efe83dcbd412 100644 --- a/include/asm-x86/pgtable_64.h +++ b/include/asm-x86/pgtable_64.h | |||
@@ -158,14 +158,12 @@ static inline unsigned long pgd_bad(pgd_t pgd) | |||
158 | 158 | ||
159 | static inline unsigned long pud_bad(pud_t pud) | 159 | static inline unsigned long pud_bad(pud_t pud) |
160 | { | 160 | { |
161 | return pud_val(pud) & | 161 | return pud_val(pud) & ~(PTE_MASK | _KERNPG_TABLE | _PAGE_USER); |
162 | ~(PTE_MASK | _KERNPG_TABLE | _PAGE_USER | _PAGE_PSE | _PAGE_NX); | ||
163 | } | 162 | } |
164 | 163 | ||
165 | static inline unsigned long pmd_bad(pmd_t pmd) | 164 | static inline unsigned long pmd_bad(pmd_t pmd) |
166 | { | 165 | { |
167 | return pmd_val(pmd) & | 166 | return pmd_val(pmd) & ~(PTE_MASK | _KERNPG_TABLE | _PAGE_USER); |
168 | ~(PTE_MASK | _KERNPG_TABLE | _PAGE_USER | _PAGE_PSE | _PAGE_NX); | ||
169 | } | 167 | } |
170 | 168 | ||
171 | #define pte_none(x) (!pte_val((x))) | 169 | #define pte_none(x) (!pte_val((x))) |
diff --git a/include/asm-x86/spinlock.h b/include/asm-x86/spinlock.h index bc6376f1bc5a..21e89bf92f1c 100644 --- a/include/asm-x86/spinlock.h +++ b/include/asm-x86/spinlock.h | |||
@@ -20,18 +20,8 @@ | |||
20 | */ | 20 | */ |
21 | 21 | ||
22 | #ifdef CONFIG_X86_32 | 22 | #ifdef CONFIG_X86_32 |
23 | typedef char _slock_t; | ||
24 | # define LOCK_INS_DEC "decb" | ||
25 | # define LOCK_INS_XCH "xchgb" | ||
26 | # define LOCK_INS_MOV "movb" | ||
27 | # define LOCK_INS_CMP "cmpb" | ||
28 | # define LOCK_PTR_REG "a" | 23 | # define LOCK_PTR_REG "a" |
29 | #else | 24 | #else |
30 | typedef int _slock_t; | ||
31 | # define LOCK_INS_DEC "decl" | ||
32 | # define LOCK_INS_XCH "xchgl" | ||
33 | # define LOCK_INS_MOV "movl" | ||
34 | # define LOCK_INS_CMP "cmpl" | ||
35 | # define LOCK_PTR_REG "D" | 25 | # define LOCK_PTR_REG "D" |
36 | #endif | 26 | #endif |
37 | 27 | ||
@@ -66,14 +56,14 @@ typedef int _slock_t; | |||
66 | #if (NR_CPUS < 256) | 56 | #if (NR_CPUS < 256) |
67 | static inline int __raw_spin_is_locked(raw_spinlock_t *lock) | 57 | static inline int __raw_spin_is_locked(raw_spinlock_t *lock) |
68 | { | 58 | { |
69 | int tmp = *(volatile signed int *)(&(lock)->slock); | 59 | int tmp = ACCESS_ONCE(lock->slock); |
70 | 60 | ||
71 | return (((tmp >> 8) & 0xff) != (tmp & 0xff)); | 61 | return (((tmp >> 8) & 0xff) != (tmp & 0xff)); |
72 | } | 62 | } |
73 | 63 | ||
74 | static inline int __raw_spin_is_contended(raw_spinlock_t *lock) | 64 | static inline int __raw_spin_is_contended(raw_spinlock_t *lock) |
75 | { | 65 | { |
76 | int tmp = *(volatile signed int *)(&(lock)->slock); | 66 | int tmp = ACCESS_ONCE(lock->slock); |
77 | 67 | ||
78 | return (((tmp >> 8) & 0xff) - (tmp & 0xff)) > 1; | 68 | return (((tmp >> 8) & 0xff) - (tmp & 0xff)) > 1; |
79 | } | 69 | } |
@@ -130,14 +120,14 @@ static __always_inline void __raw_spin_unlock(raw_spinlock_t *lock) | |||
130 | #else | 120 | #else |
131 | static inline int __raw_spin_is_locked(raw_spinlock_t *lock) | 121 | static inline int __raw_spin_is_locked(raw_spinlock_t *lock) |
132 | { | 122 | { |
133 | int tmp = *(volatile signed int *)(&(lock)->slock); | 123 | int tmp = ACCESS_ONCE(lock->slock); |
134 | 124 | ||
135 | return (((tmp >> 16) & 0xffff) != (tmp & 0xffff)); | 125 | return (((tmp >> 16) & 0xffff) != (tmp & 0xffff)); |
136 | } | 126 | } |
137 | 127 | ||
138 | static inline int __raw_spin_is_contended(raw_spinlock_t *lock) | 128 | static inline int __raw_spin_is_contended(raw_spinlock_t *lock) |
139 | { | 129 | { |
140 | int tmp = *(volatile signed int *)(&(lock)->slock); | 130 | int tmp = ACCESS_ONCE(lock->slock); |
141 | 131 | ||
142 | return (((tmp >> 16) & 0xffff) - (tmp & 0xffff)) > 1; | 132 | return (((tmp >> 16) & 0xffff) - (tmp & 0xffff)) > 1; |
143 | } | 133 | } |
diff --git a/include/asm-x86/topology.h b/include/asm-x86/topology.h index 4f35a0fb4f22..dcf3f8131d6b 100644 --- a/include/asm-x86/topology.h +++ b/include/asm-x86/topology.h | |||
@@ -25,6 +25,16 @@ | |||
25 | #ifndef _ASM_X86_TOPOLOGY_H | 25 | #ifndef _ASM_X86_TOPOLOGY_H |
26 | #define _ASM_X86_TOPOLOGY_H | 26 | #define _ASM_X86_TOPOLOGY_H |
27 | 27 | ||
28 | #ifdef CONFIG_X86_32 | ||
29 | # ifdef CONFIG_X86_HT | ||
30 | # define ENABLE_TOPO_DEFINES | ||
31 | # endif | ||
32 | #else | ||
33 | # ifdef CONFIG_SMP | ||
34 | # define ENABLE_TOPO_DEFINES | ||
35 | # endif | ||
36 | #endif | ||
37 | |||
28 | #ifdef CONFIG_NUMA | 38 | #ifdef CONFIG_NUMA |
29 | #include <linux/cpumask.h> | 39 | #include <linux/cpumask.h> |
30 | #include <asm/mpspec.h> | 40 | #include <asm/mpspec.h> |
@@ -130,10 +140,6 @@ extern unsigned long node_end_pfn[]; | |||
130 | extern unsigned long node_remap_size[]; | 140 | extern unsigned long node_remap_size[]; |
131 | #define node_has_online_mem(nid) (node_start_pfn[nid] != node_end_pfn[nid]) | 141 | #define node_has_online_mem(nid) (node_start_pfn[nid] != node_end_pfn[nid]) |
132 | 142 | ||
133 | # ifdef CONFIG_X86_HT | ||
134 | # define ENABLE_TOPO_DEFINES | ||
135 | # endif | ||
136 | |||
137 | # define SD_CACHE_NICE_TRIES 1 | 143 | # define SD_CACHE_NICE_TRIES 1 |
138 | # define SD_IDLE_IDX 1 | 144 | # define SD_IDLE_IDX 1 |
139 | # define SD_NEWIDLE_IDX 2 | 145 | # define SD_NEWIDLE_IDX 2 |
@@ -141,10 +147,6 @@ extern unsigned long node_remap_size[]; | |||
141 | 147 | ||
142 | #else | 148 | #else |
143 | 149 | ||
144 | # ifdef CONFIG_SMP | ||
145 | # define ENABLE_TOPO_DEFINES | ||
146 | # endif | ||
147 | |||
148 | # define SD_CACHE_NICE_TRIES 2 | 150 | # define SD_CACHE_NICE_TRIES 2 |
149 | # define SD_IDLE_IDX 2 | 151 | # define SD_IDLE_IDX 2 |
150 | # define SD_NEWIDLE_IDX 2 | 152 | # define SD_NEWIDLE_IDX 2 |
diff --git a/include/asm-xtensa/param.h b/include/asm-xtensa/param.h index 82ad34d92d35..ba03d5aeab6b 100644 --- a/include/asm-xtensa/param.h +++ b/include/asm-xtensa/param.h | |||
@@ -15,6 +15,8 @@ | |||
15 | # define HZ CONFIG_HZ /* internal timer frequency */ | 15 | # define HZ CONFIG_HZ /* internal timer frequency */ |
16 | # define USER_HZ 100 /* for user interfaces in "ticks" */ | 16 | # define USER_HZ 100 /* for user interfaces in "ticks" */ |
17 | # define CLOCKS_PER_SEC (USER_HZ) /* frequnzy at which times() counts */ | 17 | # define CLOCKS_PER_SEC (USER_HZ) /* frequnzy at which times() counts */ |
18 | #else | ||
19 | # define HZ 100 | ||
18 | #endif | 20 | #endif |
19 | 21 | ||
20 | #define EXEC_PAGESIZE 4096 | 22 | #define EXEC_PAGESIZE 4096 |
diff --git a/include/linux/atm.h b/include/linux/atm.h index 60136684e0af..c791ddd96939 100644 --- a/include/linux/atm.h +++ b/include/linux/atm.h | |||
@@ -16,14 +16,11 @@ | |||
16 | * documentation. Do not change them. | 16 | * documentation. Do not change them. |
17 | */ | 17 | */ |
18 | 18 | ||
19 | #ifdef __KERNEL__ | ||
20 | #include <linux/socket.h> | ||
21 | #include <linux/types.h> | ||
22 | #endif | ||
23 | #include <linux/compiler.h> | 19 | #include <linux/compiler.h> |
24 | #include <linux/atmapi.h> | 20 | #include <linux/atmapi.h> |
25 | #include <linux/atmsap.h> | 21 | #include <linux/atmsap.h> |
26 | #include <linux/atmioc.h> | 22 | #include <linux/atmioc.h> |
23 | #include <linux/types.h> | ||
27 | 24 | ||
28 | 25 | ||
29 | /* general ATM constants */ | 26 | /* general ATM constants */ |
@@ -212,7 +209,7 @@ struct sockaddr_atmsvc { | |||
212 | char pub[ATM_E164_LEN+1]; /* public address (E.164) */ | 209 | char pub[ATM_E164_LEN+1]; /* public address (E.164) */ |
213 | /* unused addresses must be bzero'ed */ | 210 | /* unused addresses must be bzero'ed */ |
214 | char lij_type; /* role in LIJ call; one of ATM_LIJ* */ | 211 | char lij_type; /* role in LIJ call; one of ATM_LIJ* */ |
215 | uint32_t lij_id; /* LIJ call identifier */ | 212 | __u32 lij_id; /* LIJ call identifier */ |
216 | } sas_addr __ATM_API_ALIGN; /* SVC address */ | 213 | } sas_addr __ATM_API_ALIGN; /* SVC address */ |
217 | }; | 214 | }; |
218 | 215 | ||
diff --git a/include/linux/atm_tcp.h b/include/linux/atm_tcp.h index 18787f9b2f19..375638f8554b 100644 --- a/include/linux/atm_tcp.h +++ b/include/linux/atm_tcp.h | |||
@@ -8,11 +8,9 @@ | |||
8 | #define LINUX_ATM_TCP_H | 8 | #define LINUX_ATM_TCP_H |
9 | 9 | ||
10 | #include <linux/atmapi.h> | 10 | #include <linux/atmapi.h> |
11 | 11 | #include <linux/atm.h> | |
12 | #ifdef __KERNEL__ | ||
13 | #include <linux/types.h> | ||
14 | #endif | ||
15 | #include <linux/atmioc.h> | 12 | #include <linux/atmioc.h> |
13 | #include <linux/types.h> | ||
16 | 14 | ||
17 | 15 | ||
18 | /* | 16 | /* |
@@ -20,9 +18,9 @@ | |||
20 | */ | 18 | */ |
21 | 19 | ||
22 | struct atmtcp_hdr { | 20 | struct atmtcp_hdr { |
23 | uint16_t vpi; | 21 | __u16 vpi; |
24 | uint16_t vci; | 22 | __u16 vci; |
25 | uint32_t length; /* ... of data part */ | 23 | __u32 length; /* ... of data part */ |
26 | }; | 24 | }; |
27 | 25 | ||
28 | /* | 26 | /* |
diff --git a/include/linux/bitmap.h b/include/linux/bitmap.h index 43b406def35f..1abfe664c444 100644 --- a/include/linux/bitmap.h +++ b/include/linux/bitmap.h | |||
@@ -110,7 +110,6 @@ extern int __bitmap_weight(const unsigned long *bitmap, int bits); | |||
110 | 110 | ||
111 | extern int bitmap_scnprintf(char *buf, unsigned int len, | 111 | extern int bitmap_scnprintf(char *buf, unsigned int len, |
112 | const unsigned long *src, int nbits); | 112 | const unsigned long *src, int nbits); |
113 | extern int bitmap_scnprintf_len(unsigned int len); | ||
114 | extern int __bitmap_parse(const char *buf, unsigned int buflen, int is_user, | 113 | extern int __bitmap_parse(const char *buf, unsigned int buflen, int is_user, |
115 | unsigned long *dst, int nbits); | 114 | unsigned long *dst, int nbits); |
116 | extern int bitmap_parse_user(const char __user *ubuf, unsigned int ulen, | 115 | extern int bitmap_parse_user(const char __user *ubuf, unsigned int ulen, |
diff --git a/include/linux/compiler.h b/include/linux/compiler.h index dcae0c8d97e6..c8bd2daf95ec 100644 --- a/include/linux/compiler.h +++ b/include/linux/compiler.h | |||
@@ -182,4 +182,16 @@ extern void __chk_io_ptr(const volatile void __iomem *); | |||
182 | # define __section(S) __attribute__ ((__section__(#S))) | 182 | # define __section(S) __attribute__ ((__section__(#S))) |
183 | #endif | 183 | #endif |
184 | 184 | ||
185 | /* | ||
186 | * Prevent the compiler from merging or refetching accesses. The compiler | ||
187 | * is also forbidden from reordering successive instances of ACCESS_ONCE(), | ||
188 | * but only when the compiler is aware of some particular ordering. One way | ||
189 | * to make the compiler aware of ordering is to put the two invocations of | ||
190 | * ACCESS_ONCE() in different C statements. | ||
191 | * | ||
192 | * This macro does absolutely -nothing- to prevent the CPU from reordering, | ||
193 | * merging, or refetching absolutely anything at any time. | ||
194 | */ | ||
195 | #define ACCESS_ONCE(x) (*(volatile typeof(x) *)&(x)) | ||
196 | |||
185 | #endif /* __LINUX_COMPILER_H */ | 197 | #endif /* __LINUX_COMPILER_H */ |
diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index 9650806fe2ea..5df3db58fcc6 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h | |||
@@ -289,13 +289,6 @@ static inline int __cpumask_scnprintf(char *buf, int len, | |||
289 | return bitmap_scnprintf(buf, len, srcp->bits, nbits); | 289 | return bitmap_scnprintf(buf, len, srcp->bits, nbits); |
290 | } | 290 | } |
291 | 291 | ||
292 | #define cpumask_scnprintf_len(len) \ | ||
293 | __cpumask_scnprintf_len((len)) | ||
294 | static inline int __cpumask_scnprintf_len(int len) | ||
295 | { | ||
296 | return bitmap_scnprintf_len(len); | ||
297 | } | ||
298 | |||
299 | #define cpumask_parse_user(ubuf, ulen, dst) \ | 292 | #define cpumask_parse_user(ubuf, ulen, dst) \ |
300 | __cpumask_parse_user((ubuf), (ulen), &(dst), NR_CPUS) | 293 | __cpumask_parse_user((ubuf), (ulen), &(dst), NR_CPUS) |
301 | static inline int __cpumask_parse_user(const char __user *buf, int len, | 294 | static inline int __cpumask_parse_user(const char __user *buf, int len, |
diff --git a/include/linux/device.h b/include/linux/device.h index 8c23e3dfe3ac..15e9fa3ad3af 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
@@ -183,7 +183,6 @@ struct class { | |||
183 | struct module *owner; | 183 | struct module *owner; |
184 | 184 | ||
185 | struct kset subsys; | 185 | struct kset subsys; |
186 | struct list_head children; | ||
187 | struct list_head devices; | 186 | struct list_head devices; |
188 | struct list_head interfaces; | 187 | struct list_head interfaces; |
189 | struct kset class_dirs; | 188 | struct kset class_dirs; |
diff --git a/include/linux/exportfs.h b/include/linux/exportfs.h index de8387b7ceb6..f5abd1306638 100644 --- a/include/linux/exportfs.h +++ b/include/linux/exportfs.h | |||
@@ -33,6 +33,19 @@ enum fid_type { | |||
33 | * 32 bit parent directory inode number. | 33 | * 32 bit parent directory inode number. |
34 | */ | 34 | */ |
35 | FILEID_INO32_GEN_PARENT = 2, | 35 | FILEID_INO32_GEN_PARENT = 2, |
36 | |||
37 | /* | ||
38 | * 32 bit block number, 16 bit partition reference, | ||
39 | * 16 bit unused, 32 bit generation number. | ||
40 | */ | ||
41 | FILEID_UDF_WITHOUT_PARENT = 0x51, | ||
42 | |||
43 | /* | ||
44 | * 32 bit block number, 16 bit partition reference, | ||
45 | * 16 bit unused, 32 bit generation number, | ||
46 | * 32 bit parent block number, 32 bit parent generation number | ||
47 | */ | ||
48 | FILEID_UDF_WITH_PARENT = 0x52, | ||
36 | }; | 49 | }; |
37 | 50 | ||
38 | struct fid { | 51 | struct fid { |
@@ -43,6 +56,14 @@ struct fid { | |||
43 | u32 parent_ino; | 56 | u32 parent_ino; |
44 | u32 parent_gen; | 57 | u32 parent_gen; |
45 | } i32; | 58 | } i32; |
59 | struct { | ||
60 | u32 block; | ||
61 | u16 partref; | ||
62 | u16 parent_partref; | ||
63 | u32 generation; | ||
64 | u32 parent_block; | ||
65 | u32 parent_generation; | ||
66 | } udf; | ||
46 | __u32 raw[0]; | 67 | __u32 raw[0]; |
47 | }; | 68 | }; |
48 | }; | 69 | }; |
diff --git a/include/linux/fs.h b/include/linux/fs.h index a1ba005d08e7..f413085f748e 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -1289,17 +1289,12 @@ extern ssize_t vfs_readv(struct file *, const struct iovec __user *, | |||
1289 | extern ssize_t vfs_writev(struct file *, const struct iovec __user *, | 1289 | extern ssize_t vfs_writev(struct file *, const struct iovec __user *, |
1290 | unsigned long, loff_t *); | 1290 | unsigned long, loff_t *); |
1291 | 1291 | ||
1292 | /* | ||
1293 | * NOTE: write_inode, delete_inode, clear_inode, put_inode can be called | ||
1294 | * without the big kernel lock held in all filesystems. | ||
1295 | */ | ||
1296 | struct super_operations { | 1292 | struct super_operations { |
1297 | struct inode *(*alloc_inode)(struct super_block *sb); | 1293 | struct inode *(*alloc_inode)(struct super_block *sb); |
1298 | void (*destroy_inode)(struct inode *); | 1294 | void (*destroy_inode)(struct inode *); |
1299 | 1295 | ||
1300 | void (*dirty_inode) (struct inode *); | 1296 | void (*dirty_inode) (struct inode *); |
1301 | int (*write_inode) (struct inode *, int); | 1297 | int (*write_inode) (struct inode *, int); |
1302 | void (*put_inode) (struct inode *); | ||
1303 | void (*drop_inode) (struct inode *); | 1298 | void (*drop_inode) (struct inode *); |
1304 | void (*delete_inode) (struct inode *); | 1299 | void (*delete_inode) (struct inode *); |
1305 | void (*put_super) (struct super_block *); | 1300 | void (*put_super) (struct super_block *); |
@@ -1821,7 +1816,6 @@ extern void iget_failed(struct inode *); | |||
1821 | extern void clear_inode(struct inode *); | 1816 | extern void clear_inode(struct inode *); |
1822 | extern void destroy_inode(struct inode *); | 1817 | extern void destroy_inode(struct inode *); |
1823 | extern struct inode *new_inode(struct super_block *); | 1818 | extern struct inode *new_inode(struct super_block *); |
1824 | extern int __remove_suid(struct dentry *, int); | ||
1825 | extern int should_remove_suid(struct dentry *); | 1819 | extern int should_remove_suid(struct dentry *); |
1826 | extern int remove_suid(struct dentry *); | 1820 | extern int remove_suid(struct dentry *); |
1827 | 1821 | ||
diff --git a/include/linux/fuse.h b/include/linux/fuse.h index 5c86f1196c3a..d48282197696 100644 --- a/include/linux/fuse.h +++ b/include/linux/fuse.h | |||
@@ -109,6 +109,7 @@ struct fuse_file_lock { | |||
109 | #define FUSE_POSIX_LOCKS (1 << 1) | 109 | #define FUSE_POSIX_LOCKS (1 << 1) |
110 | #define FUSE_FILE_OPS (1 << 2) | 110 | #define FUSE_FILE_OPS (1 << 2) |
111 | #define FUSE_ATOMIC_O_TRUNC (1 << 3) | 111 | #define FUSE_ATOMIC_O_TRUNC (1 << 3) |
112 | #define FUSE_BIG_WRITES (1 << 5) | ||
112 | 113 | ||
113 | /** | 114 | /** |
114 | * Release flags | 115 | * Release flags |
diff --git a/include/linux/genhd.h b/include/linux/genhd.h index ecd2bf63fc84..ae7aec3cabee 100644 --- a/include/linux/genhd.h +++ b/include/linux/genhd.h | |||
@@ -178,17 +178,17 @@ static inline struct hd_struct *get_part(struct gendisk *gendiskp, | |||
178 | 178 | ||
179 | static inline void disk_stat_set_all(struct gendisk *gendiskp, int value) { | 179 | static inline void disk_stat_set_all(struct gendisk *gendiskp, int value) { |
180 | int i; | 180 | int i; |
181 | |||
181 | for_each_possible_cpu(i) | 182 | for_each_possible_cpu(i) |
182 | memset(per_cpu_ptr(gendiskp->dkstats, i), value, | 183 | memset(per_cpu_ptr(gendiskp->dkstats, i), value, |
183 | sizeof (struct disk_stats)); | 184 | sizeof(struct disk_stats)); |
184 | } | 185 | } |
185 | 186 | ||
186 | #define __part_stat_add(part, field, addnd) \ | 187 | #define __part_stat_add(part, field, addnd) \ |
187 | (per_cpu_ptr(part->dkstats, smp_processor_id())->field += addnd) | 188 | (per_cpu_ptr(part->dkstats, smp_processor_id())->field += addnd) |
188 | 189 | ||
189 | #define __all_stat_add(gendiskp, field, addnd, sector) \ | 190 | #define __all_stat_add(gendiskp, part, field, addnd, sector) \ |
190 | ({ \ | 191 | ({ \ |
191 | struct hd_struct *part = get_part(gendiskp, sector); \ | ||
192 | if (part) \ | 192 | if (part) \ |
193 | __part_stat_add(part, field, addnd); \ | 193 | __part_stat_add(part, field, addnd); \ |
194 | __disk_stat_add(gendiskp, field, addnd); \ | 194 | __disk_stat_add(gendiskp, field, addnd); \ |
@@ -203,11 +203,13 @@ static inline void disk_stat_set_all(struct gendisk *gendiskp, int value) { | |||
203 | res; \ | 203 | res; \ |
204 | }) | 204 | }) |
205 | 205 | ||
206 | static inline void part_stat_set_all(struct hd_struct *part, int value) { | 206 | static inline void part_stat_set_all(struct hd_struct *part, int value) |
207 | { | ||
207 | int i; | 208 | int i; |
209 | |||
208 | for_each_possible_cpu(i) | 210 | for_each_possible_cpu(i) |
209 | memset(per_cpu_ptr(part->dkstats, i), value, | 211 | memset(per_cpu_ptr(part->dkstats, i), value, |
210 | sizeof(struct disk_stats)); | 212 | sizeof(struct disk_stats)); |
211 | } | 213 | } |
212 | 214 | ||
213 | #else /* !CONFIG_SMP */ | 215 | #else /* !CONFIG_SMP */ |
@@ -223,9 +225,8 @@ static inline void disk_stat_set_all(struct gendisk *gendiskp, int value) | |||
223 | #define __part_stat_add(part, field, addnd) \ | 225 | #define __part_stat_add(part, field, addnd) \ |
224 | (part->dkstats.field += addnd) | 226 | (part->dkstats.field += addnd) |
225 | 227 | ||
226 | #define __all_stat_add(gendiskp, field, addnd, sector) \ | 228 | #define __all_stat_add(gendiskp, part, field, addnd, sector) \ |
227 | ({ \ | 229 | ({ \ |
228 | struct hd_struct *part = get_part(gendiskp, sector); \ | ||
229 | if (part) \ | 230 | if (part) \ |
230 | part->dkstats.field += addnd; \ | 231 | part->dkstats.field += addnd; \ |
231 | __disk_stat_add(gendiskp, field, addnd); \ | 232 | __disk_stat_add(gendiskp, field, addnd); \ |
@@ -276,10 +277,10 @@ static inline void part_stat_set_all(struct hd_struct *part, int value) | |||
276 | #define part_stat_sub(gendiskp, field, subnd) \ | 277 | #define part_stat_sub(gendiskp, field, subnd) \ |
277 | part_stat_add(gendiskp, field, -subnd) | 278 | part_stat_add(gendiskp, field, -subnd) |
278 | 279 | ||
279 | #define all_stat_add(gendiskp, field, addnd, sector) \ | 280 | #define all_stat_add(gendiskp, part, field, addnd, sector) \ |
280 | do { \ | 281 | do { \ |
281 | preempt_disable(); \ | 282 | preempt_disable(); \ |
282 | __all_stat_add(gendiskp, field, addnd, sector); \ | 283 | __all_stat_add(gendiskp, part, field, addnd, sector); \ |
283 | preempt_enable(); \ | 284 | preempt_enable(); \ |
284 | } while (0) | 285 | } while (0) |
285 | 286 | ||
@@ -288,15 +289,15 @@ static inline void part_stat_set_all(struct hd_struct *part, int value) | |||
288 | #define all_stat_dec(gendiskp, field, sector) \ | 289 | #define all_stat_dec(gendiskp, field, sector) \ |
289 | all_stat_add(gendiskp, field, -1, sector) | 290 | all_stat_add(gendiskp, field, -1, sector) |
290 | 291 | ||
291 | #define __all_stat_inc(gendiskp, field, sector) \ | 292 | #define __all_stat_inc(gendiskp, part, field, sector) \ |
292 | __all_stat_add(gendiskp, field, 1, sector) | 293 | __all_stat_add(gendiskp, part, field, 1, sector) |
293 | #define all_stat_inc(gendiskp, field, sector) \ | 294 | #define all_stat_inc(gendiskp, part, field, sector) \ |
294 | all_stat_add(gendiskp, field, 1, sector) | 295 | all_stat_add(gendiskp, part, field, 1, sector) |
295 | 296 | ||
296 | #define __all_stat_sub(gendiskp, field, subnd, sector) \ | 297 | #define __all_stat_sub(gendiskp, part, field, subnd, sector) \ |
297 | __all_stat_add(gendiskp, field, -subnd, sector) | 298 | __all_stat_add(gendiskp, part, field, -subnd, sector) |
298 | #define all_stat_sub(gendiskp, field, subnd, sector) \ | 299 | #define all_stat_sub(gendiskp, part, field, subnd, sector) \ |
299 | all_stat_add(gendiskp, field, -subnd, sector) | 300 | all_stat_add(gendiskp, part, field, -subnd, sector) |
300 | 301 | ||
301 | /* Inlines to alloc and free disk stats in struct gendisk */ | 302 | /* Inlines to alloc and free disk stats in struct gendisk */ |
302 | #ifdef CONFIG_SMP | 303 | #ifdef CONFIG_SMP |
@@ -524,7 +525,7 @@ struct unixware_disklabel { | |||
524 | #define ADDPART_FLAG_RAID 1 | 525 | #define ADDPART_FLAG_RAID 1 |
525 | #define ADDPART_FLAG_WHOLEDISK 2 | 526 | #define ADDPART_FLAG_WHOLEDISK 2 |
526 | 527 | ||
527 | extern dev_t blk_lookup_devt(const char *name); | 528 | extern dev_t blk_lookup_devt(const char *name, int part); |
528 | extern char *disk_name (struct gendisk *hd, int part, char *buf); | 529 | extern char *disk_name (struct gendisk *hd, int part, char *buf); |
529 | 530 | ||
530 | extern int rescan_partitions(struct gendisk *disk, struct block_device *bdev); | 531 | extern int rescan_partitions(struct gendisk *disk, struct block_device *bdev); |
@@ -552,7 +553,7 @@ static inline struct block_device *bdget_disk(struct gendisk *disk, int index) | |||
552 | 553 | ||
553 | static inline void printk_all_partitions(void) { } | 554 | static inline void printk_all_partitions(void) { } |
554 | 555 | ||
555 | static inline dev_t blk_lookup_devt(const char *name) | 556 | static inline dev_t blk_lookup_devt(const char *name, int part) |
556 | { | 557 | { |
557 | dev_t devt = MKDEV(0, 0); | 558 | dev_t devt = MKDEV(0, 0); |
558 | return devt; | 559 | return devt; |
diff --git a/include/linux/hardirq.h b/include/linux/hardirq.h index 897f723bd222..181006cc94a0 100644 --- a/include/linux/hardirq.h +++ b/include/linux/hardirq.h | |||
@@ -72,6 +72,14 @@ | |||
72 | #define in_softirq() (softirq_count()) | 72 | #define in_softirq() (softirq_count()) |
73 | #define in_interrupt() (irq_count()) | 73 | #define in_interrupt() (irq_count()) |
74 | 74 | ||
75 | #if defined(CONFIG_PREEMPT) | ||
76 | # define PREEMPT_INATOMIC_BASE kernel_locked() | ||
77 | # define PREEMPT_CHECK_OFFSET 1 | ||
78 | #else | ||
79 | # define PREEMPT_INATOMIC_BASE 0 | ||
80 | # define PREEMPT_CHECK_OFFSET 0 | ||
81 | #endif | ||
82 | |||
75 | /* | 83 | /* |
76 | * Are we running in atomic context? WARNING: this macro cannot | 84 | * Are we running in atomic context? WARNING: this macro cannot |
77 | * always detect atomic context; in particular, it cannot know about | 85 | * always detect atomic context; in particular, it cannot know about |
@@ -79,17 +87,11 @@ | |||
79 | * used in the general case to determine whether sleeping is possible. | 87 | * used in the general case to determine whether sleeping is possible. |
80 | * Do not use in_atomic() in driver code. | 88 | * Do not use in_atomic() in driver code. |
81 | */ | 89 | */ |
82 | #define in_atomic() ((preempt_count() & ~PREEMPT_ACTIVE) != 0) | 90 | #define in_atomic() ((preempt_count() & ~PREEMPT_ACTIVE) != PREEMPT_INATOMIC_BASE) |
83 | |||
84 | #ifdef CONFIG_PREEMPT | ||
85 | # define PREEMPT_CHECK_OFFSET 1 | ||
86 | #else | ||
87 | # define PREEMPT_CHECK_OFFSET 0 | ||
88 | #endif | ||
89 | 91 | ||
90 | /* | 92 | /* |
91 | * Check whether we were atomic before we did preempt_disable(): | 93 | * Check whether we were atomic before we did preempt_disable(): |
92 | * (used by the scheduler) | 94 | * (used by the scheduler, *after* releasing the kernel lock) |
93 | */ | 95 | */ |
94 | #define in_atomic_preempt_off() \ | 96 | #define in_atomic_preempt_off() \ |
95 | ((preempt_count() & ~PREEMPT_ACTIVE) != PREEMPT_CHECK_OFFSET) | 97 | ((preempt_count() & ~PREEMPT_ACTIVE) != PREEMPT_CHECK_OFFSET) |
diff --git a/include/linux/i2c.h b/include/linux/i2c.h index cb63da5c2139..6716ec808c5e 100644 --- a/include/linux/i2c.h +++ b/include/linux/i2c.h | |||
@@ -262,7 +262,7 @@ i2c_new_probed_device(struct i2c_adapter *adap, | |||
262 | * client handles for the extra addresses. | 262 | * client handles for the extra addresses. |
263 | */ | 263 | */ |
264 | extern struct i2c_client * | 264 | extern struct i2c_client * |
265 | i2c_new_dummy(struct i2c_adapter *adap, u16 address, const char *type); | 265 | i2c_new_dummy(struct i2c_adapter *adap, u16 address); |
266 | 266 | ||
267 | extern void i2c_unregister_device(struct i2c_client *); | 267 | extern void i2c_unregister_device(struct i2c_client *); |
268 | 268 | ||
diff --git a/include/linux/ide.h b/include/linux/ide.h index b0135b0c3a04..f8f195c20da2 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
@@ -965,7 +965,6 @@ typedef struct ide_task_s { | |||
965 | void ide_tf_dump(const char *, struct ide_taskfile *); | 965 | void ide_tf_dump(const char *, struct ide_taskfile *); |
966 | 966 | ||
967 | extern void SELECT_DRIVE(ide_drive_t *); | 967 | extern void SELECT_DRIVE(ide_drive_t *); |
968 | extern void SELECT_MASK(ide_drive_t *, int); | ||
969 | 968 | ||
970 | extern int drive_is_ready(ide_drive_t *); | 969 | extern int drive_is_ready(ide_drive_t *); |
971 | 970 | ||
@@ -1058,8 +1057,8 @@ enum { | |||
1058 | IDE_HFLAG_NO_SET_MODE = (1 << 9), | 1057 | IDE_HFLAG_NO_SET_MODE = (1 << 9), |
1059 | /* trust BIOS for programming chipset/device for DMA */ | 1058 | /* trust BIOS for programming chipset/device for DMA */ |
1060 | IDE_HFLAG_TRUST_BIOS_FOR_DMA = (1 << 10), | 1059 | IDE_HFLAG_TRUST_BIOS_FOR_DMA = (1 << 10), |
1061 | /* host uses VDMA (tied with IDE_HFLAG_CS5520 for now) */ | 1060 | /* host is CS5510/CS5520 */ |
1062 | IDE_HFLAG_VDMA = (1 << 11), | 1061 | IDE_HFLAG_CS5520 = (1 << 11), |
1063 | /* ATAPI DMA is unsupported */ | 1062 | /* ATAPI DMA is unsupported */ |
1064 | IDE_HFLAG_NO_ATAPI_DMA = (1 << 12), | 1063 | IDE_HFLAG_NO_ATAPI_DMA = (1 << 12), |
1065 | /* set if host is a "non-bootable" controller */ | 1064 | /* set if host is a "non-bootable" controller */ |
@@ -1070,8 +1069,6 @@ enum { | |||
1070 | IDE_HFLAG_NO_AUTODMA = (1 << 15), | 1069 | IDE_HFLAG_NO_AUTODMA = (1 << 15), |
1071 | /* host uses MMIO */ | 1070 | /* host uses MMIO */ |
1072 | IDE_HFLAG_MMIO = (1 << 16), | 1071 | IDE_HFLAG_MMIO = (1 << 16), |
1073 | /* host is CS5510/CS5520 */ | ||
1074 | IDE_HFLAG_CS5520 = IDE_HFLAG_VDMA, | ||
1075 | /* no LBA48 */ | 1072 | /* no LBA48 */ |
1076 | IDE_HFLAG_NO_LBA48 = (1 << 17), | 1073 | IDE_HFLAG_NO_LBA48 = (1 << 17), |
1077 | /* no LBA48 DMA */ | 1074 | /* no LBA48 DMA */ |
@@ -1101,6 +1098,8 @@ enum { | |||
1101 | IDE_HFLAG_NO_IO_32BIT = (1 << 30), | 1098 | IDE_HFLAG_NO_IO_32BIT = (1 << 30), |
1102 | /* never unmask IRQs */ | 1099 | /* never unmask IRQs */ |
1103 | IDE_HFLAG_NO_UNMASK_IRQS = (1 << 31), | 1100 | IDE_HFLAG_NO_UNMASK_IRQS = (1 << 31), |
1101 | /* host uses VDMA (disabled for now) */ | ||
1102 | IDE_HFLAG_VDMA = 0, | ||
1104 | }; | 1103 | }; |
1105 | 1104 | ||
1106 | #ifdef CONFIG_BLK_DEV_OFFBOARD | 1105 | #ifdef CONFIG_BLK_DEV_OFFBOARD |
diff --git a/include/linux/io.h b/include/linux/io.h index 3a03a3604cce..6c7f0ba0d5fa 100644 --- a/include/linux/io.h +++ b/include/linux/io.h | |||
@@ -65,5 +65,6 @@ void __iomem *devm_ioremap_nocache(struct device *dev, resource_size_t offset, | |||
65 | void devm_iounmap(struct device *dev, void __iomem *addr); | 65 | void devm_iounmap(struct device *dev, void __iomem *addr); |
66 | int check_signature(const volatile void __iomem *io_addr, | 66 | int check_signature(const volatile void __iomem *io_addr, |
67 | const unsigned char *signature, int length); | 67 | const unsigned char *signature, int length); |
68 | void devm_ioremap_release(struct device *dev, void *res); | ||
68 | 69 | ||
69 | #endif /* _LINUX_IO_H */ | 70 | #endif /* _LINUX_IO_H */ |
diff --git a/include/linux/ioprio.h b/include/linux/ioprio.h index 2a3bb1bb7433..f98a656b17e5 100644 --- a/include/linux/ioprio.h +++ b/include/linux/ioprio.h | |||
@@ -68,6 +68,20 @@ static inline int task_nice_ioprio(struct task_struct *task) | |||
68 | } | 68 | } |
69 | 69 | ||
70 | /* | 70 | /* |
71 | * This is for the case where the task hasn't asked for a specific IO class. | ||
72 | * Check for idle and rt task process, and return appropriate IO class. | ||
73 | */ | ||
74 | static inline int task_nice_ioclass(struct task_struct *task) | ||
75 | { | ||
76 | if (task->policy == SCHED_IDLE) | ||
77 | return IOPRIO_CLASS_IDLE; | ||
78 | else if (task->policy == SCHED_FIFO || task->policy == SCHED_RR) | ||
79 | return IOPRIO_CLASS_RT; | ||
80 | else | ||
81 | return IOPRIO_CLASS_BE; | ||
82 | } | ||
83 | |||
84 | /* | ||
71 | * For inheritance, return the highest of the two given priorities | 85 | * For inheritance, return the highest of the two given priorities |
72 | */ | 86 | */ |
73 | extern int ioprio_best(unsigned short aprio, unsigned short bprio); | 87 | extern int ioprio_best(unsigned short aprio, unsigned short bprio); |
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 4d46e299afb5..792bf0aa779b 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
@@ -276,7 +276,17 @@ extern void print_hex_dump(const char *level, const char *prefix_str, | |||
276 | const void *buf, size_t len, bool ascii); | 276 | const void *buf, size_t len, bool ascii); |
277 | extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type, | 277 | extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type, |
278 | const void *buf, size_t len); | 278 | const void *buf, size_t len); |
279 | #define hex_asc(x) "0123456789abcdef"[x] | 279 | |
280 | extern const char hex_asc[]; | ||
281 | #define hex_asc_lo(x) hex_asc[((x) & 0x0f)] | ||
282 | #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4] | ||
283 | |||
284 | static inline char *pack_hex_byte(char *buf, u8 byte) | ||
285 | { | ||
286 | *buf++ = hex_asc_hi(byte); | ||
287 | *buf++ = hex_asc_lo(byte); | ||
288 | return buf; | ||
289 | } | ||
280 | 290 | ||
281 | #define pr_emerg(fmt, arg...) \ | 291 | #define pr_emerg(fmt, arg...) \ |
282 | printk(KERN_EMERG fmt, ##arg) | 292 | printk(KERN_EMERG fmt, ##arg) |
diff --git a/include/linux/kgdb.h b/include/linux/kgdb.h index 9757b1a6d9dc..6adcc297e354 100644 --- a/include/linux/kgdb.h +++ b/include/linux/kgdb.h | |||
@@ -261,10 +261,12 @@ struct kgdb_io { | |||
261 | 261 | ||
262 | extern struct kgdb_arch arch_kgdb_ops; | 262 | extern struct kgdb_arch arch_kgdb_ops; |
263 | 263 | ||
264 | extern unsigned long __weak kgdb_arch_pc(int exception, struct pt_regs *regs); | ||
265 | |||
264 | extern int kgdb_register_io_module(struct kgdb_io *local_kgdb_io_ops); | 266 | extern int kgdb_register_io_module(struct kgdb_io *local_kgdb_io_ops); |
265 | extern void kgdb_unregister_io_module(struct kgdb_io *local_kgdb_io_ops); | 267 | extern void kgdb_unregister_io_module(struct kgdb_io *local_kgdb_io_ops); |
266 | 268 | ||
267 | extern int kgdb_hex2long(char **ptr, long *long_val); | 269 | extern int kgdb_hex2long(char **ptr, unsigned long *long_val); |
268 | extern int kgdb_mem2hex(char *mem, char *buf, int count); | 270 | extern int kgdb_mem2hex(char *mem, char *buf, int count); |
269 | extern int kgdb_hex2mem(char *buf, char *mem, int count); | 271 | extern int kgdb_hex2mem(char *buf, char *mem, int count); |
270 | 272 | ||
diff --git a/include/linux/libata.h b/include/linux/libata.h index d1dfe872ee30..0f17643e0a6e 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
@@ -1039,6 +1039,7 @@ extern void ata_eh_thaw_port(struct ata_port *ap); | |||
1039 | 1039 | ||
1040 | extern void ata_eh_qc_complete(struct ata_queued_cmd *qc); | 1040 | extern void ata_eh_qc_complete(struct ata_queued_cmd *qc); |
1041 | extern void ata_eh_qc_retry(struct ata_queued_cmd *qc); | 1041 | extern void ata_eh_qc_retry(struct ata_queued_cmd *qc); |
1042 | extern void ata_eh_analyze_ncq_error(struct ata_link *link); | ||
1042 | 1043 | ||
1043 | extern void ata_do_eh(struct ata_port *ap, ata_prereset_fn_t prereset, | 1044 | extern void ata_do_eh(struct ata_port *ap, ata_prereset_fn_t prereset, |
1044 | ata_reset_fn_t softreset, ata_reset_fn_t hardreset, | 1045 | ata_reset_fn_t softreset, ata_reset_fn_t hardreset, |
@@ -1381,6 +1382,18 @@ static inline struct ata_port *ata_shost_to_port(struct Scsi_Host *host) | |||
1381 | return *(struct ata_port **)&host->hostdata[0]; | 1382 | return *(struct ata_port **)&host->hostdata[0]; |
1382 | } | 1383 | } |
1383 | 1384 | ||
1385 | static inline int ata_check_ready(u8 status) | ||
1386 | { | ||
1387 | if (!(status & ATA_BUSY)) | ||
1388 | return 1; | ||
1389 | |||
1390 | /* 0xff indicates either no device or device not ready */ | ||
1391 | if (status == 0xff) | ||
1392 | return -ENODEV; | ||
1393 | |||
1394 | return 0; | ||
1395 | } | ||
1396 | |||
1384 | 1397 | ||
1385 | /************************************************************************** | 1398 | /************************************************************************** |
1386 | * PMP - drivers/ata/libata-pmp.c | 1399 | * PMP - drivers/ata/libata-pmp.c |
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index eb7c16cc9559..02a27ae78539 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h | |||
@@ -226,8 +226,17 @@ struct mm_struct { | |||
226 | rwlock_t ioctx_list_lock; /* aio lock */ | 226 | rwlock_t ioctx_list_lock; /* aio lock */ |
227 | struct kioctx *ioctx_list; | 227 | struct kioctx *ioctx_list; |
228 | #ifdef CONFIG_MM_OWNER | 228 | #ifdef CONFIG_MM_OWNER |
229 | struct task_struct *owner; /* The thread group leader that */ | 229 | /* |
230 | /* owns the mm_struct. */ | 230 | * "owner" points to a task that is regarded as the canonical |
231 | * user/owner of this mm. All of the following must be true in | ||
232 | * order for it to be changed: | ||
233 | * | ||
234 | * current == mm->owner | ||
235 | * current->mm != mm | ||
236 | * new_owner->mm == mm | ||
237 | * new_owner->alloc_lock is held | ||
238 | */ | ||
239 | struct task_struct *owner; | ||
231 | #endif | 240 | #endif |
232 | 241 | ||
233 | #ifdef CONFIG_PROC_FS | 242 | #ifdef CONFIG_PROC_FS |
diff --git a/include/linux/mv643xx_eth.h b/include/linux/mv643xx_eth.h index 30e11aa3c1c9..a15cdd4a8e58 100644 --- a/include/linux/mv643xx_eth.h +++ b/include/linux/mv643xx_eth.h | |||
@@ -1,19 +1,31 @@ | |||
1 | /* | 1 | /* |
2 | * MV-643XX ethernet platform device data definition file. | 2 | * MV-643XX ethernet platform device data definition file. |
3 | */ | 3 | */ |
4 | |||
4 | #ifndef __LINUX_MV643XX_ETH_H | 5 | #ifndef __LINUX_MV643XX_ETH_H |
5 | #define __LINUX_MV643XX_ETH_H | 6 | #define __LINUX_MV643XX_ETH_H |
6 | 7 | ||
7 | #define MV643XX_ETH_SHARED_NAME "mv643xx_eth_shared" | 8 | #include <linux/mbus.h> |
8 | #define MV643XX_ETH_NAME "mv643xx_eth" | 9 | |
10 | #define MV643XX_ETH_SHARED_NAME "mv643xx_eth" | ||
11 | #define MV643XX_ETH_NAME "mv643xx_eth_port" | ||
9 | #define MV643XX_ETH_SHARED_REGS 0x2000 | 12 | #define MV643XX_ETH_SHARED_REGS 0x2000 |
10 | #define MV643XX_ETH_SHARED_REGS_SIZE 0x2000 | 13 | #define MV643XX_ETH_SHARED_REGS_SIZE 0x2000 |
11 | #define MV643XX_ETH_BAR_4 0x2220 | 14 | #define MV643XX_ETH_BAR_4 0x2220 |
12 | #define MV643XX_ETH_SIZE_REG_4 0x2224 | 15 | #define MV643XX_ETH_SIZE_REG_4 0x2224 |
13 | #define MV643XX_ETH_BASE_ADDR_ENABLE_REG 0x2290 | 16 | #define MV643XX_ETH_BASE_ADDR_ENABLE_REG 0x2290 |
14 | 17 | ||
18 | struct mv643xx_eth_shared_platform_data { | ||
19 | struct mbus_dram_target_info *dram; | ||
20 | unsigned int t_clk; | ||
21 | }; | ||
22 | |||
15 | struct mv643xx_eth_platform_data { | 23 | struct mv643xx_eth_platform_data { |
24 | struct platform_device *shared; | ||
16 | int port_number; | 25 | int port_number; |
26 | |||
27 | struct platform_device *shared_smi; | ||
28 | |||
17 | u16 force_phy_addr; /* force override if phy_addr == 0 */ | 29 | u16 force_phy_addr; /* force override if phy_addr == 0 */ |
18 | u16 phy_addr; | 30 | u16 phy_addr; |
19 | 31 | ||
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 7c1d4466583b..b11e6e19e96c 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -93,14 +93,16 @@ struct wireless_dev; | |||
93 | * used. | 93 | * used. |
94 | */ | 94 | */ |
95 | 95 | ||
96 | #if !defined(CONFIG_AX25) && !defined(CONFIG_AX25_MODULE) && !defined(CONFIG_TR) | 96 | #if defined(CONFIG_WLAN_80211) || defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE) |
97 | #define LL_MAX_HEADER 32 | 97 | # if defined(CONFIG_MAC80211_MESH) |
98 | # define LL_MAX_HEADER 128 | ||
99 | # else | ||
100 | # define LL_MAX_HEADER 96 | ||
101 | # endif | ||
102 | #elif defined(CONFIG_TR) | ||
103 | # define LL_MAX_HEADER 48 | ||
98 | #else | 104 | #else |
99 | #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE) | 105 | # define LL_MAX_HEADER 32 |
100 | #define LL_MAX_HEADER 96 | ||
101 | #else | ||
102 | #define LL_MAX_HEADER 48 | ||
103 | #endif | ||
104 | #endif | 106 | #endif |
105 | 107 | ||
106 | #if !defined(CONFIG_NET_IPIP) && !defined(CONFIG_NET_IPIP_MODULE) && \ | 108 | #if !defined(CONFIG_NET_IPIP) && !defined(CONFIG_NET_IPIP_MODULE) && \ |
@@ -244,11 +246,16 @@ struct hh_cache | |||
244 | * | 246 | * |
245 | * We could use other alignment values, but we must maintain the | 247 | * We could use other alignment values, but we must maintain the |
246 | * relationship HH alignment <= LL alignment. | 248 | * relationship HH alignment <= LL alignment. |
249 | * | ||
250 | * LL_ALLOCATED_SPACE also takes into account the tailroom the device | ||
251 | * may need. | ||
247 | */ | 252 | */ |
248 | #define LL_RESERVED_SPACE(dev) \ | 253 | #define LL_RESERVED_SPACE(dev) \ |
249 | (((dev)->hard_header_len&~(HH_DATA_MOD - 1)) + HH_DATA_MOD) | 254 | ((((dev)->hard_header_len+(dev)->needed_headroom)&~(HH_DATA_MOD - 1)) + HH_DATA_MOD) |
250 | #define LL_RESERVED_SPACE_EXTRA(dev,extra) \ | 255 | #define LL_RESERVED_SPACE_EXTRA(dev,extra) \ |
251 | ((((dev)->hard_header_len+extra)&~(HH_DATA_MOD - 1)) + HH_DATA_MOD) | 256 | ((((dev)->hard_header_len+(dev)->needed_headroom+(extra))&~(HH_DATA_MOD - 1)) + HH_DATA_MOD) |
257 | #define LL_ALLOCATED_SPACE(dev) \ | ||
258 | ((((dev)->hard_header_len+(dev)->needed_headroom+(dev)->needed_tailroom)&~(HH_DATA_MOD - 1)) + HH_DATA_MOD) | ||
252 | 259 | ||
253 | struct header_ops { | 260 | struct header_ops { |
254 | int (*create) (struct sk_buff *skb, struct net_device *dev, | 261 | int (*create) (struct sk_buff *skb, struct net_device *dev, |
@@ -567,6 +574,13 @@ struct net_device | |||
567 | unsigned short type; /* interface hardware type */ | 574 | unsigned short type; /* interface hardware type */ |
568 | unsigned short hard_header_len; /* hardware hdr length */ | 575 | unsigned short hard_header_len; /* hardware hdr length */ |
569 | 576 | ||
577 | /* extra head- and tailroom the hardware may need, but not in all cases | ||
578 | * can this be guaranteed, especially tailroom. Some cases also use | ||
579 | * LL_MAX_HEADER instead to allocate the skb. | ||
580 | */ | ||
581 | unsigned short needed_headroom; | ||
582 | unsigned short needed_tailroom; | ||
583 | |||
570 | struct net_device *master; /* Pointer to master device of a group, | 584 | struct net_device *master; /* Pointer to master device of a group, |
571 | * which this device is member of. | 585 | * which this device is member of. |
572 | */ | 586 | */ |
@@ -715,6 +729,9 @@ struct net_device | |||
715 | struct net *nd_net; | 729 | struct net *nd_net; |
716 | #endif | 730 | #endif |
717 | 731 | ||
732 | /* mid-layer private */ | ||
733 | void *ml_priv; | ||
734 | |||
718 | /* bridge stuff */ | 735 | /* bridge stuff */ |
719 | struct net_bridge_port *br_port; | 736 | struct net_bridge_port *br_port; |
720 | /* macvlan */ | 737 | /* macvlan */ |
diff --git a/include/linux/netfilter/nf_conntrack_sip.h b/include/linux/netfilter/nf_conntrack_sip.h index 5da04e586a3f..23aa2ec6b7b7 100644 --- a/include/linux/netfilter/nf_conntrack_sip.h +++ b/include/linux/netfilter/nf_conntrack_sip.h | |||
@@ -7,6 +7,7 @@ | |||
7 | 7 | ||
8 | struct nf_ct_sip_master { | 8 | struct nf_ct_sip_master { |
9 | unsigned int register_cseq; | 9 | unsigned int register_cseq; |
10 | unsigned int invite_cseq; | ||
10 | }; | 11 | }; |
11 | 12 | ||
12 | enum sip_expectation_classes { | 13 | enum sip_expectation_classes { |
diff --git a/include/linux/of_i2c.h b/include/linux/of_i2c.h index 2e5a96732042..bd2a870ec296 100644 --- a/include/linux/of_i2c.h +++ b/include/linux/of_i2c.h | |||
@@ -14,11 +14,7 @@ | |||
14 | 14 | ||
15 | #include <linux/i2c.h> | 15 | #include <linux/i2c.h> |
16 | 16 | ||
17 | #ifdef CONFIG_OF_I2C | ||
18 | |||
19 | void of_register_i2c_devices(struct i2c_adapter *adap, | 17 | void of_register_i2c_devices(struct i2c_adapter *adap, |
20 | struct device_node *adap_node); | 18 | struct device_node *adap_node); |
21 | 19 | ||
22 | #endif /* CONFIG_OF_I2C */ | ||
23 | |||
24 | #endif /* __LINUX_OF_I2C_H */ | 20 | #endif /* __LINUX_OF_I2C_H */ |
diff --git a/include/linux/parser.h b/include/linux/parser.h index 26b2bdfcaf06..7dcd05075756 100644 --- a/include/linux/parser.h +++ b/include/linux/parser.h | |||
@@ -29,5 +29,5 @@ int match_token(char *, match_table_t table, substring_t args[]); | |||
29 | int match_int(substring_t *, int *result); | 29 | int match_int(substring_t *, int *result); |
30 | int match_octal(substring_t *, int *result); | 30 | int match_octal(substring_t *, int *result); |
31 | int match_hex(substring_t *, int *result); | 31 | int match_hex(substring_t *, int *result); |
32 | void match_strcpy(char *, const substring_t *); | 32 | size_t match_strlcpy(char *, const substring_t *, size_t); |
33 | char *match_strdup(const substring_t *); | 33 | char *match_strdup(const substring_t *); |
diff --git a/include/linux/pci.h b/include/linux/pci.h index 96acd0dae241..509159bcd4e7 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
@@ -44,6 +44,7 @@ | |||
44 | #include <linux/mod_devicetable.h> | 44 | #include <linux/mod_devicetable.h> |
45 | 45 | ||
46 | #include <linux/types.h> | 46 | #include <linux/types.h> |
47 | #include <linux/init.h> | ||
47 | #include <linux/ioport.h> | 48 | #include <linux/ioport.h> |
48 | #include <linux/list.h> | 49 | #include <linux/list.h> |
49 | #include <linux/compiler.h> | 50 | #include <linux/compiler.h> |
@@ -474,7 +475,7 @@ extern struct pci_bus *pci_find_bus(int domain, int busnr); | |||
474 | void pci_bus_add_devices(struct pci_bus *bus); | 475 | void pci_bus_add_devices(struct pci_bus *bus); |
475 | struct pci_bus *pci_scan_bus_parented(struct device *parent, int bus, | 476 | struct pci_bus *pci_scan_bus_parented(struct device *parent, int bus, |
476 | struct pci_ops *ops, void *sysdata); | 477 | struct pci_ops *ops, void *sysdata); |
477 | static inline struct pci_bus *pci_scan_bus(int bus, struct pci_ops *ops, | 478 | static inline struct pci_bus * __devinit pci_scan_bus(int bus, struct pci_ops *ops, |
478 | void *sysdata) | 479 | void *sysdata) |
479 | { | 480 | { |
480 | struct pci_bus *root_bus; | 481 | struct pci_bus *root_bus; |
@@ -666,7 +667,7 @@ int pci_scan_bridge(struct pci_bus *bus, struct pci_dev *dev, int max, | |||
666 | 667 | ||
667 | void pci_walk_bus(struct pci_bus *top, void (*cb)(struct pci_dev *, void *), | 668 | void pci_walk_bus(struct pci_bus *top, void (*cb)(struct pci_dev *, void *), |
668 | void *userdata); | 669 | void *userdata); |
669 | int pci_cfg_space_size_ext(struct pci_dev *dev, unsigned check_exp_pcix); | 670 | int pci_cfg_space_size_ext(struct pci_dev *dev); |
670 | int pci_cfg_space_size(struct pci_dev *dev); | 671 | int pci_cfg_space_size(struct pci_dev *dev); |
671 | unsigned char pci_bus_max_busnr(struct pci_bus *bus); | 672 | unsigned char pci_bus_max_busnr(struct pci_bus *bus); |
672 | 673 | ||
diff --git a/include/linux/percpu.h b/include/linux/percpu.h index d746a2abb322..4cdd393e71e1 100644 --- a/include/linux/percpu.h +++ b/include/linux/percpu.h | |||
@@ -13,8 +13,14 @@ | |||
13 | __attribute__((__section__(".data.percpu"))) \ | 13 | __attribute__((__section__(".data.percpu"))) \ |
14 | PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name | 14 | PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name |
15 | 15 | ||
16 | #ifdef MODULE | ||
17 | #define SHARED_ALIGNED_SECTION ".data.percpu" | ||
18 | #else | ||
19 | #define SHARED_ALIGNED_SECTION ".data.percpu.shared_aligned" | ||
20 | #endif | ||
21 | |||
16 | #define DEFINE_PER_CPU_SHARED_ALIGNED(type, name) \ | 22 | #define DEFINE_PER_CPU_SHARED_ALIGNED(type, name) \ |
17 | __attribute__((__section__(".data.percpu.shared_aligned"))) \ | 23 | __attribute__((__section__(SHARED_ALIGNED_SECTION))) \ |
18 | PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name \ | 24 | PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name \ |
19 | ____cacheline_aligned_in_smp | 25 | ____cacheline_aligned_in_smp |
20 | #else | 26 | #else |
diff --git a/include/linux/phy.h b/include/linux/phy.h index 02df20f085fe..7224c4099a28 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h | |||
@@ -412,6 +412,8 @@ int mdiobus_register(struct mii_bus *bus); | |||
412 | void mdiobus_unregister(struct mii_bus *bus); | 412 | void mdiobus_unregister(struct mii_bus *bus); |
413 | void phy_sanitize_settings(struct phy_device *phydev); | 413 | void phy_sanitize_settings(struct phy_device *phydev); |
414 | int phy_stop_interrupts(struct phy_device *phydev); | 414 | int phy_stop_interrupts(struct phy_device *phydev); |
415 | int phy_enable_interrupts(struct phy_device *phydev); | ||
416 | int phy_disable_interrupts(struct phy_device *phydev); | ||
415 | 417 | ||
416 | static inline int phy_read_status(struct phy_device *phydev) { | 418 | static inline int phy_read_status(struct phy_device *phydev) { |
417 | return phydev->drv->read_status(phydev); | 419 | return phydev->drv->read_status(phydev); |
@@ -447,5 +449,8 @@ int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask, | |||
447 | int (*run)(struct phy_device *)); | 449 | int (*run)(struct phy_device *)); |
448 | int phy_scan_fixups(struct phy_device *phydev); | 450 | int phy_scan_fixups(struct phy_device *phydev); |
449 | 451 | ||
452 | int __init mdio_bus_init(void); | ||
453 | void mdio_bus_exit(void); | ||
454 | |||
450 | extern struct bus_type mdio_bus_type; | 455 | extern struct bus_type mdio_bus_type; |
451 | #endif /* __PHY_H */ | 456 | #endif /* __PHY_H */ |
diff --git a/include/linux/rcupdate.h b/include/linux/rcupdate.h index 8082d6587a0f..d42dbec06083 100644 --- a/include/linux/rcupdate.h +++ b/include/linux/rcupdate.h | |||
@@ -131,18 +131,6 @@ struct rcu_head { | |||
131 | */ | 131 | */ |
132 | #define rcu_read_unlock_bh() __rcu_read_unlock_bh() | 132 | #define rcu_read_unlock_bh() __rcu_read_unlock_bh() |
133 | 133 | ||
134 | /* | ||
135 | * Prevent the compiler from merging or refetching accesses. The compiler | ||
136 | * is also forbidden from reordering successive instances of ACCESS_ONCE(), | ||
137 | * but only when the compiler is aware of some particular ordering. One way | ||
138 | * to make the compiler aware of ordering is to put the two invocations of | ||
139 | * ACCESS_ONCE() in different C statements. | ||
140 | * | ||
141 | * This macro does absolutely -nothing- to prevent the CPU from reordering, | ||
142 | * merging, or refetching absolutely anything at any time. | ||
143 | */ | ||
144 | #define ACCESS_ONCE(x) (*(volatile typeof(x) *)&(x)) | ||
145 | |||
146 | /** | 134 | /** |
147 | * rcu_dereference - fetch an RCU-protected pointer in an | 135 | * rcu_dereference - fetch an RCU-protected pointer in an |
148 | * RCU read-side critical section. This pointer may later | 136 | * RCU read-side critical section. This pointer may later |
diff --git a/include/linux/sched.h b/include/linux/sched.h index 03c238088aee..5395a6176f4b 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -158,6 +158,8 @@ print_cfs_rq(struct seq_file *m, int cpu, struct cfs_rq *cfs_rq) | |||
158 | } | 158 | } |
159 | #endif | 159 | #endif |
160 | 160 | ||
161 | extern unsigned long long time_sync_thresh; | ||
162 | |||
161 | /* | 163 | /* |
162 | * Task state bitmask. NOTE! These bits are also | 164 | * Task state bitmask. NOTE! These bits are also |
163 | * encoded in fs/proc/array.c: get_task_state(). | 165 | * encoded in fs/proc/array.c: get_task_state(). |
@@ -1551,6 +1553,35 @@ static inline int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask) | |||
1551 | 1553 | ||
1552 | extern unsigned long long sched_clock(void); | 1554 | extern unsigned long long sched_clock(void); |
1553 | 1555 | ||
1556 | #ifndef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK | ||
1557 | static inline void sched_clock_init(void) | ||
1558 | { | ||
1559 | } | ||
1560 | |||
1561 | static inline u64 sched_clock_cpu(int cpu) | ||
1562 | { | ||
1563 | return sched_clock(); | ||
1564 | } | ||
1565 | |||
1566 | static inline void sched_clock_tick(void) | ||
1567 | { | ||
1568 | } | ||
1569 | |||
1570 | static inline void sched_clock_idle_sleep_event(void) | ||
1571 | { | ||
1572 | } | ||
1573 | |||
1574 | static inline void sched_clock_idle_wakeup_event(u64 delta_ns) | ||
1575 | { | ||
1576 | } | ||
1577 | #else | ||
1578 | extern void sched_clock_init(void); | ||
1579 | extern u64 sched_clock_cpu(int cpu); | ||
1580 | extern void sched_clock_tick(void); | ||
1581 | extern void sched_clock_idle_sleep_event(void); | ||
1582 | extern void sched_clock_idle_wakeup_event(u64 delta_ns); | ||
1583 | #endif | ||
1584 | |||
1554 | /* | 1585 | /* |
1555 | * For kernel-internal use: high-speed (but slightly incorrect) per-cpu | 1586 | * For kernel-internal use: high-speed (but slightly incorrect) per-cpu |
1556 | * clock constructed from sched_clock(): | 1587 | * clock constructed from sched_clock(): |
@@ -1977,6 +2008,11 @@ static inline void clear_tsk_need_resched(struct task_struct *tsk) | |||
1977 | clear_tsk_thread_flag(tsk,TIF_NEED_RESCHED); | 2008 | clear_tsk_thread_flag(tsk,TIF_NEED_RESCHED); |
1978 | } | 2009 | } |
1979 | 2010 | ||
2011 | static inline int test_tsk_need_resched(struct task_struct *tsk) | ||
2012 | { | ||
2013 | return unlikely(test_tsk_thread_flag(tsk,TIF_NEED_RESCHED)); | ||
2014 | } | ||
2015 | |||
1980 | static inline int signal_pending(struct task_struct *p) | 2016 | static inline int signal_pending(struct task_struct *p) |
1981 | { | 2017 | { |
1982 | return unlikely(test_tsk_thread_flag(p,TIF_SIGPENDING)); | 2018 | return unlikely(test_tsk_thread_flag(p,TIF_SIGPENDING)); |
@@ -2001,13 +2037,13 @@ static inline int need_resched(void) | |||
2001 | * cond_resched_lock() will drop the spinlock before scheduling, | 2037 | * cond_resched_lock() will drop the spinlock before scheduling, |
2002 | * cond_resched_softirq() will enable bhs before scheduling. | 2038 | * cond_resched_softirq() will enable bhs before scheduling. |
2003 | */ | 2039 | */ |
2004 | #ifdef CONFIG_PREEMPT | 2040 | extern int _cond_resched(void); |
2041 | #ifdef CONFIG_PREEMPT_BKL | ||
2005 | static inline int cond_resched(void) | 2042 | static inline int cond_resched(void) |
2006 | { | 2043 | { |
2007 | return 0; | 2044 | return 0; |
2008 | } | 2045 | } |
2009 | #else | 2046 | #else |
2010 | extern int _cond_resched(void); | ||
2011 | static inline int cond_resched(void) | 2047 | static inline int cond_resched(void) |
2012 | { | 2048 | { |
2013 | return _cond_resched(); | 2049 | return _cond_resched(); |
@@ -2015,6 +2051,10 @@ static inline int cond_resched(void) | |||
2015 | #endif | 2051 | #endif |
2016 | extern int cond_resched_lock(spinlock_t * lock); | 2052 | extern int cond_resched_lock(spinlock_t * lock); |
2017 | extern int cond_resched_softirq(void); | 2053 | extern int cond_resched_softirq(void); |
2054 | static inline int cond_resched_bkl(void) | ||
2055 | { | ||
2056 | return _cond_resched(); | ||
2057 | } | ||
2018 | 2058 | ||
2019 | /* | 2059 | /* |
2020 | * Does a critical section need to be broken due to another | 2060 | * Does a critical section need to be broken due to another |
diff --git a/include/linux/usb/association.h b/include/linux/usb/association.h new file mode 100644 index 000000000000..07c5e3cf5898 --- /dev/null +++ b/include/linux/usb/association.h | |||
@@ -0,0 +1,150 @@ | |||
1 | /* | ||
2 | * Wireless USB - Cable Based Association | ||
3 | * | ||
4 | * Copyright (C) 2006 Intel Corporation | ||
5 | * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or | ||
8 | * modify it under the terms of the GNU General Public License version | ||
9 | * 2 as published by the Free Software Foundation. | ||
10 | * | ||
11 | */ | ||
12 | #ifndef __LINUX_USB_ASSOCIATION_H | ||
13 | #define __LINUX_USB_ASSOCIATION_H | ||
14 | |||
15 | |||
16 | /* | ||
17 | * Association attributes | ||
18 | * | ||
19 | * Association Models Supplement to WUSB 1.0 T[3-1] | ||
20 | * | ||
21 | * Each field in the structures has it's ID, it's length and then the | ||
22 | * value. This is the actual definition of the field's ID and its | ||
23 | * length. | ||
24 | */ | ||
25 | struct wusb_am_attr { | ||
26 | __u8 id; | ||
27 | __u8 len; | ||
28 | }; | ||
29 | |||
30 | /* Different fields defined by the spec */ | ||
31 | #define WUSB_AR_AssociationTypeId { .id = 0x0000, .len = 2 } | ||
32 | #define WUSB_AR_AssociationSubTypeId { .id = 0x0001, .len = 2 } | ||
33 | #define WUSB_AR_Length { .id = 0x0002, .len = 4 } | ||
34 | #define WUSB_AR_AssociationStatus { .id = 0x0004, .len = 4 } | ||
35 | #define WUSB_AR_LangID { .id = 0x0008, .len = 2 } | ||
36 | #define WUSB_AR_DeviceFriendlyName { .id = 0x000b, .len = 64 } /* max */ | ||
37 | #define WUSB_AR_HostFriendlyName { .id = 0x000c, .len = 64 } /* max */ | ||
38 | #define WUSB_AR_CHID { .id = 0x1000, .len = 16 } | ||
39 | #define WUSB_AR_CDID { .id = 0x1001, .len = 16 } | ||
40 | #define WUSB_AR_ConnectionContext { .id = 0x1002, .len = 48 } | ||
41 | #define WUSB_AR_BandGroups { .id = 0x1004, .len = 2 } | ||
42 | |||
43 | /* CBAF Control Requests (AMS1.0[T4-1] */ | ||
44 | enum { | ||
45 | CBAF_REQ_GET_ASSOCIATION_INFORMATION = 0x01, | ||
46 | CBAF_REQ_GET_ASSOCIATION_REQUEST, | ||
47 | CBAF_REQ_SET_ASSOCIATION_RESPONSE | ||
48 | }; | ||
49 | |||
50 | /* | ||
51 | * CBAF USB-interface defitions | ||
52 | * | ||
53 | * No altsettings, one optional interrupt endpoint. | ||
54 | */ | ||
55 | enum { | ||
56 | CBAF_IFACECLASS = 0xef, | ||
57 | CBAF_IFACESUBCLASS = 0x03, | ||
58 | CBAF_IFACEPROTOCOL = 0x01, | ||
59 | }; | ||
60 | |||
61 | /* Association Information (AMS1.0[T4-3]) */ | ||
62 | struct wusb_cbaf_assoc_info { | ||
63 | __le16 Length; | ||
64 | __u8 NumAssociationRequests; | ||
65 | __le16 Flags; | ||
66 | __u8 AssociationRequestsArray[]; | ||
67 | } __attribute__((packed)); | ||
68 | |||
69 | /* Association Request (AMS1.0[T4-4]) */ | ||
70 | struct wusb_cbaf_assoc_request { | ||
71 | __u8 AssociationDataIndex; | ||
72 | __u8 Reserved; | ||
73 | __le16 AssociationTypeId; | ||
74 | __le16 AssociationSubTypeId; | ||
75 | __le32 AssociationTypeInfoSize; | ||
76 | } __attribute__((packed)); | ||
77 | |||
78 | enum { | ||
79 | AR_TYPE_WUSB = 0x0001, | ||
80 | AR_TYPE_WUSB_RETRIEVE_HOST_INFO = 0x0000, | ||
81 | AR_TYPE_WUSB_ASSOCIATE = 0x0001, | ||
82 | }; | ||
83 | |||
84 | /* Association Attribute header (AMS1.0[3.8]) */ | ||
85 | struct wusb_cbaf_attr_hdr { | ||
86 | __le16 id; | ||
87 | __le16 len; | ||
88 | } __attribute__((packed)); | ||
89 | |||
90 | /* Host Info (AMS1.0[T4-7]) (yeah, more headers and fields...) */ | ||
91 | struct wusb_cbaf_host_info { | ||
92 | struct wusb_cbaf_attr_hdr AssociationTypeId_hdr; | ||
93 | __le16 AssociationTypeId; | ||
94 | struct wusb_cbaf_attr_hdr AssociationSubTypeId_hdr; | ||
95 | __le16 AssociationSubTypeId; | ||
96 | struct wusb_cbaf_attr_hdr CHID_hdr; | ||
97 | struct wusb_ckhdid CHID; | ||
98 | struct wusb_cbaf_attr_hdr LangID_hdr; | ||
99 | __le16 LangID; | ||
100 | struct wusb_cbaf_attr_hdr HostFriendlyName_hdr; | ||
101 | __u8 HostFriendlyName[]; | ||
102 | } __attribute__((packed)); | ||
103 | |||
104 | /* Device Info (AMS1.0[T4-8]) | ||
105 | * | ||
106 | * I still don't get this tag'n'header stuff for each goddamn | ||
107 | * field... | ||
108 | */ | ||
109 | struct wusb_cbaf_device_info { | ||
110 | struct wusb_cbaf_attr_hdr Length_hdr; | ||
111 | __le32 Length; | ||
112 | struct wusb_cbaf_attr_hdr CDID_hdr; | ||
113 | struct wusb_ckhdid CDID; | ||
114 | struct wusb_cbaf_attr_hdr BandGroups_hdr; | ||
115 | __le16 BandGroups; | ||
116 | struct wusb_cbaf_attr_hdr LangID_hdr; | ||
117 | __le16 LangID; | ||
118 | struct wusb_cbaf_attr_hdr DeviceFriendlyName_hdr; | ||
119 | __u8 DeviceFriendlyName[]; | ||
120 | } __attribute__((packed)); | ||
121 | |||
122 | /* Connection Context; CC_DATA - Success case (AMS1.0[T4-9]) */ | ||
123 | struct wusb_cbaf_cc_data { | ||
124 | struct wusb_cbaf_attr_hdr AssociationTypeId_hdr; | ||
125 | __le16 AssociationTypeId; | ||
126 | struct wusb_cbaf_attr_hdr AssociationSubTypeId_hdr; | ||
127 | __le16 AssociationSubTypeId; | ||
128 | struct wusb_cbaf_attr_hdr Length_hdr; | ||
129 | __le32 Length; | ||
130 | struct wusb_cbaf_attr_hdr ConnectionContext_hdr; | ||
131 | struct wusb_ckhdid CHID; | ||
132 | struct wusb_ckhdid CDID; | ||
133 | struct wusb_ckhdid CK; | ||
134 | struct wusb_cbaf_attr_hdr BandGroups_hdr; | ||
135 | __le16 BandGroups; | ||
136 | } __attribute__((packed)); | ||
137 | |||
138 | /* CC_DATA - Failure case (AMS1.0[T4-10]) */ | ||
139 | struct wusb_cbaf_cc_data_fail { | ||
140 | struct wusb_cbaf_attr_hdr AssociationTypeId_hdr; | ||
141 | __le16 AssociationTypeId; | ||
142 | struct wusb_cbaf_attr_hdr AssociationSubTypeId_hdr; | ||
143 | __le16 AssociationSubTypeId; | ||
144 | struct wusb_cbaf_attr_hdr Length_hdr; | ||
145 | __le16 Length; | ||
146 | struct wusb_cbaf_attr_hdr AssociationStatus_hdr; | ||
147 | __u32 AssociationStatus; | ||
148 | } __attribute__((packed)); | ||
149 | |||
150 | #endif /* __LINUX_USB_ASSOCIATION_H */ | ||
diff --git a/include/linux/vermagic.h b/include/linux/vermagic.h index 4d0909e53595..79b9837d9ca0 100644 --- a/include/linux/vermagic.h +++ b/include/linux/vermagic.h | |||
@@ -17,6 +17,11 @@ | |||
17 | #else | 17 | #else |
18 | #define MODULE_VERMAGIC_MODULE_UNLOAD "" | 18 | #define MODULE_VERMAGIC_MODULE_UNLOAD "" |
19 | #endif | 19 | #endif |
20 | #ifdef CONFIG_MODVERSIONS | ||
21 | #define MODULE_VERMAGIC_MODVERSIONS "modversions " | ||
22 | #else | ||
23 | #define MODULE_VERMAGIC_MODVERSIONS "" | ||
24 | #endif | ||
20 | #ifndef MODULE_ARCH_VERMAGIC | 25 | #ifndef MODULE_ARCH_VERMAGIC |
21 | #define MODULE_ARCH_VERMAGIC "" | 26 | #define MODULE_ARCH_VERMAGIC "" |
22 | #endif | 27 | #endif |
@@ -24,5 +29,6 @@ | |||
24 | #define VERMAGIC_STRING \ | 29 | #define VERMAGIC_STRING \ |
25 | UTS_RELEASE " " \ | 30 | UTS_RELEASE " " \ |
26 | MODULE_VERMAGIC_SMP MODULE_VERMAGIC_PREEMPT \ | 31 | MODULE_VERMAGIC_SMP MODULE_VERMAGIC_PREEMPT \ |
27 | MODULE_VERMAGIC_MODULE_UNLOAD MODULE_ARCH_VERMAGIC | 32 | MODULE_VERMAGIC_MODULE_UNLOAD MODULE_VERMAGIC_MODVERSIONS \ |
33 | MODULE_ARCH_VERMAGIC | ||
28 | 34 | ||
diff --git a/include/media/v4l2-i2c-drv-legacy.h b/include/media/v4l2-i2c-drv-legacy.h index 347b6f8beb23..878562278b67 100644 --- a/include/media/v4l2-i2c-drv-legacy.h +++ b/include/media/v4l2-i2c-drv-legacy.h | |||
@@ -31,6 +31,7 @@ struct v4l2_i2c_driver_data { | |||
31 | int (*resume)(struct i2c_client *client); | 31 | int (*resume)(struct i2c_client *client); |
32 | int (*legacy_probe)(struct i2c_adapter *adapter); | 32 | int (*legacy_probe)(struct i2c_adapter *adapter); |
33 | int legacy_class; | 33 | int legacy_class; |
34 | const struct i2c_device_id *id_table; | ||
34 | }; | 35 | }; |
35 | 36 | ||
36 | static struct v4l2_i2c_driver_data v4l2_i2c_data; | 37 | static struct v4l2_i2c_driver_data v4l2_i2c_data; |
@@ -124,6 +125,7 @@ static int __init v4l2_i2c_drv_init(void) | |||
124 | v4l2_i2c_driver.command = v4l2_i2c_data.command; | 125 | v4l2_i2c_driver.command = v4l2_i2c_data.command; |
125 | v4l2_i2c_driver.probe = v4l2_i2c_data.probe; | 126 | v4l2_i2c_driver.probe = v4l2_i2c_data.probe; |
126 | v4l2_i2c_driver.remove = v4l2_i2c_data.remove; | 127 | v4l2_i2c_driver.remove = v4l2_i2c_data.remove; |
128 | v4l2_i2c_driver.id_table = v4l2_i2c_data.id_table; | ||
127 | err = i2c_add_driver(&v4l2_i2c_driver); | 129 | err = i2c_add_driver(&v4l2_i2c_driver); |
128 | if (err) | 130 | if (err) |
129 | i2c_del_driver(&v4l2_i2c_driver_legacy); | 131 | i2c_del_driver(&v4l2_i2c_driver_legacy); |
diff --git a/include/media/v4l2-i2c-drv.h b/include/media/v4l2-i2c-drv.h index 7b6f06be7950..40ecef29801d 100644 --- a/include/media/v4l2-i2c-drv.h +++ b/include/media/v4l2-i2c-drv.h | |||
@@ -36,6 +36,7 @@ struct v4l2_i2c_driver_data { | |||
36 | int (*resume)(struct i2c_client *client); | 36 | int (*resume)(struct i2c_client *client); |
37 | int (*legacy_probe)(struct i2c_adapter *adapter); | 37 | int (*legacy_probe)(struct i2c_adapter *adapter); |
38 | int legacy_class; | 38 | int legacy_class; |
39 | const struct i2c_device_id *id_table; | ||
39 | }; | 40 | }; |
40 | 41 | ||
41 | static struct v4l2_i2c_driver_data v4l2_i2c_data; | 42 | static struct v4l2_i2c_driver_data v4l2_i2c_data; |
@@ -53,6 +54,7 @@ static int __init v4l2_i2c_drv_init(void) | |||
53 | v4l2_i2c_driver.remove = v4l2_i2c_data.remove; | 54 | v4l2_i2c_driver.remove = v4l2_i2c_data.remove; |
54 | v4l2_i2c_driver.suspend = v4l2_i2c_data.suspend; | 55 | v4l2_i2c_driver.suspend = v4l2_i2c_data.suspend; |
55 | v4l2_i2c_driver.resume = v4l2_i2c_data.resume; | 56 | v4l2_i2c_driver.resume = v4l2_i2c_data.resume; |
57 | v4l2_i2c_driver.id_table = v4l2_i2c_data.id_table; | ||
56 | return i2c_add_driver(&v4l2_i2c_driver); | 58 | return i2c_add_driver(&v4l2_i2c_driver); |
57 | } | 59 | } |
58 | 60 | ||
diff --git a/include/net/9p/9p.h b/include/net/9p/9p.h index 585eb4496990..b3d3e27c6299 100644 --- a/include/net/9p/9p.h +++ b/include/net/9p/9p.h | |||
@@ -29,14 +29,31 @@ | |||
29 | 29 | ||
30 | #ifdef CONFIG_NET_9P_DEBUG | 30 | #ifdef CONFIG_NET_9P_DEBUG |
31 | 31 | ||
32 | #define P9_DEBUG_ERROR (1<<0) | 32 | /** |
33 | #define P9_DEBUG_9P (1<<2) | 33 | * enum p9_debug_flags - bits for mount time debug parameter |
34 | #define P9_DEBUG_VFS (1<<3) | 34 | * @P9_DEBUG_ERROR: more verbose error messages including original error string |
35 | #define P9_DEBUG_CONV (1<<4) | 35 | * @P9_DEBUG_9P: 9P protocol tracing |
36 | #define P9_DEBUG_MUX (1<<5) | 36 | * @P9_DEBUG_VFS: VFS API tracing |
37 | #define P9_DEBUG_TRANS (1<<6) | 37 | * @P9_DEBUG_CONV: protocol conversion tracing |
38 | #define P9_DEBUG_SLABS (1<<7) | 38 | * @P9_DEBUG_MUX: trace management of concurrent transactions |
39 | #define P9_DEBUG_FCALL (1<<8) | 39 | * @P9_DEBUG_TRANS: transport tracing |
40 | * @P9_DEBUG_SLABS: memory management tracing | ||
41 | * @P9_DEBUG_FCALL: verbose dump of protocol messages | ||
42 | * | ||
43 | * These flags are passed at mount time to turn on various levels of | ||
44 | * verbosity and tracing which will be output to the system logs. | ||
45 | */ | ||
46 | |||
47 | enum p9_debug_flags { | ||
48 | P9_DEBUG_ERROR = (1<<0), | ||
49 | P9_DEBUG_9P = (1<<2), | ||
50 | P9_DEBUG_VFS = (1<<3), | ||
51 | P9_DEBUG_CONV = (1<<4), | ||
52 | P9_DEBUG_MUX = (1<<5), | ||
53 | P9_DEBUG_TRANS = (1<<6), | ||
54 | P9_DEBUG_SLABS = (1<<7), | ||
55 | P9_DEBUG_FCALL = (1<<8), | ||
56 | }; | ||
40 | 57 | ||
41 | extern unsigned int p9_debug_level; | 58 | extern unsigned int p9_debug_level; |
42 | 59 | ||
@@ -62,9 +79,47 @@ do { \ | |||
62 | format , __FUNCTION__, task_pid_nr(current), ## arg); \ | 79 | format , __FUNCTION__, task_pid_nr(current), ## arg); \ |
63 | } while (0) | 80 | } while (0) |
64 | 81 | ||
82 | /** | ||
83 | * enum p9_msg_t - 9P message types | ||
84 | * @P9_TVERSION: version handshake request | ||
85 | * @P9_RVERSION: version handshake response | ||
86 | * @P9_TAUTH: request to establish authentication channel | ||
87 | * @P9_RAUTH: response with authentication information | ||
88 | * @P9_TATTACH: establish user access to file service | ||
89 | * @P9_RATTACH: response with top level handle to file hierarchy | ||
90 | * @P9_TERROR: not used | ||
91 | * @P9_RERROR: response for any failed request | ||
92 | * @P9_TFLUSH: request to abort a previous request | ||
93 | * @P9_RFLUSH: response when previous request has been cancelled | ||
94 | * @P9_TWALK: descend a directory hierarchy | ||
95 | * @P9_RWALK: response with new handle for position within hierarchy | ||
96 | * @P9_TOPEN: prepare a handle for I/O on an existing file | ||
97 | * @P9_ROPEN: response with file access information | ||
98 | * @P9_TCREATE: prepare a handle for I/O on a new file | ||
99 | * @P9_RCREATE: response with file access information | ||
100 | * @P9_TREAD: request to transfer data from a file or directory | ||
101 | * @P9_RREAD: response with data requested | ||
102 | * @P9_TWRITE: reuqest to transfer data to a file | ||
103 | * @P9_RWRITE: response with out much data was transfered to file | ||
104 | * @P9_TCLUNK: forget about a handle to an entity within the file system | ||
105 | * @P9_RCLUNK: response when server has forgotten about the handle | ||
106 | * @P9_TREMOVE: request to remove an entity from the hierarchy | ||
107 | * @P9_RREMOVE: response when server has removed the entity | ||
108 | * @P9_TSTAT: request file entity attributes | ||
109 | * @P9_RSTAT: response with file entity attributes | ||
110 | * @P9_TWSTAT: request to update file entity attributes | ||
111 | * @P9_RWSTAT: response when file entity attributes are updated | ||
112 | * | ||
113 | * There are 14 basic operations in 9P2000, paired as | ||
114 | * requests and responses. The one special case is ERROR | ||
115 | * as there is no @P9_TERROR request for clients to transmit to | ||
116 | * the server, but the server may respond to any other request | ||
117 | * with an @P9_RERROR. | ||
118 | * | ||
119 | * See Also: http://plan9.bell-labs.com/sys/man/5/INDEX.html | ||
120 | */ | ||
65 | 121 | ||
66 | /* Message Types */ | 122 | enum p9_msg_t { |
67 | enum { | ||
68 | P9_TVERSION = 100, | 123 | P9_TVERSION = 100, |
69 | P9_RVERSION, | 124 | P9_RVERSION, |
70 | P9_TAUTH = 102, | 125 | P9_TAUTH = 102, |
@@ -95,30 +150,71 @@ enum { | |||
95 | P9_RWSTAT, | 150 | P9_RWSTAT, |
96 | }; | 151 | }; |
97 | 152 | ||
98 | /* open modes */ | 153 | /** |
99 | enum { | 154 | * enum p9_open_mode_t - 9P open modes |
155 | * @P9_OREAD: open file for reading only | ||
156 | * @P9_OWRITE: open file for writing only | ||
157 | * @P9_ORDWR: open file for reading or writing | ||
158 | * @P9_OEXEC: open file for execution | ||
159 | * @P9_OTRUNC: truncate file to zero-length before opening it | ||
160 | * @P9_OREXEC: close the file when an exec(2) system call is made | ||
161 | * @P9_ORCLOSE: remove the file when the file is closed | ||
162 | * @P9_OAPPEND: open the file and seek to the end | ||
163 | * @P9_OEXCL: only create a file, do not open it | ||
164 | * | ||
165 | * 9P open modes differ slightly from Posix standard modes. | ||
166 | * In particular, there are extra modes which specify different | ||
167 | * semantic behaviors than may be available on standard Posix | ||
168 | * systems. For example, @P9_OREXEC and @P9_ORCLOSE are modes that | ||
169 | * most likely will not be issued from the Linux VFS client, but may | ||
170 | * be supported by servers. | ||
171 | * | ||
172 | * See Also: http://plan9.bell-labs.com/magic/man2html/2/open | ||
173 | */ | ||
174 | |||
175 | enum p9_open_mode_t { | ||
100 | P9_OREAD = 0x00, | 176 | P9_OREAD = 0x00, |
101 | P9_OWRITE = 0x01, | 177 | P9_OWRITE = 0x01, |
102 | P9_ORDWR = 0x02, | 178 | P9_ORDWR = 0x02, |
103 | P9_OEXEC = 0x03, | 179 | P9_OEXEC = 0x03, |
104 | P9_OEXCL = 0x04, | ||
105 | P9_OTRUNC = 0x10, | 180 | P9_OTRUNC = 0x10, |
106 | P9_OREXEC = 0x20, | 181 | P9_OREXEC = 0x20, |
107 | P9_ORCLOSE = 0x40, | 182 | P9_ORCLOSE = 0x40, |
108 | P9_OAPPEND = 0x80, | 183 | P9_OAPPEND = 0x80, |
109 | }; | 184 | P9_OEXCL = 0x1000, |
110 | 185 | }; | |
111 | /* permissions */ | 186 | |
112 | enum { | 187 | /** |
188 | * enum p9_perm_t - 9P permissions | ||
189 | * @P9_DMDIR: mode bite for directories | ||
190 | * @P9_DMAPPEND: mode bit for is append-only | ||
191 | * @P9_DMEXCL: mode bit for excluse use (only one open handle allowed) | ||
192 | * @P9_DMMOUNT: mode bite for mount points | ||
193 | * @P9_DMAUTH: mode bit for authentication file | ||
194 | * @P9_DMTMP: mode bit for non-backed-up files | ||
195 | * @P9_DMSYMLINK: mode bit for symbolic links (9P2000.u) | ||
196 | * @P9_DMLINK: mode bit for hard-link (9P2000.u) | ||
197 | * @P9_DMDEVICE: mode bit for device files (9P2000.u) | ||
198 | * @P9_DMNAMEDPIPE: mode bit for named pipe (9P2000.u) | ||
199 | * @P9_DMSOCKET: mode bit for socket (9P2000.u) | ||
200 | * @P9_DMSETUID: mode bit for setuid (9P2000.u) | ||
201 | * @P9_DMSETGID: mode bit for setgid (9P2000.u) | ||
202 | * @P9_DMSETVTX: mode bit for sticky bit (9P2000.u) | ||
203 | * | ||
204 | * 9P permissions differ slightly from Posix standard modes. | ||
205 | * | ||
206 | * See Also: http://plan9.bell-labs.com/magic/man2html/2/stat | ||
207 | */ | ||
208 | enum p9_perm_t { | ||
113 | P9_DMDIR = 0x80000000, | 209 | P9_DMDIR = 0x80000000, |
114 | P9_DMAPPEND = 0x40000000, | 210 | P9_DMAPPEND = 0x40000000, |
115 | P9_DMEXCL = 0x20000000, | 211 | P9_DMEXCL = 0x20000000, |
116 | P9_DMMOUNT = 0x10000000, | 212 | P9_DMMOUNT = 0x10000000, |
117 | P9_DMAUTH = 0x08000000, | 213 | P9_DMAUTH = 0x08000000, |
118 | P9_DMTMP = 0x04000000, | 214 | P9_DMTMP = 0x04000000, |
215 | /* 9P2000.u extensions */ | ||
119 | P9_DMSYMLINK = 0x02000000, | 216 | P9_DMSYMLINK = 0x02000000, |
120 | P9_DMLINK = 0x01000000, | 217 | P9_DMLINK = 0x01000000, |
121 | /* 9P2000.u extensions */ | ||
122 | P9_DMDEVICE = 0x00800000, | 218 | P9_DMDEVICE = 0x00800000, |
123 | P9_DMNAMEDPIPE = 0x00200000, | 219 | P9_DMNAMEDPIPE = 0x00200000, |
124 | P9_DMSOCKET = 0x00100000, | 220 | P9_DMSOCKET = 0x00100000, |
@@ -127,8 +223,26 @@ enum { | |||
127 | P9_DMSETVTX = 0x00010000, | 223 | P9_DMSETVTX = 0x00010000, |
128 | }; | 224 | }; |
129 | 225 | ||
130 | /* qid.types */ | 226 | /** |
131 | enum { | 227 | * enum p9_qid_t - QID types |
228 | * @P9_QTDIR: directory | ||
229 | * @P9_QTAPPEND: append-only | ||
230 | * @P9_QTEXCL: excluse use (only one open handle allowed) | ||
231 | * @P9_QTMOUNT: mount points | ||
232 | * @P9_QTAUTH: authentication file | ||
233 | * @P9_QTTMP: non-backed-up files | ||
234 | * @P9_QTSYMLINK: symbolic links (9P2000.u) | ||
235 | * @P9_QTLINK: hard-link (9P2000.u) | ||
236 | * @P9_QTFILE: normal files | ||
237 | * | ||
238 | * QID types are a subset of permissions - they are primarily | ||
239 | * used to differentiate semantics for a file system entity via | ||
240 | * a jump-table. Their value is also the most signifigant 16 bits | ||
241 | * of the permission_t | ||
242 | * | ||
243 | * See Also: http://plan9.bell-labs.com/magic/man2html/2/stat | ||
244 | */ | ||
245 | enum p9_qid_t { | ||
132 | P9_QTDIR = 0x80, | 246 | P9_QTDIR = 0x80, |
133 | P9_QTAPPEND = 0x40, | 247 | P9_QTAPPEND = 0x40, |
134 | P9_QTEXCL = 0x20, | 248 | P9_QTEXCL = 0x20, |
@@ -140,6 +254,7 @@ enum { | |||
140 | P9_QTFILE = 0x00, | 254 | P9_QTFILE = 0x00, |
141 | }; | 255 | }; |
142 | 256 | ||
257 | /* 9P Magic Numbers */ | ||
143 | #define P9_NOTAG (u16)(~0) | 258 | #define P9_NOTAG (u16)(~0) |
144 | #define P9_NOFID (u32)(~0) | 259 | #define P9_NOFID (u32)(~0) |
145 | #define P9_MAXWELEM 16 | 260 | #define P9_MAXWELEM 16 |
@@ -147,19 +262,69 @@ enum { | |||
147 | /* ample room for Twrite/Rread header */ | 262 | /* ample room for Twrite/Rread header */ |
148 | #define P9_IOHDRSZ 24 | 263 | #define P9_IOHDRSZ 24 |
149 | 264 | ||
265 | /** | ||
266 | * struct p9_str - length prefixed string type | ||
267 | * @len: length of the string | ||
268 | * @str: the string | ||
269 | * | ||
270 | * The protocol uses length prefixed strings for all | ||
271 | * string data, so we replicate that for our internal | ||
272 | * string members. | ||
273 | */ | ||
274 | |||
150 | struct p9_str { | 275 | struct p9_str { |
151 | u16 len; | 276 | u16 len; |
152 | char *str; | 277 | char *str; |
153 | }; | 278 | }; |
154 | 279 | ||
155 | /* qids are the unique ID for a file (like an inode */ | 280 | /** |
281 | * struct p9_qid - file system entity information | ||
282 | * @type: 8-bit type &p9_qid_t | ||
283 | * @version: 16-bit monotonically incrementing version number | ||
284 | * @path: 64-bit per-server-unique ID for a file system element | ||
285 | * | ||
286 | * qids are identifiers used by 9P servers to track file system | ||
287 | * entities. The type is used to differentiate semantics for operations | ||
288 | * on the entity (ie. read means something different on a directory than | ||
289 | * on a file). The path provides a server unique index for an entity | ||
290 | * (roughly analogous to an inode number), while the version is updated | ||
291 | * every time a file is modified and can be used to maintain cache | ||
292 | * coherency between clients and serves. | ||
293 | * Servers will often differentiate purely synthetic entities by setting | ||
294 | * their version to 0, signaling that they should never be cached and | ||
295 | * should be accessed synchronously. | ||
296 | * | ||
297 | * See Also://plan9.bell-labs.com/magic/man2html/2/stat | ||
298 | */ | ||
299 | |||
156 | struct p9_qid { | 300 | struct p9_qid { |
157 | u8 type; | 301 | u8 type; |
158 | u32 version; | 302 | u32 version; |
159 | u64 path; | 303 | u64 path; |
160 | }; | 304 | }; |
161 | 305 | ||
162 | /* Plan 9 file metadata (stat) structure */ | 306 | /** |
307 | * struct p9_stat - file system metadata information | ||
308 | * @size: length prefix for this stat structure instance | ||
309 | * @type: the type of the server (equivilent to a major number) | ||
310 | * @dev: the sub-type of the server (equivilent to a minor number) | ||
311 | * @qid: unique id from the server of type &p9_qid | ||
312 | * @mode: Plan 9 format permissions of type &p9_perm_t | ||
313 | * @atime: Last access/read time | ||
314 | * @mtime: Last modify/write time | ||
315 | * @length: file length | ||
316 | * @name: last element of path (aka filename) in type &p9_str | ||
317 | * @uid: owner name in type &p9_str | ||
318 | * @gid: group owner in type &p9_str | ||
319 | * @muid: last modifier in type &p9_str | ||
320 | * @extension: area used to encode extended UNIX support in type &p9_str | ||
321 | * @n_uid: numeric user id of owner (part of 9p2000.u extension) | ||
322 | * @n_gid: numeric group id (part of 9p2000.u extension) | ||
323 | * @n_muid: numeric user id of laster modifier (part of 9p2000.u extension) | ||
324 | * | ||
325 | * See Also: http://plan9.bell-labs.com/magic/man2html/2/stat | ||
326 | */ | ||
327 | |||
163 | struct p9_stat { | 328 | struct p9_stat { |
164 | u16 size; | 329 | u16 size; |
165 | u16 type; | 330 | u16 type; |
@@ -179,10 +344,14 @@ struct p9_stat { | |||
179 | u32 n_muid; /* 9p2000.u extensions */ | 344 | u32 n_muid; /* 9p2000.u extensions */ |
180 | }; | 345 | }; |
181 | 346 | ||
182 | /* file metadata (stat) structure used to create Twstat message | 347 | /* |
183 | The is similar to p9_stat, but the strings don't point to | 348 | * file metadata (stat) structure used to create Twstat message |
184 | the same memory block and should be freed separately | 349 | * The is identical to &p9_stat, but the strings don't point to |
185 | */ | 350 | * the same memory block and should be freed separately |
351 | * | ||
352 | * See Also: http://plan9.bell-labs.com/magic/man2html/2/stat | ||
353 | */ | ||
354 | |||
186 | struct p9_wstat { | 355 | struct p9_wstat { |
187 | u16 size; | 356 | u16 size; |
188 | u16 type; | 357 | u16 type; |
@@ -335,10 +504,20 @@ struct p9_twstat { | |||
335 | struct p9_rwstat { | 504 | struct p9_rwstat { |
336 | }; | 505 | }; |
337 | 506 | ||
338 | /* | 507 | /** |
339 | * fcall is the primary packet structure | 508 | * struct p9_fcall - primary packet structure |
340 | * | 509 | * @size: prefixed length of the structure |
341 | */ | 510 | * @id: protocol operating identifier of type &p9_msg_t |
511 | * @tag: transaction id of the request | ||
512 | * @sdata: payload | ||
513 | * @params: per-operation parameters | ||
514 | * | ||
515 | * &p9_fcall represents the structure for all 9P RPC | ||
516 | * transactions. Requests are packaged into fcalls, and reponses | ||
517 | * must be extracted from them. | ||
518 | * | ||
519 | * See Also: http://plan9.bell-labs.com/magic/man2html/2/fcall | ||
520 | */ | ||
342 | 521 | ||
343 | struct p9_fcall { | 522 | struct p9_fcall { |
344 | u32 size; | 523 | u32 size; |
@@ -416,4 +595,5 @@ int p9_idpool_check(int id, struct p9_idpool *p); | |||
416 | 595 | ||
417 | int p9_error_init(void); | 596 | int p9_error_init(void); |
418 | int p9_errstr2errno(char *, int); | 597 | int p9_errstr2errno(char *, int); |
598 | int p9_trans_fd_init(void); | ||
419 | #endif /* NET_9P_H */ | 599 | #endif /* NET_9P_H */ |
diff --git a/include/net/9p/client.h b/include/net/9p/client.h index e52f93d9ac5f..c936dd14de41 100644 --- a/include/net/9p/client.h +++ b/include/net/9p/client.h | |||
@@ -26,6 +26,23 @@ | |||
26 | #ifndef NET_9P_CLIENT_H | 26 | #ifndef NET_9P_CLIENT_H |
27 | #define NET_9P_CLIENT_H | 27 | #define NET_9P_CLIENT_H |
28 | 28 | ||
29 | /** | ||
30 | * struct p9_client - per client instance state | ||
31 | * @lock: protect @fidlist | ||
32 | * @msize: maximum data size negotiated by protocol | ||
33 | * @dotu: extension flags negotiated by protocol | ||
34 | * @trans_mod: module API instantiated with this client | ||
35 | * @trans: tranport instance state and API | ||
36 | * @conn: connection state information used by trans_fd | ||
37 | * @fidpool: fid handle accounting for session | ||
38 | * @fidlist: List of active fid handles | ||
39 | * | ||
40 | * The client structure is used to keep track of various per-client | ||
41 | * state that has been instantiated. | ||
42 | * | ||
43 | * Bugs: duplicated data and potentially unnecessary elements. | ||
44 | */ | ||
45 | |||
29 | struct p9_client { | 46 | struct p9_client { |
30 | spinlock_t lock; /* protect client structure */ | 47 | spinlock_t lock; /* protect client structure */ |
31 | int msize; | 48 | int msize; |
@@ -38,6 +55,24 @@ struct p9_client { | |||
38 | struct list_head fidlist; | 55 | struct list_head fidlist; |
39 | }; | 56 | }; |
40 | 57 | ||
58 | /** | ||
59 | * struct p9_fid - file system entity handle | ||
60 | * @clnt: back pointer to instantiating &p9_client | ||
61 | * @fid: numeric identifier for this handle | ||
62 | * @mode: current mode of this fid (enum?) | ||
63 | * @qid: the &p9_qid server identifier this handle points to | ||
64 | * @iounit: the server reported maximum transaction size for this file | ||
65 | * @uid: the numeric uid of the local user who owns this handle | ||
66 | * @aux: transport specific information (unused?) | ||
67 | * @rdir_fpos: tracks offset of file position when reading directory contents | ||
68 | * @rdir_pos: (unused?) | ||
69 | * @rdir_fcall: holds response of last directory read request | ||
70 | * @flist: per-client-instance fid tracking | ||
71 | * @dlist: per-dentry fid tracking | ||
72 | * | ||
73 | * TODO: This needs lots of explanation. | ||
74 | */ | ||
75 | |||
41 | struct p9_fid { | 76 | struct p9_fid { |
42 | struct p9_client *clnt; | 77 | struct p9_client *clnt; |
43 | u32 fid; | 78 | u32 fid; |
diff --git a/include/net/9p/transport.h b/include/net/9p/transport.h index d2209ae9d18b..0db3a4038dc0 100644 --- a/include/net/9p/transport.h +++ b/include/net/9p/transport.h | |||
@@ -26,12 +26,40 @@ | |||
26 | #ifndef NET_9P_TRANSPORT_H | 26 | #ifndef NET_9P_TRANSPORT_H |
27 | #define NET_9P_TRANSPORT_H | 27 | #define NET_9P_TRANSPORT_H |
28 | 28 | ||
29 | /** | ||
30 | * enum p9_trans_status - different states of underlying transports | ||
31 | * @Connected: transport is connected and healthy | ||
32 | * @Disconnected: transport has been disconnected | ||
33 | * @Hung: transport is connected by wedged | ||
34 | * | ||
35 | * This enumeration details the various states a transport | ||
36 | * instatiation can be in. | ||
37 | */ | ||
38 | |||
29 | enum p9_trans_status { | 39 | enum p9_trans_status { |
30 | Connected, | 40 | Connected, |
31 | Disconnected, | 41 | Disconnected, |
32 | Hung, | 42 | Hung, |
33 | }; | 43 | }; |
34 | 44 | ||
45 | /** | ||
46 | * struct p9_trans - per-transport state and API | ||
47 | * @status: transport &p9_trans_status | ||
48 | * @msize: negotiated maximum packet size (duplicate from client) | ||
49 | * @extended: negotiated protocol extensions (duplicate from client) | ||
50 | * @priv: transport private data | ||
51 | * @close: member function to disconnect and close the transport | ||
52 | * @rpc: member function to issue a request to the transport | ||
53 | * | ||
54 | * This is the basic API for a transport instance. It is used as | ||
55 | * a handle by the client to issue requests. This interface is currently | ||
56 | * in flux during reorganization. | ||
57 | * | ||
58 | * Bugs: there is lots of duplicated data here and its not clear that | ||
59 | * the member functions need to be per-instance versus per transport | ||
60 | * module. | ||
61 | */ | ||
62 | |||
35 | struct p9_trans { | 63 | struct p9_trans { |
36 | enum p9_trans_status status; | 64 | enum p9_trans_status status; |
37 | int msize; | 65 | int msize; |
@@ -42,6 +70,21 @@ struct p9_trans { | |||
42 | struct p9_fcall **rc); | 70 | struct p9_fcall **rc); |
43 | }; | 71 | }; |
44 | 72 | ||
73 | /** | ||
74 | * struct p9_trans_module - transport module interface | ||
75 | * @list: used to maintain a list of currently available transports | ||
76 | * @name: the human-readable name of the transport | ||
77 | * @maxsize: transport provided maximum packet size | ||
78 | * @def: set if this transport should be considered the default | ||
79 | * @create: member function to create a new connection on this transport | ||
80 | * | ||
81 | * This is the basic API for a transport module which is registered by the | ||
82 | * transport module with the 9P core network module and used by the client | ||
83 | * to instantiate a new connection on a transport. | ||
84 | * | ||
85 | * Bugs: the transport module list isn't protected. | ||
86 | */ | ||
87 | |||
45 | struct p9_trans_module { | 88 | struct p9_trans_module { |
46 | struct list_head list; | 89 | struct list_head list; |
47 | char *name; /* name of transport */ | 90 | char *name; /* name of transport */ |
@@ -53,5 +96,4 @@ struct p9_trans_module { | |||
53 | void v9fs_register_trans(struct p9_trans_module *m); | 96 | void v9fs_register_trans(struct p9_trans_module *m); |
54 | struct p9_trans_module *v9fs_match_trans(const substring_t *name); | 97 | struct p9_trans_module *v9fs_match_trans(const substring_t *name); |
55 | struct p9_trans_module *v9fs_default_trans(void); | 98 | struct p9_trans_module *v9fs_default_trans(void); |
56 | |||
57 | #endif /* NET_9P_TRANSPORT_H */ | 99 | #endif /* NET_9P_TRANSPORT_H */ |
diff --git a/include/net/ip.h b/include/net/ip.h index 6d7bcd5e62d4..3b40bc2234be 100644 --- a/include/net/ip.h +++ b/include/net/ip.h | |||
@@ -210,7 +210,7 @@ int ip_dont_fragment(struct sock *sk, struct dst_entry *dst) | |||
210 | { | 210 | { |
211 | return (inet_sk(sk)->pmtudisc == IP_PMTUDISC_DO || | 211 | return (inet_sk(sk)->pmtudisc == IP_PMTUDISC_DO || |
212 | (inet_sk(sk)->pmtudisc == IP_PMTUDISC_WANT && | 212 | (inet_sk(sk)->pmtudisc == IP_PMTUDISC_WANT && |
213 | !(dst_metric(dst, RTAX_LOCK)&(1<<RTAX_MTU)))); | 213 | !(dst_metric_locked(dst, RTAX_MTU)))); |
214 | } | 214 | } |
215 | 215 | ||
216 | extern void __ip_select_ident(struct iphdr *iph, struct dst_entry *dst, int more); | 216 | extern void __ip_select_ident(struct iphdr *iph, struct dst_entry *dst, int more); |
diff --git a/include/net/irda/discovery.h b/include/net/irda/discovery.h index e4efad1f9eff..0ce93398720d 100644 --- a/include/net/irda/discovery.h +++ b/include/net/irda/discovery.h | |||
@@ -57,9 +57,6 @@ typedef union { | |||
57 | __u8 byte[2]; | 57 | __u8 byte[2]; |
58 | } __u16_host_order; | 58 | } __u16_host_order; |
59 | 59 | ||
60 | /* Same purpose, different application */ | ||
61 | #define u16ho(array) (* ((__u16 *) array)) | ||
62 | |||
63 | /* Types of discovery */ | 60 | /* Types of discovery */ |
64 | typedef enum { | 61 | typedef enum { |
65 | DISCOVERY_LOG, /* What's in our discovery log */ | 62 | DISCOVERY_LOG, /* What's in our discovery log */ |
diff --git a/include/net/syncppp.h b/include/net/syncppp.h index 877efa434700..e43f4070d892 100644 --- a/include/net/syncppp.h +++ b/include/net/syncppp.h | |||
@@ -59,7 +59,7 @@ struct ppp_device | |||
59 | 59 | ||
60 | static inline struct sppp *sppp_of(struct net_device *dev) | 60 | static inline struct sppp *sppp_of(struct net_device *dev) |
61 | { | 61 | { |
62 | struct ppp_device **ppp = dev->priv; | 62 | struct ppp_device **ppp = dev->ml_priv; |
63 | BUG_ON((*ppp)->dev != dev); | 63 | BUG_ON((*ppp)->dev != dev); |
64 | return &(*ppp)->sppp; | 64 | return &(*ppp)->sppp; |
65 | } | 65 | } |
diff --git a/include/net/xfrm.h b/include/net/xfrm.h index d1350bcccb03..2933d7474a79 100644 --- a/include/net/xfrm.h +++ b/include/net/xfrm.h | |||
@@ -648,14 +648,46 @@ extern void xfrm_audit_state_notfound(struct sk_buff *skb, u16 family, | |||
648 | extern void xfrm_audit_state_icvfail(struct xfrm_state *x, | 648 | extern void xfrm_audit_state_icvfail(struct xfrm_state *x, |
649 | struct sk_buff *skb, u8 proto); | 649 | struct sk_buff *skb, u8 proto); |
650 | #else | 650 | #else |
651 | #define xfrm_audit_policy_add(x, r, a, se, s) do { ; } while (0) | 651 | |
652 | #define xfrm_audit_policy_delete(x, r, a, se, s) do { ; } while (0) | 652 | static inline void xfrm_audit_policy_add(struct xfrm_policy *xp, int result, |
653 | #define xfrm_audit_state_add(x, r, a, se, s) do { ; } while (0) | 653 | u32 auid, u32 ses, u32 secid) |
654 | #define xfrm_audit_state_delete(x, r, a, se, s) do { ; } while (0) | 654 | { |
655 | #define xfrm_audit_state_replay_overflow(x, s) do { ; } while (0) | 655 | } |
656 | #define xfrm_audit_state_notfound_simple(s, f) do { ; } while (0) | 656 | |
657 | #define xfrm_audit_state_notfound(s, f, sp, sq) do { ; } while (0) | 657 | static inline void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result, |
658 | #define xfrm_audit_state_icvfail(x, s, p) do { ; } while (0) | 658 | u32 auid, u32 ses, u32 secid) |
659 | { | ||
660 | } | ||
661 | |||
662 | static inline void xfrm_audit_state_add(struct xfrm_state *x, int result, | ||
663 | u32 auid, u32 ses, u32 secid) | ||
664 | { | ||
665 | } | ||
666 | |||
667 | static inline void xfrm_audit_state_delete(struct xfrm_state *x, int result, | ||
668 | u32 auid, u32 ses, u32 secid) | ||
669 | { | ||
670 | } | ||
671 | |||
672 | static inline void xfrm_audit_state_replay_overflow(struct xfrm_state *x, | ||
673 | struct sk_buff *skb) | ||
674 | { | ||
675 | } | ||
676 | |||
677 | static inline void xfrm_audit_state_notfound_simple(struct sk_buff *skb, | ||
678 | u16 family) | ||
679 | { | ||
680 | } | ||
681 | |||
682 | static inline void xfrm_audit_state_notfound(struct sk_buff *skb, u16 family, | ||
683 | __be32 net_spi, __be32 net_seq) | ||
684 | { | ||
685 | } | ||
686 | |||
687 | static inline void xfrm_audit_state_icvfail(struct xfrm_state *x, | ||
688 | struct sk_buff *skb, u8 proto) | ||
689 | { | ||
690 | } | ||
659 | #endif /* CONFIG_AUDITSYSCALL */ | 691 | #endif /* CONFIG_AUDITSYSCALL */ |
660 | 692 | ||
661 | static inline void xfrm_pol_hold(struct xfrm_policy *policy) | 693 | static inline void xfrm_pol_hold(struct xfrm_policy *policy) |
diff --git a/include/sound/soc.h b/include/sound/soc.h index e6ea6f750941..d3c8c033dff8 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h | |||
@@ -238,7 +238,7 @@ int snd_soc_info_volsw(struct snd_kcontrol *kcontrol, | |||
238 | struct snd_ctl_elem_info *uinfo); | 238 | struct snd_ctl_elem_info *uinfo); |
239 | int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol, | 239 | int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol, |
240 | struct snd_ctl_elem_info *uinfo); | 240 | struct snd_ctl_elem_info *uinfo); |
241 | #define snd_soc_info_bool_ext snd_ctl_boolean_mono | 241 | #define snd_soc_info_bool_ext snd_ctl_boolean_mono_info |
242 | int snd_soc_get_volsw(struct snd_kcontrol *kcontrol, | 242 | int snd_soc_get_volsw(struct snd_kcontrol *kcontrol, |
243 | struct snd_ctl_elem_value *ucontrol); | 243 | struct snd_ctl_elem_value *ucontrol); |
244 | int snd_soc_put_volsw(struct snd_kcontrol *kcontrol, | 244 | int snd_soc_put_volsw(struct snd_kcontrol *kcontrol, |