7f0666d5b1ee823a252fc8c4844429f8a2d88022
[oweals/openwrt.git] / target / linux / ramips / files / arch / mips / include / asm / mach-ralink / rt305x_regs.h
1 /*
2  *  Ralink RT305 SoC register definitions
3  *
4  *  Copyright (C) 2009 Gabor Juhos <juhosg@openwrt.org>
5  *
6  *  This program is free software; you can redistribute it and/or modify it
7  *  under the terms of the GNU General Public License version 2 as published
8  *  by the Free Software Foundation.
9  */
10
11 #ifndef _RT305X_REGS_H_
12 #define _RT305X_REGS_H_
13
14 #include <linux/bitops.h>
15
16 #define RT305X_SDRAM_BASE       0x00000000
17 #define RT305X_SYSC_BASE        0x10000000
18 #define RT305X_TIMER_BASE       0x10000100
19 #define RT305X_INTC_BASE        0x10000200
20 #define RT305X_MEMC_BASE        0x10000300
21 #define RT305X_PCM_BASE         0x10000400
22 #define RT305X_UART0_BASE       0x10000500
23 #define RT305X_GDMA_BASE        0x10000700
24 #define RT305X_NANDC_BASE       0x10000800
25 #define RT305X_I2C_BASE         0x10000900
26 #define RT305X_I2S_BASE         0x10000a00
27 #define RT305X_SPI_BASE         0x10000b00
28 #define RT305X_UART1_BASE       0x10000c00
29 #define RT305X_FE_BASE          0x10010000
30 #define RT305X_SWITCH_BASE      0x10110000
31 #define RT305X_WMAC_BASE        0x00180000
32 #define RT305X_OTG_BASE         0x101c0000
33 #define RT305X_ROM_BASE         0x00400000
34 #define RT305X_FLASH1_BASE      0x1b000000
35 #define RT305X_FLASH0_BASE      0x1f000000
36
37 #define RT305X_SYSC_SIZE        0x100
38 #define RT305X_INTC_SIZE        0x100
39 #define RT305X_MEMC_SIZE        0x100
40 #define RT305X_UART0_SIZE       0x100
41 #define RT305X_UART1_SIZE       0x100
42 #define RT305X_FLASH1_SIZE      (16 * 1024 * 1024)
43 #define RT305X_FLASH0_SIZE      (4 * 1024 * 1024)
44
45 /* SYSC registers */
46 #define SYSC_REG_CHIP_NAME0     0x000   /* Chip Name 0 */
47 #define SYSC_REG_CHIP_NAME1     0x004   /* Chip Name 1 */
48 #define SYSC_REG_CHIP_ID        0x00c   /* Chip Identification */
49 #define SYSC_REG_SYSTEM_CONFIG  0x010   /* System Configuration */
50 #define SYSC_REG_RESET_CTRL     0x034   /* Reset Control*/
51 #define SYSC_REG_RESET_STATUS   0x038   /* Reset Status*/
52 #define SYSC_REG_GPIO_MODE      0x060   /* GPIO Purpose Select */
53 #define SYSC_REG_IA_ADDRESS     0x310   /* Illegal Access Address */
54 #define SYSC_REG_IA_TYPE        0x314   /* Illegal Access Type */
55
56 #define CHIP_ID_ID_MASK         0xff
57 #define CHIP_ID_ID_SHIFT        8
58 #define CHIP_ID_REV_MASK        0xff
59
60 #define SYSTEM_CONFIG_CPUCLK_SHIFT      18
61 #define SYSTEM_CONFIG_CPUCLK_MASK       0x1
62 #define SYSTEM_CONFIG_CPUCLK_320        0x0
63 #define SYSTEM_CONFIG_CPUCLK_384        0x1
64
65 #define RT305X_GPIO_MODE_I2C            BIT(0)
66 #define RT305X_GPIO_MODE_SPI            BIT(1)
67 #define RT305X_GPIO_MODE_UART0_SHIFT    2
68 #define RT305X_GPIO_MODE_UART0_MASK     0x7
69 #define RT305X_GPIO_MODE_UART0(x)       ((x) << RT305X_GPIO_MODE_UART0_SHIFT)
70 #define RT305X_GPIO_MODE_UARTF          0x0
71 #define RT305X_GPIO_MODE_PCM_UARTF      0x1
72 #define RT305X_GPIO_MODE_PCM_I2S        0x2
73 #define RT305X_GPIO_MODE_I2S_UARTF      0x3
74 #define RT305X_GPIO_MODE_PCM_GPIO       0x4
75 #define RT305X_GPIO_MODE_GPIO_UARTF     0x5
76 #define RT305X_GPIO_MODE_GPIO_I2S       0x6
77 #define RT305X_GPIO_MODE_GPIO           0x7
78 #define RT305X_GPIO_MODE_UART1          BIT(5)
79 #define RT305X_GPIO_MODE_JTAG           BIT(6)
80 #define RT305X_GPIO_MODE_MDIO           BIT(7)
81 #define RT305X_GPIO_MODE_SDRAM          BIT(8)
82 #define RT305X_GPIO_MODE_RGMII          BIT(9)
83
84 #define RT305X_RESET_SYSTEM     BIT(0)
85 #define RT305X_RESET_TIMER      BIT(8)
86 #define RT305X_RESET_INTC       BIT(9)
87 #define RT305X_RESET_MEMC       BIT(10)
88 #define RT305X_RESET_PCM        BIT(11)
89 #define RT305X_RESET_UART0      BIT(12)
90 #define RT305X_RESET_PIO        BIT(13)
91 #define RT305X_RESET_DMA        BIT(14)
92 #define RT305X_RESET_I2C        BIT(16)
93 #define RT305X_RESET_I2S        BIT(17)
94 #define RT305X_RESET_SPI        BIT(18)
95 #define RT305X_RESET_UART1      BIT(19)
96 #define RT305X_RESET_WNIC       BIT(20)
97 #define RT305X_RESET_FE         BIT(21)
98 #define RT305X_RESET_OTG        BIT(22)
99 #define RT305X_RESET_ESW        BIT(23)
100
101 #define RT305X_INTC_INT_SYSCTL  BIT(0)
102 #define RT305X_INTC_INT_TIMER0  BIT(1)
103 #define RT305X_INTC_INT_TIMER1  BIT(2)
104 #define RT305X_INTC_INT_IA      BIT(3)
105 #define RT305X_INTC_INT_PCM     BIT(4)
106 #define RT305X_INTC_INT_UART0   BIT(5)
107 #define RT305X_INTC_INT_PIO     BIT(6)
108 #define RT305X_INTC_INT_DMA     BIT(7)
109 #define RT305X_INTC_INT_NAND    BIT(8)
110 #define RT305X_INTC_INT_PERFC   BIT(9)
111 #define RT305X_INTC_INT_I2S     BIT(10)
112 #define RT305X_INTC_INT_UART1   BIT(12)
113 #define RT305X_INTC_INT_ESW     BIT(17)
114 #define RT305X_INTC_INT_OTG     BIT(18)
115 #define RT305X_INTC_INT_GLOBAL  BIT(31)
116
117 /* MEMC registers */
118 #define MEMC_REG_SDRAM_CFG0     0x00
119 #define MEMC_REG_SDRAM_CFG1     0x04
120 #define MEMC_REG_FLASH_CFG0     0x08
121 #define MEMC_REG_FLASH_CFG1     0x0c
122 #define MEMC_REG_IA_ADDR        0x10
123 #define MEMC_REG_IA_TYPE        0x14
124
125 #define FLASH_CFG_WIDTH_SHIFT   26
126 #define FLASH_CFG_WIDTH_MASK    0x3
127 #define FLASH_CFG_WIDTH_8BIT    0x0
128 #define FLASH_CFG_WIDTH_16BIT   0x1
129 #define FLASH_CFG_WIDTH_32BIT   0x2
130
131 /* UART registers */
132 #define UART_REG_RX     0
133 #define UART_REG_TX     1
134 #define UART_REG_IER    2
135 #define UART_REG_IIR    3
136 #define UART_REG_FCR    4
137 #define UART_REG_LCR    5
138 #define UART_REG_MCR    6
139 #define UART_REG_LSR    7
140
141 #endif /* _RT305X_REGS_H_ */