Statistics
| Branch: | Revision:

root / hw / omap.h @ 6c510fbf

History | View | Annotate | Download (35.6 kB)

1 c3d2689d balrog
/*
2 c3d2689d balrog
 * Texas Instruments OMAP processors.
3 c3d2689d balrog
 *
4 b4e3104b balrog
 * Copyright (C) 2006-2008 Andrzej Zaborowski  <balrog@zabor.org>
5 c3d2689d balrog
 *
6 c3d2689d balrog
 * This program is free software; you can redistribute it and/or
7 c3d2689d balrog
 * modify it under the terms of the GNU General Public License as
8 827df9f3 balrog
 * published by the Free Software Foundation; either version 2 or
9 827df9f3 balrog
 * (at your option) version 3 of the License.
10 c3d2689d balrog
 *
11 c3d2689d balrog
 * This program is distributed in the hope that it will be useful,
12 c3d2689d balrog
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 c3d2689d balrog
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 c3d2689d balrog
 * GNU General Public License for more details.
15 c3d2689d balrog
 *
16 fad6cb1a aurel32
 * You should have received a copy of the GNU General Public License along
17 8167ee88 Blue Swirl
 * with this program; if not, see <http://www.gnu.org/licenses/>.
18 c3d2689d balrog
 */
19 c3d2689d balrog
#ifndef hw_omap_h
20 c3d2689d balrog
# define hw_omap_h                "omap.h"
21 c3d2689d balrog
22 c3d2689d balrog
# define OMAP_EMIFS_BASE        0x00000000
23 827df9f3 balrog
# define OMAP2_Q0_BASE                0x00000000
24 c3d2689d balrog
# define OMAP_CS0_BASE                0x00000000
25 c3d2689d balrog
# define OMAP_CS1_BASE                0x04000000
26 c3d2689d balrog
# define OMAP_CS2_BASE                0x08000000
27 c3d2689d balrog
# define OMAP_CS3_BASE                0x0c000000
28 c3d2689d balrog
# define OMAP_EMIFF_BASE        0x10000000
29 c3d2689d balrog
# define OMAP_IMIF_BASE                0x20000000
30 c3d2689d balrog
# define OMAP_LOCALBUS_BASE        0x30000000
31 827df9f3 balrog
# define OMAP2_Q1_BASE                0x40000000
32 827df9f3 balrog
# define OMAP2_L4_BASE                0x48000000
33 827df9f3 balrog
# define OMAP2_SRAM_BASE        0x40200000
34 827df9f3 balrog
# define OMAP2_L3_BASE                0x68000000
35 827df9f3 balrog
# define OMAP2_Q2_BASE                0x80000000
36 827df9f3 balrog
# define OMAP2_Q3_BASE                0xc0000000
37 c3d2689d balrog
# define OMAP_MPUI_BASE                0xe1000000
38 c3d2689d balrog
39 c3d2689d balrog
# define OMAP730_SRAM_SIZE        0x00032000
40 c3d2689d balrog
# define OMAP15XX_SRAM_SIZE        0x00030000
41 c3d2689d balrog
# define OMAP16XX_SRAM_SIZE        0x00004000
42 c3d2689d balrog
# define OMAP1611_SRAM_SIZE        0x0003e800
43 827df9f3 balrog
# define OMAP242X_SRAM_SIZE        0x000a0000
44 827df9f3 balrog
# define OMAP243X_SRAM_SIZE        0x00010000
45 c3d2689d balrog
# define OMAP_CS0_SIZE                0x04000000
46 c3d2689d balrog
# define OMAP_CS1_SIZE                0x04000000
47 c3d2689d balrog
# define OMAP_CS2_SIZE                0x04000000
48 c3d2689d balrog
# define OMAP_CS3_SIZE                0x04000000
49 c3d2689d balrog
50 827df9f3 balrog
/* omap_clk.c */
51 c3d2689d balrog
struct omap_mpu_state_s;
52 c3d2689d balrog
typedef struct clk *omap_clk;
53 c3d2689d balrog
omap_clk omap_findclk(struct omap_mpu_state_s *mpu, const char *name);
54 c3d2689d balrog
void omap_clk_init(struct omap_mpu_state_s *mpu);
55 c3d2689d balrog
void omap_clk_adduser(struct clk *clk, qemu_irq user);
56 c3d2689d balrog
void omap_clk_get(omap_clk clk);
57 c3d2689d balrog
void omap_clk_put(omap_clk clk);
58 c3d2689d balrog
void omap_clk_onoff(omap_clk clk, int on);
59 c3d2689d balrog
void omap_clk_canidle(omap_clk clk, int can);
60 c3d2689d balrog
void omap_clk_setrate(omap_clk clk, int divide, int multiply);
61 c3d2689d balrog
int64_t omap_clk_getrate(omap_clk clk);
62 c3d2689d balrog
void omap_clk_reparent(omap_clk clk, omap_clk parent);
63 c3d2689d balrog
64 b4e3104b balrog
/* omap[123].c */
65 827df9f3 balrog
struct omap_l4_s;
66 c227f099 Anthony Liguori
struct omap_l4_s *omap_l4_init(target_phys_addr_t base, int ta_num);
67 827df9f3 balrog
68 827df9f3 balrog
struct omap_target_agent_s;
69 827df9f3 balrog
struct omap_target_agent_s *omap_l4ta_get(struct omap_l4_s *bus, int cs);
70 c227f099 Anthony Liguori
target_phys_addr_t omap_l4_attach(struct omap_target_agent_s *ta, int region,
71 827df9f3 balrog
                int iotype);
72 c66fb5bc balrog
# define l4_register_io_memory        cpu_register_io_memory
73 827df9f3 balrog
74 c3d2689d balrog
struct omap_intr_handler_s;
75 c227f099 Anthony Liguori
struct omap_intr_handler_s *omap_inth_init(target_phys_addr_t base,
76 827df9f3 balrog
                unsigned long size, unsigned char nbanks, qemu_irq **pins,
77 106627d0 balrog
                qemu_irq parent_irq, qemu_irq parent_fiq, omap_clk clk);
78 c227f099 Anthony Liguori
struct omap_intr_handler_s *omap2_inth_init(target_phys_addr_t base,
79 827df9f3 balrog
                int size, int nbanks, qemu_irq **pins,
80 827df9f3 balrog
                qemu_irq parent_irq, qemu_irq parent_fiq,
81 827df9f3 balrog
                omap_clk fclk, omap_clk iclk);
82 827df9f3 balrog
void omap_inth_reset(struct omap_intr_handler_s *s);
83 827df9f3 balrog
84 827df9f3 balrog
struct omap_prcm_s;
85 827df9f3 balrog
struct omap_prcm_s *omap_prcm_init(struct omap_target_agent_s *ta,
86 827df9f3 balrog
                qemu_irq mpu_int, qemu_irq dsp_int, qemu_irq iva_int,
87 827df9f3 balrog
                struct omap_mpu_state_s *mpu);
88 827df9f3 balrog
89 827df9f3 balrog
struct omap_sysctl_s;
90 827df9f3 balrog
struct omap_sysctl_s *omap_sysctl_init(struct omap_target_agent_s *ta,
91 827df9f3 balrog
                omap_clk iclk, struct omap_mpu_state_s *mpu);
92 827df9f3 balrog
93 827df9f3 balrog
struct omap_sdrc_s;
94 c227f099 Anthony Liguori
struct omap_sdrc_s *omap_sdrc_init(target_phys_addr_t base);
95 827df9f3 balrog
96 827df9f3 balrog
struct omap_gpmc_s;
97 c227f099 Anthony Liguori
struct omap_gpmc_s *omap_gpmc_init(target_phys_addr_t base, qemu_irq irq);
98 827df9f3 balrog
void omap_gpmc_attach(struct omap_gpmc_s *s, int cs, int iomemtype,
99 c227f099 Anthony Liguori
                void (*base_upd)(void *opaque, target_phys_addr_t new),
100 827df9f3 balrog
                void (*unmap)(void *opaque), void *opaque);
101 29885477 balrog
102 c3d2689d balrog
/*
103 c3d2689d balrog
 * Common IRQ numbers for level 1 interrupt handler
104 c3d2689d balrog
 * See /usr/include/asm-arm/arch-omap/irqs.h in Linux.
105 c3d2689d balrog
 */
106 c3d2689d balrog
# define OMAP_INT_CAMERA                1
107 c3d2689d balrog
# define OMAP_INT_FIQ                        3
108 c3d2689d balrog
# define OMAP_INT_RTDX                        6
109 c3d2689d balrog
# define OMAP_INT_DSP_MMU_ABORT                7
110 c3d2689d balrog
# define OMAP_INT_HOST                        8
111 c3d2689d balrog
# define OMAP_INT_ABORT                        9
112 c3d2689d balrog
# define OMAP_INT_BRIDGE_PRIV                13
113 c3d2689d balrog
# define OMAP_INT_GPIO_BANK1                14
114 c3d2689d balrog
# define OMAP_INT_UART3                        15
115 c3d2689d balrog
# define OMAP_INT_TIMER3                16
116 c3d2689d balrog
# define OMAP_INT_DMA_CH0_6                19
117 c3d2689d balrog
# define OMAP_INT_DMA_CH1_7                20
118 c3d2689d balrog
# define OMAP_INT_DMA_CH2_8                21
119 c3d2689d balrog
# define OMAP_INT_DMA_CH3                22
120 c3d2689d balrog
# define OMAP_INT_DMA_CH4                23
121 c3d2689d balrog
# define OMAP_INT_DMA_CH5                24
122 c3d2689d balrog
# define OMAP_INT_DMA_LCD                25
123 c3d2689d balrog
# define OMAP_INT_TIMER1                26
124 c3d2689d balrog
# define OMAP_INT_WD_TIMER                27
125 c3d2689d balrog
# define OMAP_INT_BRIDGE_PUB                28
126 c3d2689d balrog
# define OMAP_INT_TIMER2                30
127 c3d2689d balrog
# define OMAP_INT_LCD_CTRL                31
128 c3d2689d balrog
129 c3d2689d balrog
/*
130 c3d2689d balrog
 * Common OMAP-15xx IRQ numbers for level 1 interrupt handler
131 c3d2689d balrog
 */
132 c3d2689d balrog
# define OMAP_INT_15XX_IH2_IRQ                0
133 c3d2689d balrog
# define OMAP_INT_15XX_LB_MMU                17
134 c3d2689d balrog
# define OMAP_INT_15XX_LOCAL_BUS        29
135 c3d2689d balrog
136 c3d2689d balrog
/*
137 c3d2689d balrog
 * OMAP-1510 specific IRQ numbers for level 1 interrupt handler
138 c3d2689d balrog
 */
139 c3d2689d balrog
# define OMAP_INT_1510_SPI_TX                4
140 c3d2689d balrog
# define OMAP_INT_1510_SPI_RX                5
141 c3d2689d balrog
# define OMAP_INT_1510_DSP_MAILBOX1        10
142 c3d2689d balrog
# define OMAP_INT_1510_DSP_MAILBOX2        11
143 c3d2689d balrog
144 c3d2689d balrog
/*
145 c3d2689d balrog
 * OMAP-310 specific IRQ numbers for level 1 interrupt handler
146 c3d2689d balrog
 */
147 c3d2689d balrog
# define OMAP_INT_310_McBSP2_TX                4
148 c3d2689d balrog
# define OMAP_INT_310_McBSP2_RX                5
149 c3d2689d balrog
# define OMAP_INT_310_HSB_MAILBOX1        12
150 c3d2689d balrog
# define OMAP_INT_310_HSAB_MMU                18
151 c3d2689d balrog
152 c3d2689d balrog
/*
153 c3d2689d balrog
 * OMAP-1610 specific IRQ numbers for level 1 interrupt handler
154 c3d2689d balrog
 */
155 c3d2689d balrog
# define OMAP_INT_1610_IH2_IRQ                0
156 c3d2689d balrog
# define OMAP_INT_1610_IH2_FIQ                2
157 c3d2689d balrog
# define OMAP_INT_1610_McBSP2_TX        4
158 c3d2689d balrog
# define OMAP_INT_1610_McBSP2_RX        5
159 c3d2689d balrog
# define OMAP_INT_1610_DSP_MAILBOX1        10
160 c3d2689d balrog
# define OMAP_INT_1610_DSP_MAILBOX2        11
161 c3d2689d balrog
# define OMAP_INT_1610_LCD_LINE                12
162 c3d2689d balrog
# define OMAP_INT_1610_GPTIMER1                17
163 c3d2689d balrog
# define OMAP_INT_1610_GPTIMER2                18
164 c3d2689d balrog
# define OMAP_INT_1610_SSR_FIFO_0        29
165 c3d2689d balrog
166 c3d2689d balrog
/*
167 c3d2689d balrog
 * OMAP-730 specific IRQ numbers for level 1 interrupt handler
168 c3d2689d balrog
 */
169 c3d2689d balrog
# define OMAP_INT_730_IH2_FIQ                0
170 c3d2689d balrog
# define OMAP_INT_730_IH2_IRQ                1
171 c3d2689d balrog
# define OMAP_INT_730_USB_NON_ISO        2
172 c3d2689d balrog
# define OMAP_INT_730_USB_ISO                3
173 c3d2689d balrog
# define OMAP_INT_730_ICR                4
174 c3d2689d balrog
# define OMAP_INT_730_EAC                5
175 c3d2689d balrog
# define OMAP_INT_730_GPIO_BANK1        6
176 c3d2689d balrog
# define OMAP_INT_730_GPIO_BANK2        7
177 c3d2689d balrog
# define OMAP_INT_730_GPIO_BANK3        8
178 c3d2689d balrog
# define OMAP_INT_730_McBSP2TX                10
179 c3d2689d balrog
# define OMAP_INT_730_McBSP2RX                11
180 c3d2689d balrog
# define OMAP_INT_730_McBSP2RX_OVF        12
181 c3d2689d balrog
# define OMAP_INT_730_LCD_LINE                14
182 c3d2689d balrog
# define OMAP_INT_730_GSM_PROTECT        15
183 c3d2689d balrog
# define OMAP_INT_730_TIMER3                16
184 c3d2689d balrog
# define OMAP_INT_730_GPIO_BANK5        17
185 c3d2689d balrog
# define OMAP_INT_730_GPIO_BANK6        18
186 c3d2689d balrog
# define OMAP_INT_730_SPGIO_WR                29
187 c3d2689d balrog
188 c3d2689d balrog
/*
189 c3d2689d balrog
 * Common IRQ numbers for level 2 interrupt handler
190 c3d2689d balrog
 */
191 c3d2689d balrog
# define OMAP_INT_KEYBOARD                1
192 c3d2689d balrog
# define OMAP_INT_uWireTX                2
193 c3d2689d balrog
# define OMAP_INT_uWireRX                3
194 c3d2689d balrog
# define OMAP_INT_I2C                        4
195 c3d2689d balrog
# define OMAP_INT_MPUIO                        5
196 c3d2689d balrog
# define OMAP_INT_USB_HHC_1                6
197 c3d2689d balrog
# define OMAP_INT_McBSP3TX                10
198 c3d2689d balrog
# define OMAP_INT_McBSP3RX                11
199 c3d2689d balrog
# define OMAP_INT_McBSP1TX                12
200 c3d2689d balrog
# define OMAP_INT_McBSP1RX                13
201 c3d2689d balrog
# define OMAP_INT_UART1                        14
202 c3d2689d balrog
# define OMAP_INT_UART2                        15
203 c3d2689d balrog
# define OMAP_INT_USB_W2FC                20
204 c3d2689d balrog
# define OMAP_INT_1WIRE                        21
205 c3d2689d balrog
# define OMAP_INT_OS_TIMER                22
206 b30bb3a2 balrog
# define OMAP_INT_OQN                        23
207 c3d2689d balrog
# define OMAP_INT_GAUGE_32K                24
208 c3d2689d balrog
# define OMAP_INT_RTC_TIMER                25
209 c3d2689d balrog
# define OMAP_INT_RTC_ALARM                26
210 c3d2689d balrog
# define OMAP_INT_DSP_MMU                28
211 c3d2689d balrog
212 c3d2689d balrog
/*
213 c3d2689d balrog
 * OMAP-1510 specific IRQ numbers for level 2 interrupt handler
214 c3d2689d balrog
 */
215 c3d2689d balrog
# define OMAP_INT_1510_BT_MCSI1TX        16
216 c3d2689d balrog
# define OMAP_INT_1510_BT_MCSI1RX        17
217 c3d2689d balrog
# define OMAP_INT_1510_SoSSI_MATCH        19
218 c3d2689d balrog
# define OMAP_INT_1510_MEM_STICK        27
219 c3d2689d balrog
# define OMAP_INT_1510_COM_SPI_RO        31
220 c3d2689d balrog
221 c3d2689d balrog
/*
222 c3d2689d balrog
 * OMAP-310 specific IRQ numbers for level 2 interrupt handler
223 c3d2689d balrog
 */
224 c3d2689d balrog
# define OMAP_INT_310_FAC                0
225 c3d2689d balrog
# define OMAP_INT_310_USB_HHC_2                7
226 c3d2689d balrog
# define OMAP_INT_310_MCSI1_FE                16
227 c3d2689d balrog
# define OMAP_INT_310_MCSI2_FE                17
228 c3d2689d balrog
# define OMAP_INT_310_USB_W2FC_ISO        29
229 c3d2689d balrog
# define OMAP_INT_310_USB_W2FC_NON_ISO        30
230 c3d2689d balrog
# define OMAP_INT_310_McBSP2RX_OF        31
231 c3d2689d balrog
232 c3d2689d balrog
/*
233 c3d2689d balrog
 * OMAP-1610 specific IRQ numbers for level 2 interrupt handler
234 c3d2689d balrog
 */
235 c3d2689d balrog
# define OMAP_INT_1610_FAC                0
236 c3d2689d balrog
# define OMAP_INT_1610_USB_HHC_2        7
237 c3d2689d balrog
# define OMAP_INT_1610_USB_OTG                8
238 c3d2689d balrog
# define OMAP_INT_1610_SoSSI                9
239 c3d2689d balrog
# define OMAP_INT_1610_BT_MCSI1TX        16
240 c3d2689d balrog
# define OMAP_INT_1610_BT_MCSI1RX        17
241 c3d2689d balrog
# define OMAP_INT_1610_SoSSI_MATCH        19
242 c3d2689d balrog
# define OMAP_INT_1610_MEM_STICK        27
243 c3d2689d balrog
# define OMAP_INT_1610_McBSP2RX_OF        31
244 c3d2689d balrog
# define OMAP_INT_1610_STI                32
245 c3d2689d balrog
# define OMAP_INT_1610_STI_WAKEUP        33
246 c3d2689d balrog
# define OMAP_INT_1610_GPTIMER3                34
247 c3d2689d balrog
# define OMAP_INT_1610_GPTIMER4                35
248 c3d2689d balrog
# define OMAP_INT_1610_GPTIMER5                36
249 c3d2689d balrog
# define OMAP_INT_1610_GPTIMER6                37
250 c3d2689d balrog
# define OMAP_INT_1610_GPTIMER7                38
251 c3d2689d balrog
# define OMAP_INT_1610_GPTIMER8                39
252 c3d2689d balrog
# define OMAP_INT_1610_GPIO_BANK2        40
253 c3d2689d balrog
# define OMAP_INT_1610_GPIO_BANK3        41
254 c3d2689d balrog
# define OMAP_INT_1610_MMC2                42
255 c3d2689d balrog
# define OMAP_INT_1610_CF                43
256 c3d2689d balrog
# define OMAP_INT_1610_WAKE_UP_REQ        46
257 c3d2689d balrog
# define OMAP_INT_1610_GPIO_BANK4        48
258 c3d2689d balrog
# define OMAP_INT_1610_SPI                49
259 c3d2689d balrog
# define OMAP_INT_1610_DMA_CH6                53
260 c3d2689d balrog
# define OMAP_INT_1610_DMA_CH7                54
261 c3d2689d balrog
# define OMAP_INT_1610_DMA_CH8                55
262 c3d2689d balrog
# define OMAP_INT_1610_DMA_CH9                56
263 c3d2689d balrog
# define OMAP_INT_1610_DMA_CH10                57
264 c3d2689d balrog
# define OMAP_INT_1610_DMA_CH11                58
265 c3d2689d balrog
# define OMAP_INT_1610_DMA_CH12                59
266 c3d2689d balrog
# define OMAP_INT_1610_DMA_CH13                60
267 c3d2689d balrog
# define OMAP_INT_1610_DMA_CH14                61
268 c3d2689d balrog
# define OMAP_INT_1610_DMA_CH15                62
269 c3d2689d balrog
# define OMAP_INT_1610_NAND                63
270 c3d2689d balrog
271 c3d2689d balrog
/*
272 c3d2689d balrog
 * OMAP-730 specific IRQ numbers for level 2 interrupt handler
273 c3d2689d balrog
 */
274 c3d2689d balrog
# define OMAP_INT_730_HW_ERRORS                0
275 c3d2689d balrog
# define OMAP_INT_730_NFIQ_PWR_FAIL        1
276 c3d2689d balrog
# define OMAP_INT_730_CFCD                2
277 c3d2689d balrog
# define OMAP_INT_730_CFIREQ                3
278 c3d2689d balrog
# define OMAP_INT_730_I2C                4
279 c3d2689d balrog
# define OMAP_INT_730_PCC                5
280 c3d2689d balrog
# define OMAP_INT_730_MPU_EXT_NIRQ        6
281 c3d2689d balrog
# define OMAP_INT_730_SPI_100K_1        7
282 c3d2689d balrog
# define OMAP_INT_730_SYREN_SPI                8
283 c3d2689d balrog
# define OMAP_INT_730_VLYNQ                9
284 c3d2689d balrog
# define OMAP_INT_730_GPIO_BANK4        10
285 c3d2689d balrog
# define OMAP_INT_730_McBSP1TX                11
286 c3d2689d balrog
# define OMAP_INT_730_McBSP1RX                12
287 c3d2689d balrog
# define OMAP_INT_730_McBSP1RX_OF        13
288 c3d2689d balrog
# define OMAP_INT_730_UART_MODEM_IRDA_2        14
289 c3d2689d balrog
# define OMAP_INT_730_UART_MODEM_1        15
290 c3d2689d balrog
# define OMAP_INT_730_MCSI                16
291 c3d2689d balrog
# define OMAP_INT_730_uWireTX                17
292 c3d2689d balrog
# define OMAP_INT_730_uWireRX                18
293 c3d2689d balrog
# define OMAP_INT_730_SMC_CD                19
294 c3d2689d balrog
# define OMAP_INT_730_SMC_IREQ                20
295 c3d2689d balrog
# define OMAP_INT_730_HDQ_1WIRE                21
296 c3d2689d balrog
# define OMAP_INT_730_TIMER32K                22
297 c3d2689d balrog
# define OMAP_INT_730_MMC_SDIO                23
298 c3d2689d balrog
# define OMAP_INT_730_UPLD                24
299 c3d2689d balrog
# define OMAP_INT_730_USB_HHC_1                27
300 c3d2689d balrog
# define OMAP_INT_730_USB_HHC_2                28
301 c3d2689d balrog
# define OMAP_INT_730_USB_GENI                29
302 c3d2689d balrog
# define OMAP_INT_730_USB_OTG                30
303 c3d2689d balrog
# define OMAP_INT_730_CAMERA_IF                31
304 c3d2689d balrog
# define OMAP_INT_730_RNG                32
305 c3d2689d balrog
# define OMAP_INT_730_DUAL_MODE_TIMER        33
306 c3d2689d balrog
# define OMAP_INT_730_DBB_RF_EN                34
307 c3d2689d balrog
# define OMAP_INT_730_MPUIO_KEYPAD        35
308 c3d2689d balrog
# define OMAP_INT_730_SHA1_MD5                36
309 c3d2689d balrog
# define OMAP_INT_730_SPI_100K_2        37
310 c3d2689d balrog
# define OMAP_INT_730_RNG_IDLE                38
311 c3d2689d balrog
# define OMAP_INT_730_MPUIO                39
312 c3d2689d balrog
# define OMAP_INT_730_LLPC_LCD_CTRL_OFF        40
313 c3d2689d balrog
# define OMAP_INT_730_LLPC_OE_FALLING        41
314 c3d2689d balrog
# define OMAP_INT_730_LLPC_OE_RISING        42
315 c3d2689d balrog
# define OMAP_INT_730_LLPC_VSYNC        43
316 c3d2689d balrog
# define OMAP_INT_730_WAKE_UP_REQ        46
317 c3d2689d balrog
# define OMAP_INT_730_DMA_CH6                53
318 c3d2689d balrog
# define OMAP_INT_730_DMA_CH7                54
319 c3d2689d balrog
# define OMAP_INT_730_DMA_CH8                55
320 c3d2689d balrog
# define OMAP_INT_730_DMA_CH9                56
321 c3d2689d balrog
# define OMAP_INT_730_DMA_CH10                57
322 c3d2689d balrog
# define OMAP_INT_730_DMA_CH11                58
323 c3d2689d balrog
# define OMAP_INT_730_DMA_CH12                59
324 c3d2689d balrog
# define OMAP_INT_730_DMA_CH13                60
325 c3d2689d balrog
# define OMAP_INT_730_DMA_CH14                61
326 c3d2689d balrog
# define OMAP_INT_730_DMA_CH15                62
327 c3d2689d balrog
# define OMAP_INT_730_NAND                63
328 c3d2689d balrog
329 c3d2689d balrog
/*
330 c3d2689d balrog
 * OMAP-24xx common IRQ numbers
331 c3d2689d balrog
 */
332 54585ffe balrog
# define OMAP_INT_24XX_STI                4
333 c3d2689d balrog
# define OMAP_INT_24XX_SYS_NIRQ                7
334 827df9f3 balrog
# define OMAP_INT_24XX_L3_IRQ                10
335 827df9f3 balrog
# define OMAP_INT_24XX_PRCM_MPU_IRQ        11
336 c3d2689d balrog
# define OMAP_INT_24XX_SDMA_IRQ0        12
337 c3d2689d balrog
# define OMAP_INT_24XX_SDMA_IRQ1        13
338 c3d2689d balrog
# define OMAP_INT_24XX_SDMA_IRQ2        14
339 c3d2689d balrog
# define OMAP_INT_24XX_SDMA_IRQ3        15
340 827df9f3 balrog
# define OMAP_INT_243X_MCBSP2_IRQ        16
341 827df9f3 balrog
# define OMAP_INT_243X_MCBSP3_IRQ        17
342 827df9f3 balrog
# define OMAP_INT_243X_MCBSP4_IRQ        18
343 827df9f3 balrog
# define OMAP_INT_243X_MCBSP5_IRQ        19
344 827df9f3 balrog
# define OMAP_INT_24XX_GPMC_IRQ                20
345 827df9f3 balrog
# define OMAP_INT_24XX_GUFFAW_IRQ        21
346 827df9f3 balrog
# define OMAP_INT_24XX_IVA_IRQ                22
347 827df9f3 balrog
# define OMAP_INT_24XX_EAC_IRQ                23
348 c3d2689d balrog
# define OMAP_INT_24XX_CAM_IRQ                24
349 c3d2689d balrog
# define OMAP_INT_24XX_DSS_IRQ                25
350 c3d2689d balrog
# define OMAP_INT_24XX_MAIL_U0_MPU        26
351 c3d2689d balrog
# define OMAP_INT_24XX_DSP_UMA                27
352 c3d2689d balrog
# define OMAP_INT_24XX_DSP_MMU                28
353 c3d2689d balrog
# define OMAP_INT_24XX_GPIO_BANK1        29
354 c3d2689d balrog
# define OMAP_INT_24XX_GPIO_BANK2        30
355 c3d2689d balrog
# define OMAP_INT_24XX_GPIO_BANK3        31
356 c3d2689d balrog
# define OMAP_INT_24XX_GPIO_BANK4        32
357 827df9f3 balrog
# define OMAP_INT_243X_GPIO_BANK5        33
358 c3d2689d balrog
# define OMAP_INT_24XX_MAIL_U3_MPU        34
359 827df9f3 balrog
# define OMAP_INT_24XX_WDT3                35
360 827df9f3 balrog
# define OMAP_INT_24XX_WDT4                36
361 c3d2689d balrog
# define OMAP_INT_24XX_GPTIMER1                37
362 c3d2689d balrog
# define OMAP_INT_24XX_GPTIMER2                38
363 c3d2689d balrog
# define OMAP_INT_24XX_GPTIMER3                39
364 c3d2689d balrog
# define OMAP_INT_24XX_GPTIMER4                40
365 c3d2689d balrog
# define OMAP_INT_24XX_GPTIMER5                41
366 c3d2689d balrog
# define OMAP_INT_24XX_GPTIMER6                42
367 c3d2689d balrog
# define OMAP_INT_24XX_GPTIMER7                43
368 c3d2689d balrog
# define OMAP_INT_24XX_GPTIMER8                44
369 c3d2689d balrog
# define OMAP_INT_24XX_GPTIMER9                45
370 c3d2689d balrog
# define OMAP_INT_24XX_GPTIMER10        46
371 c3d2689d balrog
# define OMAP_INT_24XX_GPTIMER11        47
372 c3d2689d balrog
# define OMAP_INT_24XX_GPTIMER12        48
373 827df9f3 balrog
# define OMAP_INT_24XX_PKA_IRQ                50
374 827df9f3 balrog
# define OMAP_INT_24XX_SHA1MD5_IRQ        51
375 827df9f3 balrog
# define OMAP_INT_24XX_RNG_IRQ                52
376 827df9f3 balrog
# define OMAP_INT_24XX_MG_IRQ                53
377 827df9f3 balrog
# define OMAP_INT_24XX_I2C1_IRQ                56
378 827df9f3 balrog
# define OMAP_INT_24XX_I2C2_IRQ                57
379 c3d2689d balrog
# define OMAP_INT_24XX_MCBSP1_IRQ_TX        59
380 c3d2689d balrog
# define OMAP_INT_24XX_MCBSP1_IRQ_RX        60
381 c3d2689d balrog
# define OMAP_INT_24XX_MCBSP2_IRQ_TX        62
382 c3d2689d balrog
# define OMAP_INT_24XX_MCBSP2_IRQ_RX        63
383 827df9f3 balrog
# define OMAP_INT_243X_MCBSP1_IRQ        64
384 827df9f3 balrog
# define OMAP_INT_24XX_MCSPI1_IRQ        65
385 827df9f3 balrog
# define OMAP_INT_24XX_MCSPI2_IRQ        66
386 827df9f3 balrog
# define OMAP_INT_24XX_SSI1_IRQ0        67
387 827df9f3 balrog
# define OMAP_INT_24XX_SSI1_IRQ1        68
388 827df9f3 balrog
# define OMAP_INT_24XX_SSI2_IRQ0        69
389 827df9f3 balrog
# define OMAP_INT_24XX_SSI2_IRQ1        70
390 827df9f3 balrog
# define OMAP_INT_24XX_SSI_GDD_IRQ        71
391 c3d2689d balrog
# define OMAP_INT_24XX_UART1_IRQ        72
392 c3d2689d balrog
# define OMAP_INT_24XX_UART2_IRQ        73
393 c3d2689d balrog
# define OMAP_INT_24XX_UART3_IRQ        74
394 c3d2689d balrog
# define OMAP_INT_24XX_USB_IRQ_GEN        75
395 c3d2689d balrog
# define OMAP_INT_24XX_USB_IRQ_NISO        76
396 c3d2689d balrog
# define OMAP_INT_24XX_USB_IRQ_ISO        77
397 c3d2689d balrog
# define OMAP_INT_24XX_USB_IRQ_HGEN        78
398 c3d2689d balrog
# define OMAP_INT_24XX_USB_IRQ_HSOF        79
399 c3d2689d balrog
# define OMAP_INT_24XX_USB_IRQ_OTG        80
400 827df9f3 balrog
# define OMAP_INT_24XX_VLYNQ_IRQ        81
401 c3d2689d balrog
# define OMAP_INT_24XX_MMC_IRQ                83
402 827df9f3 balrog
# define OMAP_INT_24XX_MS_IRQ                84
403 827df9f3 balrog
# define OMAP_INT_24XX_FAC_IRQ                85
404 827df9f3 balrog
# define OMAP_INT_24XX_MCSPI3_IRQ        91
405 c3d2689d balrog
# define OMAP_INT_243X_HS_USB_MC        92
406 c3d2689d balrog
# define OMAP_INT_243X_HS_USB_DMA        93
407 c3d2689d balrog
# define OMAP_INT_243X_CARKIT                94
408 827df9f3 balrog
# define OMAP_INT_34XX_GPTIMER12        95
409 c3d2689d balrog
410 b4e3104b balrog
/* omap_dma.c */
411 089b7c0a balrog
enum omap_dma_model {
412 b4e3104b balrog
    omap_dma_3_0,
413 b4e3104b balrog
    omap_dma_3_1,
414 b4e3104b balrog
    omap_dma_3_2,
415 b4e3104b balrog
    omap_dma_4,
416 089b7c0a balrog
};
417 089b7c0a balrog
418 afbb5194 balrog
struct soc_dma_s;
419 c227f099 Anthony Liguori
struct soc_dma_s *omap_dma_init(target_phys_addr_t base, qemu_irq *irqs,
420 089b7c0a balrog
                qemu_irq lcd_irq, struct omap_mpu_state_s *mpu, omap_clk clk,
421 089b7c0a balrog
                enum omap_dma_model model);
422 c227f099 Anthony Liguori
struct soc_dma_s *omap_dma4_init(target_phys_addr_t base, qemu_irq *irqs,
423 827df9f3 balrog
                struct omap_mpu_state_s *mpu, int fifo,
424 827df9f3 balrog
                int chans, omap_clk iclk, omap_clk fclk);
425 afbb5194 balrog
void omap_dma_reset(struct soc_dma_s *s);
426 c3d2689d balrog
427 b4e3104b balrog
struct dma_irq_map {
428 b4e3104b balrog
    int ih;
429 b4e3104b balrog
    int intr;
430 b4e3104b balrog
};
431 b4e3104b balrog
432 b4e3104b balrog
/* Only used in OMAP DMA 3.x gigacells */
433 c3d2689d balrog
enum omap_dma_port {
434 c3d2689d balrog
    emiff = 0,
435 c3d2689d balrog
    emifs,
436 089b7c0a balrog
    imif,        /* omap16xx: ocp_t1 */
437 c3d2689d balrog
    tipb,
438 089b7c0a balrog
    local,        /* omap16xx: ocp_t2 */
439 c3d2689d balrog
    tipb_mpui,
440 827df9f3 balrog
    __omap_dma_port_last,
441 c3d2689d balrog
};
442 c3d2689d balrog
443 089b7c0a balrog
typedef enum {
444 089b7c0a balrog
    constant = 0,
445 089b7c0a balrog
    post_incremented,
446 089b7c0a balrog
    single_index,
447 089b7c0a balrog
    double_index,
448 c227f099 Anthony Liguori
} omap_dma_addressing_t;
449 089b7c0a balrog
450 b4e3104b balrog
/* Only used in OMAP DMA 3.x gigacells */
451 c3d2689d balrog
struct omap_dma_lcd_channel_s {
452 c3d2689d balrog
    enum omap_dma_port src;
453 c227f099 Anthony Liguori
    target_phys_addr_t src_f1_top;
454 c227f099 Anthony Liguori
    target_phys_addr_t src_f1_bottom;
455 c227f099 Anthony Liguori
    target_phys_addr_t src_f2_top;
456 c227f099 Anthony Liguori
    target_phys_addr_t src_f2_bottom;
457 089b7c0a balrog
458 089b7c0a balrog
    /* Used in OMAP DMA 3.2 gigacell */
459 089b7c0a balrog
    unsigned char brust_f1;
460 089b7c0a balrog
    unsigned char pack_f1;
461 089b7c0a balrog
    unsigned char data_type_f1;
462 089b7c0a balrog
    unsigned char brust_f2;
463 089b7c0a balrog
    unsigned char pack_f2;
464 089b7c0a balrog
    unsigned char data_type_f2;
465 089b7c0a balrog
    unsigned char end_prog;
466 089b7c0a balrog
    unsigned char repeat;
467 089b7c0a balrog
    unsigned char auto_init;
468 089b7c0a balrog
    unsigned char priority;
469 089b7c0a balrog
    unsigned char fs;
470 089b7c0a balrog
    unsigned char running;
471 089b7c0a balrog
    unsigned char bs;
472 089b7c0a balrog
    unsigned char omap_3_1_compatible_disable;
473 089b7c0a balrog
    unsigned char dst;
474 089b7c0a balrog
    unsigned char lch_type;
475 089b7c0a balrog
    int16_t element_index_f1;
476 089b7c0a balrog
    int16_t element_index_f2;
477 089b7c0a balrog
    int32_t frame_index_f1;
478 089b7c0a balrog
    int32_t frame_index_f2;
479 089b7c0a balrog
    uint16_t elements_f1;
480 089b7c0a balrog
    uint16_t frames_f1;
481 089b7c0a balrog
    uint16_t elements_f2;
482 089b7c0a balrog
    uint16_t frames_f2;
483 c227f099 Anthony Liguori
    omap_dma_addressing_t mode_f1;
484 c227f099 Anthony Liguori
    omap_dma_addressing_t mode_f2;
485 089b7c0a balrog
486 c3d2689d balrog
    /* Destination port is fixed.  */
487 c3d2689d balrog
    int interrupts;
488 c3d2689d balrog
    int condition;
489 c3d2689d balrog
    int dual;
490 c3d2689d balrog
491 c3d2689d balrog
    int current_frame;
492 c227f099 Anthony Liguori
    target_phys_addr_t phys_framebuffer[2];
493 c3d2689d balrog
    qemu_irq irq;
494 c3d2689d balrog
    struct omap_mpu_state_s *mpu;
495 afbb5194 balrog
} *omap_dma_get_lcdch(struct soc_dma_s *s);
496 c3d2689d balrog
497 c3d2689d balrog
/*
498 c3d2689d balrog
 * DMA request numbers for OMAP1
499 c3d2689d balrog
 * See /usr/include/asm-arm/arch-omap/dma.h in Linux.
500 c3d2689d balrog
 */
501 c3d2689d balrog
# define OMAP_DMA_NO_DEVICE                0
502 c3d2689d balrog
# define OMAP_DMA_MCSI1_TX                1
503 c3d2689d balrog
# define OMAP_DMA_MCSI1_RX                2
504 c3d2689d balrog
# define OMAP_DMA_I2C_RX                3
505 c3d2689d balrog
# define OMAP_DMA_I2C_TX                4
506 c3d2689d balrog
# define OMAP_DMA_EXT_NDMA_REQ0                5
507 c3d2689d balrog
# define OMAP_DMA_EXT_NDMA_REQ1                6
508 c3d2689d balrog
# define OMAP_DMA_UWIRE_TX                7
509 c3d2689d balrog
# define OMAP_DMA_MCBSP1_TX                8
510 c3d2689d balrog
# define OMAP_DMA_MCBSP1_RX                9
511 c3d2689d balrog
# define OMAP_DMA_MCBSP3_TX                10
512 c3d2689d balrog
# define OMAP_DMA_MCBSP3_RX                11
513 c3d2689d balrog
# define OMAP_DMA_UART1_TX                12
514 c3d2689d balrog
# define OMAP_DMA_UART1_RX                13
515 c3d2689d balrog
# define OMAP_DMA_UART2_TX                14
516 c3d2689d balrog
# define OMAP_DMA_UART2_RX                15
517 c3d2689d balrog
# define OMAP_DMA_MCBSP2_TX                16
518 c3d2689d balrog
# define OMAP_DMA_MCBSP2_RX                17
519 c3d2689d balrog
# define OMAP_DMA_UART3_TX                18
520 c3d2689d balrog
# define OMAP_DMA_UART3_RX                19
521 c3d2689d balrog
# define OMAP_DMA_CAMERA_IF_RX                20
522 c3d2689d balrog
# define OMAP_DMA_MMC_TX                21
523 c3d2689d balrog
# define OMAP_DMA_MMC_RX                22
524 c3d2689d balrog
# define OMAP_DMA_NAND                        23        /* Not in OMAP310 */
525 c3d2689d balrog
# define OMAP_DMA_IRQ_LCD_LINE                24        /* Not in OMAP310 */
526 c3d2689d balrog
# define OMAP_DMA_MEMORY_STICK                25        /* Not in OMAP310 */
527 c3d2689d balrog
# define OMAP_DMA_USB_W2FC_RX0                26
528 c3d2689d balrog
# define OMAP_DMA_USB_W2FC_RX1                27
529 c3d2689d balrog
# define OMAP_DMA_USB_W2FC_RX2                28
530 c3d2689d balrog
# define OMAP_DMA_USB_W2FC_TX0                29
531 c3d2689d balrog
# define OMAP_DMA_USB_W2FC_TX1                30
532 c3d2689d balrog
# define OMAP_DMA_USB_W2FC_TX2                31
533 c3d2689d balrog
534 c3d2689d balrog
/* These are only for 1610 */
535 c3d2689d balrog
# define OMAP_DMA_CRYPTO_DES_IN                32
536 c3d2689d balrog
# define OMAP_DMA_SPI_TX                33
537 c3d2689d balrog
# define OMAP_DMA_SPI_RX                34
538 c3d2689d balrog
# define OMAP_DMA_CRYPTO_HASH                35
539 c3d2689d balrog
# define OMAP_DMA_CCP_ATTN                36
540 c3d2689d balrog
# define OMAP_DMA_CCP_FIFO_NOT_EMPTY        37
541 c3d2689d balrog
# define OMAP_DMA_CMT_APE_TX_CHAN_0        38
542 c3d2689d balrog
# define OMAP_DMA_CMT_APE_RV_CHAN_0        39
543 c3d2689d balrog
# define OMAP_DMA_CMT_APE_TX_CHAN_1        40
544 c3d2689d balrog
# define OMAP_DMA_CMT_APE_RV_CHAN_1        41
545 c3d2689d balrog
# define OMAP_DMA_CMT_APE_TX_CHAN_2        42
546 c3d2689d balrog
# define OMAP_DMA_CMT_APE_RV_CHAN_2        43
547 c3d2689d balrog
# define OMAP_DMA_CMT_APE_TX_CHAN_3        44
548 c3d2689d balrog
# define OMAP_DMA_CMT_APE_RV_CHAN_3        45
549 c3d2689d balrog
# define OMAP_DMA_CMT_APE_TX_CHAN_4        46
550 c3d2689d balrog
# define OMAP_DMA_CMT_APE_RV_CHAN_4        47
551 c3d2689d balrog
# define OMAP_DMA_CMT_APE_TX_CHAN_5        48
552 c3d2689d balrog
# define OMAP_DMA_CMT_APE_RV_CHAN_5        49
553 c3d2689d balrog
# define OMAP_DMA_CMT_APE_TX_CHAN_6        50
554 c3d2689d balrog
# define OMAP_DMA_CMT_APE_RV_CHAN_6        51
555 c3d2689d balrog
# define OMAP_DMA_CMT_APE_TX_CHAN_7        52
556 c3d2689d balrog
# define OMAP_DMA_CMT_APE_RV_CHAN_7        53
557 c3d2689d balrog
# define OMAP_DMA_MMC2_TX                54
558 c3d2689d balrog
# define OMAP_DMA_MMC2_RX                55
559 c3d2689d balrog
# define OMAP_DMA_CRYPTO_DES_OUT        56
560 c3d2689d balrog
561 827df9f3 balrog
/*
562 827df9f3 balrog
 * DMA request numbers for the OMAP2
563 827df9f3 balrog
 */
564 827df9f3 balrog
# define OMAP24XX_DMA_NO_DEVICE                0
565 827df9f3 balrog
# define OMAP24XX_DMA_XTI_DMA                1        /* Not in OMAP2420 */
566 827df9f3 balrog
# define OMAP24XX_DMA_EXT_DMAREQ0        2
567 827df9f3 balrog
# define OMAP24XX_DMA_EXT_DMAREQ1        3
568 827df9f3 balrog
# define OMAP24XX_DMA_GPMC                4
569 827df9f3 balrog
# define OMAP24XX_DMA_GFX                5        /* Not in OMAP2420 */
570 827df9f3 balrog
# define OMAP24XX_DMA_DSS                6
571 827df9f3 balrog
# define OMAP24XX_DMA_VLYNQ_TX                7        /* Not in OMAP2420 */
572 827df9f3 balrog
# define OMAP24XX_DMA_CWT                8        /* Not in OMAP2420 */
573 827df9f3 balrog
# define OMAP24XX_DMA_AES_TX                9        /* Not in OMAP2420 */
574 827df9f3 balrog
# define OMAP24XX_DMA_AES_RX                10        /* Not in OMAP2420 */
575 827df9f3 balrog
# define OMAP24XX_DMA_DES_TX                11        /* Not in OMAP2420 */
576 827df9f3 balrog
# define OMAP24XX_DMA_DES_RX                12        /* Not in OMAP2420 */
577 827df9f3 balrog
# define OMAP24XX_DMA_SHA1MD5_RX        13        /* Not in OMAP2420 */
578 827df9f3 balrog
# define OMAP24XX_DMA_EXT_DMAREQ2        14
579 827df9f3 balrog
# define OMAP24XX_DMA_EXT_DMAREQ3        15
580 827df9f3 balrog
# define OMAP24XX_DMA_EXT_DMAREQ4        16
581 827df9f3 balrog
# define OMAP24XX_DMA_EAC_AC_RD                17
582 827df9f3 balrog
# define OMAP24XX_DMA_EAC_AC_WR                18
583 827df9f3 balrog
# define OMAP24XX_DMA_EAC_MD_UL_RD        19
584 827df9f3 balrog
# define OMAP24XX_DMA_EAC_MD_UL_WR        20
585 827df9f3 balrog
# define OMAP24XX_DMA_EAC_MD_DL_RD        21
586 827df9f3 balrog
# define OMAP24XX_DMA_EAC_MD_DL_WR        22
587 827df9f3 balrog
# define OMAP24XX_DMA_EAC_BT_UL_RD        23
588 827df9f3 balrog
# define OMAP24XX_DMA_EAC_BT_UL_WR        24
589 827df9f3 balrog
# define OMAP24XX_DMA_EAC_BT_DL_RD        25
590 827df9f3 balrog
# define OMAP24XX_DMA_EAC_BT_DL_WR        26
591 827df9f3 balrog
# define OMAP24XX_DMA_I2C1_TX                27
592 827df9f3 balrog
# define OMAP24XX_DMA_I2C1_RX                28
593 827df9f3 balrog
# define OMAP24XX_DMA_I2C2_TX                29
594 827df9f3 balrog
# define OMAP24XX_DMA_I2C2_RX                30
595 827df9f3 balrog
# define OMAP24XX_DMA_MCBSP1_TX                31
596 827df9f3 balrog
# define OMAP24XX_DMA_MCBSP1_RX                32
597 827df9f3 balrog
# define OMAP24XX_DMA_MCBSP2_TX                33
598 827df9f3 balrog
# define OMAP24XX_DMA_MCBSP2_RX                34
599 827df9f3 balrog
# define OMAP24XX_DMA_SPI1_TX0                35
600 827df9f3 balrog
# define OMAP24XX_DMA_SPI1_RX0                36
601 827df9f3 balrog
# define OMAP24XX_DMA_SPI1_TX1                37
602 827df9f3 balrog
# define OMAP24XX_DMA_SPI1_RX1                38
603 827df9f3 balrog
# define OMAP24XX_DMA_SPI1_TX2                39
604 827df9f3 balrog
# define OMAP24XX_DMA_SPI1_RX2                40
605 827df9f3 balrog
# define OMAP24XX_DMA_SPI1_TX3                41
606 827df9f3 balrog
# define OMAP24XX_DMA_SPI1_RX3                42
607 827df9f3 balrog
# define OMAP24XX_DMA_SPI2_TX0                43
608 827df9f3 balrog
# define OMAP24XX_DMA_SPI2_RX0                44
609 827df9f3 balrog
# define OMAP24XX_DMA_SPI2_TX1                45
610 827df9f3 balrog
# define OMAP24XX_DMA_SPI2_RX1                46
611 827df9f3 balrog
612 827df9f3 balrog
# define OMAP24XX_DMA_UART1_TX                49
613 827df9f3 balrog
# define OMAP24XX_DMA_UART1_RX                50
614 827df9f3 balrog
# define OMAP24XX_DMA_UART2_TX                51
615 827df9f3 balrog
# define OMAP24XX_DMA_UART2_RX                52
616 827df9f3 balrog
# define OMAP24XX_DMA_UART3_TX                53
617 827df9f3 balrog
# define OMAP24XX_DMA_UART3_RX                54
618 827df9f3 balrog
# define OMAP24XX_DMA_USB_W2FC_TX0        55
619 827df9f3 balrog
# define OMAP24XX_DMA_USB_W2FC_RX0        56
620 827df9f3 balrog
# define OMAP24XX_DMA_USB_W2FC_TX1        57
621 827df9f3 balrog
# define OMAP24XX_DMA_USB_W2FC_RX1        58
622 827df9f3 balrog
# define OMAP24XX_DMA_USB_W2FC_TX2        59
623 827df9f3 balrog
# define OMAP24XX_DMA_USB_W2FC_RX2        60
624 827df9f3 balrog
# define OMAP24XX_DMA_MMC1_TX                61
625 827df9f3 balrog
# define OMAP24XX_DMA_MMC1_RX                62
626 827df9f3 balrog
# define OMAP24XX_DMA_MS                63        /* Not in OMAP2420 */
627 827df9f3 balrog
# define OMAP24XX_DMA_EXT_DMAREQ5        64
628 827df9f3 balrog
629 b4e3104b balrog
/* omap[123].c */
630 c3d2689d balrog
struct omap_mpu_timer_s;
631 c227f099 Anthony Liguori
struct omap_mpu_timer_s *omap_mpu_timer_init(target_phys_addr_t base,
632 c3d2689d balrog
                qemu_irq irq, omap_clk clk);
633 c3d2689d balrog
634 827df9f3 balrog
struct omap_gp_timer_s;
635 827df9f3 balrog
struct omap_gp_timer_s *omap_gp_timer_init(struct omap_target_agent_s *ta,
636 827df9f3 balrog
                qemu_irq irq, omap_clk fclk, omap_clk iclk);
637 827df9f3 balrog
638 c3d2689d balrog
struct omap_watchdog_timer_s;
639 c227f099 Anthony Liguori
struct omap_watchdog_timer_s *omap_wd_timer_init(target_phys_addr_t base,
640 c3d2689d balrog
                qemu_irq irq, omap_clk clk);
641 c3d2689d balrog
642 c3d2689d balrog
struct omap_32khz_timer_s;
643 c227f099 Anthony Liguori
struct omap_32khz_timer_s *omap_os_timer_init(target_phys_addr_t base,
644 c3d2689d balrog
                qemu_irq irq, omap_clk clk);
645 c3d2689d balrog
646 827df9f3 balrog
void omap_synctimer_init(struct omap_target_agent_s *ta,
647 827df9f3 balrog
                struct omap_mpu_state_s *mpu, omap_clk fclk, omap_clk iclk);
648 827df9f3 balrog
649 c3d2689d balrog
struct omap_tipb_bridge_s;
650 c227f099 Anthony Liguori
struct omap_tipb_bridge_s *omap_tipb_bridge_init(target_phys_addr_t base,
651 c3d2689d balrog
                qemu_irq abort_irq, omap_clk clk);
652 c3d2689d balrog
653 c3d2689d balrog
struct omap_uart_s;
654 c227f099 Anthony Liguori
struct omap_uart_s *omap_uart_init(target_phys_addr_t base,
655 827df9f3 balrog
                qemu_irq irq, omap_clk fclk, omap_clk iclk,
656 827df9f3 balrog
                qemu_irq txdma, qemu_irq rxdma, CharDriverState *chr);
657 827df9f3 balrog
struct omap_uart_s *omap2_uart_init(struct omap_target_agent_s *ta,
658 827df9f3 balrog
                qemu_irq irq, omap_clk fclk, omap_clk iclk,
659 827df9f3 balrog
                qemu_irq txdma, qemu_irq rxdma, CharDriverState *chr);
660 827df9f3 balrog
void omap_uart_reset(struct omap_uart_s *s);
661 75554a3c balrog
void omap_uart_attach(struct omap_uart_s *s, CharDriverState *chr);
662 c3d2689d balrog
663 fe71e81a balrog
struct omap_mpuio_s;
664 c227f099 Anthony Liguori
struct omap_mpuio_s *omap_mpuio_init(target_phys_addr_t base,
665 fe71e81a balrog
                qemu_irq kbd_int, qemu_irq gpio_int, qemu_irq wakeup,
666 fe71e81a balrog
                omap_clk clk);
667 fe71e81a balrog
qemu_irq *omap_mpuio_in_get(struct omap_mpuio_s *s);
668 fe71e81a balrog
void omap_mpuio_out_set(struct omap_mpuio_s *s, int line, qemu_irq handler);
669 fe71e81a balrog
void omap_mpuio_key(struct omap_mpuio_s *s, int row, int col, int down);
670 fe71e81a balrog
671 64330148 balrog
struct omap_gpio_s;
672 c227f099 Anthony Liguori
struct omap_gpio_s *omap_gpio_init(target_phys_addr_t base,
673 64330148 balrog
                qemu_irq irq, omap_clk clk);
674 64330148 balrog
qemu_irq *omap_gpio_in_get(struct omap_gpio_s *s);
675 64330148 balrog
void omap_gpio_out_set(struct omap_gpio_s *s, int line, qemu_irq handler);
676 64330148 balrog
677 827df9f3 balrog
struct omap_gpif_s;
678 827df9f3 balrog
struct omap_gpif_s *omap2_gpio_init(struct omap_target_agent_s *ta,
679 827df9f3 balrog
                qemu_irq *irq, omap_clk *fclk, omap_clk iclk, int modules);
680 827df9f3 balrog
qemu_irq *omap2_gpio_in_get(struct omap_gpif_s *s, int start);
681 827df9f3 balrog
void omap2_gpio_out_set(struct omap_gpif_s *s, int line, qemu_irq handler);
682 827df9f3 balrog
683 bc24a225 Paul Brook
struct uWireSlave {
684 d951f6ff balrog
    uint16_t (*receive)(void *opaque);
685 d951f6ff balrog
    void (*send)(void *opaque, uint16_t data);
686 d951f6ff balrog
    void *opaque;
687 d951f6ff balrog
};
688 d951f6ff balrog
struct omap_uwire_s;
689 c227f099 Anthony Liguori
struct omap_uwire_s *omap_uwire_init(target_phys_addr_t base,
690 d951f6ff balrog
                qemu_irq *irq, qemu_irq dma, omap_clk clk);
691 d951f6ff balrog
void omap_uwire_attach(struct omap_uwire_s *s,
692 bc24a225 Paul Brook
                uWireSlave *slave, int chipselect);
693 d951f6ff balrog
694 827df9f3 balrog
struct omap_mcspi_s;
695 827df9f3 balrog
struct omap_mcspi_s *omap_mcspi_init(struct omap_target_agent_s *ta, int chnum,
696 827df9f3 balrog
                qemu_irq irq, qemu_irq *drq, omap_clk fclk, omap_clk iclk);
697 827df9f3 balrog
void omap_mcspi_attach(struct omap_mcspi_s *s,
698 e927bb00 balrog
                uint32_t (*txrx)(void *opaque, uint32_t, int), void *opaque,
699 827df9f3 balrog
                int chipselect);
700 827df9f3 balrog
701 5c1c390f balrog
struct omap_rtc_s;
702 c227f099 Anthony Liguori
struct omap_rtc_s *omap_rtc_init(target_phys_addr_t base,
703 5c1c390f balrog
                qemu_irq *irq, omap_clk clk);
704 5c1c390f balrog
705 bc24a225 Paul Brook
struct I2SCodec {
706 d8f699cb balrog
    void *opaque;
707 d8f699cb balrog
708 d8f699cb balrog
    /* The CPU can call this if it is generating the clock signal on the
709 d8f699cb balrog
     * i2s port.  The CODEC can ignore it if it is set up as a clock
710 d8f699cb balrog
     * master and generates its own clock.  */
711 d8f699cb balrog
    void (*set_rate)(void *opaque, int in, int out);
712 d8f699cb balrog
713 d8f699cb balrog
    void (*tx_swallow)(void *opaque);
714 d8f699cb balrog
    qemu_irq rx_swallow;
715 d8f699cb balrog
    qemu_irq tx_start;
716 d8f699cb balrog
717 73560bc8 balrog
    int tx_rate;
718 73560bc8 balrog
    int cts;
719 73560bc8 balrog
    int rx_rate;
720 73560bc8 balrog
    int rts;
721 73560bc8 balrog
722 d8f699cb balrog
    struct i2s_fifo_s {
723 d8f699cb balrog
        uint8_t *fifo;
724 d8f699cb balrog
        int len;
725 d8f699cb balrog
        int start;
726 d8f699cb balrog
        int size;
727 d8f699cb balrog
    } in, out;
728 d8f699cb balrog
};
729 d8f699cb balrog
struct omap_mcbsp_s;
730 c227f099 Anthony Liguori
struct omap_mcbsp_s *omap_mcbsp_init(target_phys_addr_t base,
731 d8f699cb balrog
                qemu_irq *irq, qemu_irq *dma, omap_clk clk);
732 bc24a225 Paul Brook
void omap_mcbsp_i2s_attach(struct omap_mcbsp_s *s, I2SCodec *slave);
733 d8f699cb balrog
734 f9d43072 balrog
struct omap_lpg_s;
735 c227f099 Anthony Liguori
struct omap_lpg_s *omap_lpg_init(target_phys_addr_t base, omap_clk clk);
736 f9d43072 balrog
737 827df9f3 balrog
void omap_tap_init(struct omap_target_agent_s *ta,
738 827df9f3 balrog
                struct omap_mpu_state_s *mpu);
739 827df9f3 balrog
740 99570a40 balrog
struct omap_eac_s;
741 99570a40 balrog
struct omap_eac_s *omap_eac_init(struct omap_target_agent_s *ta,
742 99570a40 balrog
                qemu_irq irq, qemu_irq *drq, omap_clk fclk, omap_clk iclk);
743 99570a40 balrog
744 c3d2689d balrog
/* omap_lcdc.c */
745 c3d2689d balrog
struct omap_lcd_panel_s;
746 c3d2689d balrog
void omap_lcdc_reset(struct omap_lcd_panel_s *s);
747 c227f099 Anthony Liguori
struct omap_lcd_panel_s *omap_lcdc_init(target_phys_addr_t base, qemu_irq irq,
748 3023f332 aliguori
                struct omap_dma_lcd_channel_s *dma,
749 c227f099 Anthony Liguori
                ram_addr_t imif_base, ram_addr_t emiff_base, omap_clk clk);
750 c3d2689d balrog
751 827df9f3 balrog
/* omap_dss.c */
752 827df9f3 balrog
struct rfbi_chip_s {
753 827df9f3 balrog
    void *opaque;
754 827df9f3 balrog
    void (*write)(void *opaque, int dc, uint16_t value);
755 827df9f3 balrog
    void (*block)(void *opaque, int dc, void *buf, size_t len, int pitch);
756 827df9f3 balrog
    uint16_t (*read)(void *opaque, int dc);
757 827df9f3 balrog
};
758 827df9f3 balrog
struct omap_dss_s;
759 827df9f3 balrog
void omap_dss_reset(struct omap_dss_s *s);
760 827df9f3 balrog
struct omap_dss_s *omap_dss_init(struct omap_target_agent_s *ta,
761 c227f099 Anthony Liguori
                target_phys_addr_t l3_base,
762 827df9f3 balrog
                qemu_irq irq, qemu_irq drq,
763 827df9f3 balrog
                omap_clk fck1, omap_clk fck2, omap_clk ck54m,
764 827df9f3 balrog
                omap_clk ick1, omap_clk ick2);
765 827df9f3 balrog
void omap_rfbi_attach(struct omap_dss_s *s, int cs, struct rfbi_chip_s *chip);
766 827df9f3 balrog
767 b30bb3a2 balrog
/* omap_mmc.c */
768 b30bb3a2 balrog
struct omap_mmc_s;
769 c227f099 Anthony Liguori
struct omap_mmc_s *omap_mmc_init(target_phys_addr_t base,
770 87ecb68b pbrook
                BlockDriverState *bd,
771 b30bb3a2 balrog
                qemu_irq irq, qemu_irq dma[], omap_clk clk);
772 827df9f3 balrog
struct omap_mmc_s *omap2_mmc_init(struct omap_target_agent_s *ta,
773 827df9f3 balrog
                BlockDriverState *bd, qemu_irq irq, qemu_irq dma[],
774 827df9f3 balrog
                omap_clk fclk, omap_clk iclk);
775 b30bb3a2 balrog
void omap_mmc_reset(struct omap_mmc_s *s);
776 8e129e07 balrog
void omap_mmc_handlers(struct omap_mmc_s *s, qemu_irq ro, qemu_irq cover);
777 827df9f3 balrog
void omap_mmc_enable(struct omap_mmc_s *s, int enable);
778 b30bb3a2 balrog
779 02645926 balrog
/* omap_i2c.c */
780 02645926 balrog
struct omap_i2c_s;
781 c227f099 Anthony Liguori
struct omap_i2c_s *omap_i2c_init(target_phys_addr_t base,
782 02645926 balrog
                qemu_irq irq, qemu_irq *dma, omap_clk clk);
783 29885477 balrog
struct omap_i2c_s *omap2_i2c_init(struct omap_target_agent_s *ta,
784 29885477 balrog
                qemu_irq irq, qemu_irq *dma, omap_clk fclk, omap_clk iclk);
785 02645926 balrog
void omap_i2c_reset(struct omap_i2c_s *s);
786 02645926 balrog
i2c_bus *omap_i2c_bus(struct omap_i2c_s *s);
787 02645926 balrog
788 c3d2689d balrog
# define cpu_is_omap310(cpu)                (cpu->mpu_model == omap310)
789 c3d2689d balrog
# define cpu_is_omap1510(cpu)                (cpu->mpu_model == omap1510)
790 827df9f3 balrog
# define cpu_is_omap1610(cpu)                (cpu->mpu_model == omap1610)
791 827df9f3 balrog
# define cpu_is_omap1710(cpu)                (cpu->mpu_model == omap1710)
792 827df9f3 balrog
# define cpu_is_omap2410(cpu)                (cpu->mpu_model == omap2410)
793 827df9f3 balrog
# define cpu_is_omap2420(cpu)                (cpu->mpu_model == omap2420)
794 827df9f3 balrog
# define cpu_is_omap2430(cpu)                (cpu->mpu_model == omap2430)
795 827df9f3 balrog
# define cpu_is_omap3430(cpu)                (cpu->mpu_model == omap3430)
796 827df9f3 balrog
797 c3d2689d balrog
# define cpu_is_omap15xx(cpu)                \
798 c3d2689d balrog
        (cpu_is_omap310(cpu) || cpu_is_omap1510(cpu))
799 827df9f3 balrog
# define cpu_is_omap16xx(cpu)                \
800 827df9f3 balrog
        (cpu_is_omap1610(cpu) || cpu_is_omap1710(cpu))
801 827df9f3 balrog
# define cpu_is_omap24xx(cpu)                \
802 827df9f3 balrog
        (cpu_is_omap2410(cpu) || cpu_is_omap2420(cpu) || cpu_is_omap2430(cpu))
803 827df9f3 balrog
804 827df9f3 balrog
# define cpu_class_omap1(cpu)                \
805 827df9f3 balrog
        (cpu_is_omap15xx(cpu) || cpu_is_omap16xx(cpu))
806 827df9f3 balrog
# define cpu_class_omap2(cpu)                cpu_is_omap24xx(cpu)
807 827df9f3 balrog
# define cpu_class_omap3(cpu)                cpu_is_omap3430(cpu)
808 c3d2689d balrog
809 c3d2689d balrog
struct omap_mpu_state_s {
810 827df9f3 balrog
    enum omap_mpu_model {
811 c3d2689d balrog
        omap310,
812 c3d2689d balrog
        omap1510,
813 827df9f3 balrog
        omap1610,
814 827df9f3 balrog
        omap1710,
815 827df9f3 balrog
        omap2410,
816 827df9f3 balrog
        omap2420,
817 827df9f3 balrog
        omap2422,
818 827df9f3 balrog
        omap2423,
819 827df9f3 balrog
        omap2430,
820 827df9f3 balrog
        omap3430,
821 c3d2689d balrog
    } mpu_model;
822 c3d2689d balrog
823 c3d2689d balrog
    CPUState *env;
824 c3d2689d balrog
825 c3d2689d balrog
    qemu_irq *irq[2];
826 c3d2689d balrog
    qemu_irq *drq;
827 c3d2689d balrog
828 c3d2689d balrog
    qemu_irq wakeup;
829 c3d2689d balrog
830 c3d2689d balrog
    struct omap_dma_port_if_s {
831 5fafdf24 ths
        uint32_t (*read[3])(struct omap_mpu_state_s *s,
832 c227f099 Anthony Liguori
                        target_phys_addr_t offset);
833 c3d2689d balrog
        void (*write[3])(struct omap_mpu_state_s *s,
834 c227f099 Anthony Liguori
                        target_phys_addr_t offset, uint32_t value);
835 c3d2689d balrog
        int (*addr_valid)(struct omap_mpu_state_s *s,
836 c227f099 Anthony Liguori
                        target_phys_addr_t addr);
837 827df9f3 balrog
    } port[__omap_dma_port_last];
838 c3d2689d balrog
839 c3d2689d balrog
    unsigned long sdram_size;
840 c3d2689d balrog
    unsigned long sram_size;
841 c3d2689d balrog
842 c3d2689d balrog
    /* MPUI-TIPB peripherals */
843 d951f6ff balrog
    struct omap_uart_s *uart[3];
844 d951f6ff balrog
845 d951f6ff balrog
    struct omap_gpio_s *gpio;
846 c3d2689d balrog
847 d8f699cb balrog
    struct omap_mcbsp_s *mcbsp1;
848 d8f699cb balrog
    struct omap_mcbsp_s *mcbsp3;
849 d8f699cb balrog
850 c3d2689d balrog
    /* MPU public TIPB peripherals */
851 c3d2689d balrog
    struct omap_32khz_timer_s *os_timer;
852 c3d2689d balrog
853 b30bb3a2 balrog
    struct omap_mmc_s *mmc;
854 b30bb3a2 balrog
855 d951f6ff balrog
    struct omap_mpuio_s *mpuio;
856 d951f6ff balrog
857 d951f6ff balrog
    struct omap_uwire_s *microwire;
858 d951f6ff balrog
859 66450b15 balrog
    struct {
860 66450b15 balrog
        uint8_t output;
861 66450b15 balrog
        uint8_t level;
862 66450b15 balrog
        uint8_t enable;
863 66450b15 balrog
        int clk;
864 66450b15 balrog
    } pwl;
865 66450b15 balrog
866 f34c417b balrog
    struct {
867 f34c417b balrog
        uint8_t frc;
868 f34c417b balrog
        uint8_t vrc;
869 f34c417b balrog
        uint8_t gcr;
870 f34c417b balrog
        omap_clk clk;
871 f34c417b balrog
    } pwt;
872 f34c417b balrog
873 827df9f3 balrog
    struct omap_i2c_s *i2c[2];
874 4a2c8ac2 balrog
875 02645926 balrog
    struct omap_rtc_s *rtc;
876 02645926 balrog
877 d8f699cb balrog
    struct omap_mcbsp_s *mcbsp2;
878 d8f699cb balrog
879 f9d43072 balrog
    struct omap_lpg_s *led[2];
880 f9d43072 balrog
881 c3d2689d balrog
    /* MPU private TIPB peripherals */
882 c3d2689d balrog
    struct omap_intr_handler_s *ih[2];
883 c3d2689d balrog
884 afbb5194 balrog
    struct soc_dma_s *dma;
885 c3d2689d balrog
886 c3d2689d balrog
    struct omap_mpu_timer_s *timer[3];
887 c3d2689d balrog
    struct omap_watchdog_timer_s *wdt;
888 c3d2689d balrog
889 c3d2689d balrog
    struct omap_lcd_panel_s *lcd;
890 c3d2689d balrog
891 c3d2689d balrog
    uint32_t ulpd_pm_regs[21];
892 c3d2689d balrog
    int64_t ulpd_gauge_start;
893 c3d2689d balrog
894 c3d2689d balrog
    uint32_t func_mux_ctrl[14];
895 c3d2689d balrog
    uint32_t comp_mode_ctrl[1];
896 c3d2689d balrog
    uint32_t pull_dwn_ctrl[4];
897 c3d2689d balrog
    uint32_t gate_inh_ctrl[1];
898 c3d2689d balrog
    uint32_t voltage_ctrl[1];
899 c3d2689d balrog
    uint32_t test_dbg_ctrl[1];
900 c3d2689d balrog
    uint32_t mod_conf_ctrl[1];
901 c3d2689d balrog
    int compat1509;
902 c3d2689d balrog
903 c3d2689d balrog
    uint32_t mpui_ctrl;
904 c3d2689d balrog
905 c3d2689d balrog
    struct omap_tipb_bridge_s *private_tipb;
906 c3d2689d balrog
    struct omap_tipb_bridge_s *public_tipb;
907 c3d2689d balrog
908 c3d2689d balrog
    uint32_t tcmi_regs[17];
909 c3d2689d balrog
910 c3d2689d balrog
    struct dpll_ctl_s {
911 c3d2689d balrog
        uint16_t mode;
912 c3d2689d balrog
        omap_clk dpll;
913 c3d2689d balrog
    } dpll[3];
914 c3d2689d balrog
915 c3d2689d balrog
    omap_clk clks;
916 c3d2689d balrog
    struct {
917 c3d2689d balrog
        int cold_start;
918 c3d2689d balrog
        int clocking_scheme;
919 c3d2689d balrog
        uint16_t arm_ckctl;
920 c3d2689d balrog
        uint16_t arm_idlect1;
921 c3d2689d balrog
        uint16_t arm_idlect2;
922 c3d2689d balrog
        uint16_t arm_ewupct;
923 c3d2689d balrog
        uint16_t arm_rstct1;
924 c3d2689d balrog
        uint16_t arm_rstct2;
925 c3d2689d balrog
        uint16_t arm_ckout1;
926 c3d2689d balrog
        int dpll1_mode;
927 c3d2689d balrog
        uint16_t dsp_idlect1;
928 c3d2689d balrog
        uint16_t dsp_idlect2;
929 c3d2689d balrog
        uint16_t dsp_rstct2;
930 c3d2689d balrog
    } clkm;
931 827df9f3 balrog
932 827df9f3 balrog
    /* OMAP2-only peripherals */
933 827df9f3 balrog
    struct omap_l4_s *l4;
934 827df9f3 balrog
935 827df9f3 balrog
    struct omap_gp_timer_s *gptimer[12];
936 827df9f3 balrog
937 827df9f3 balrog
    struct omap_synctimer_s {
938 827df9f3 balrog
        uint32_t val;
939 827df9f3 balrog
        uint16_t readh;
940 827df9f3 balrog
    } synctimer;
941 827df9f3 balrog
942 827df9f3 balrog
    struct omap_prcm_s *prcm;
943 827df9f3 balrog
    struct omap_sdrc_s *sdrc;
944 827df9f3 balrog
    struct omap_gpmc_s *gpmc;
945 827df9f3 balrog
    struct omap_sysctl_s *sysc;
946 827df9f3 balrog
947 827df9f3 balrog
    struct omap_gpif_s *gpif;
948 827df9f3 balrog
949 827df9f3 balrog
    struct omap_mcspi_s *mcspi[2];
950 827df9f3 balrog
951 827df9f3 balrog
    struct omap_dss_s *dss;
952 99570a40 balrog
953 99570a40 balrog
    struct omap_eac_s *eac;
954 827df9f3 balrog
};
955 827df9f3 balrog
956 827df9f3 balrog
/* omap1.c */
957 827df9f3 balrog
struct omap_mpu_state_s *omap310_mpu_init(unsigned long sdram_size,
958 3023f332 aliguori
                const char *core);
959 827df9f3 balrog
960 827df9f3 balrog
/* omap2.c */
961 827df9f3 balrog
struct omap_mpu_state_s *omap2420_mpu_init(unsigned long sdram_size,
962 3023f332 aliguori
                const char *core);
963 c3d2689d balrog
964 c3d2689d balrog
# if TARGET_PHYS_ADDR_BITS == 32
965 c3d2689d balrog
#  define OMAP_FMT_plx "%#08x"
966 c3d2689d balrog
# elif TARGET_PHYS_ADDR_BITS == 64
967 c3d2689d balrog
#  define OMAP_FMT_plx "%#08" PRIx64
968 c3d2689d balrog
# else
969 c3d2689d balrog
#  error TARGET_PHYS_ADDR_BITS undefined
970 c3d2689d balrog
# endif
971 c3d2689d balrog
972 c227f099 Anthony Liguori
uint32_t omap_badwidth_read8(void *opaque, target_phys_addr_t addr);
973 c227f099 Anthony Liguori
void omap_badwidth_write8(void *opaque, target_phys_addr_t addr,
974 9596ebb7 pbrook
                uint32_t value);
975 c227f099 Anthony Liguori
uint32_t omap_badwidth_read16(void *opaque, target_phys_addr_t addr);
976 c227f099 Anthony Liguori
void omap_badwidth_write16(void *opaque, target_phys_addr_t addr,
977 b30bb3a2 balrog
                uint32_t value);
978 c227f099 Anthony Liguori
uint32_t omap_badwidth_read32(void *opaque, target_phys_addr_t addr);
979 c227f099 Anthony Liguori
void omap_badwidth_write32(void *opaque, target_phys_addr_t addr,
980 b30bb3a2 balrog
                uint32_t value);
981 b30bb3a2 balrog
982 827df9f3 balrog
void omap_mpu_wakeup(void *opaque, int irq, int req);
983 827df9f3 balrog
984 c3d2689d balrog
# define OMAP_BAD_REG(paddr)                \
985 827df9f3 balrog
        fprintf(stderr, "%s: Bad register " OMAP_FMT_plx "\n",        \
986 827df9f3 balrog
                        __FUNCTION__, paddr)
987 c3d2689d balrog
# define OMAP_RO_REG(paddr)                \
988 827df9f3 balrog
        fprintf(stderr, "%s: Read-only register " OMAP_FMT_plx "\n",        \
989 c3d2689d balrog
                        __FUNCTION__, paddr)
990 b854bc19 balrog
991 827df9f3 balrog
/* OMAP-specific Linux bootloader tags for the ATAG_BOARD area
992 827df9f3 balrog
   (Board-specifc tags are not here)  */
993 827df9f3 balrog
#define OMAP_TAG_CLOCK                0x4f01
994 827df9f3 balrog
#define OMAP_TAG_MMC                0x4f02
995 827df9f3 balrog
#define OMAP_TAG_SERIAL_CONSOLE        0x4f03
996 827df9f3 balrog
#define OMAP_TAG_USB                0x4f04
997 827df9f3 balrog
#define OMAP_TAG_LCD                0x4f05
998 827df9f3 balrog
#define OMAP_TAG_GPIO_SWITCH        0x4f06
999 827df9f3 balrog
#define OMAP_TAG_UART                0x4f07
1000 827df9f3 balrog
#define OMAP_TAG_FBMEM                0x4f08
1001 827df9f3 balrog
#define OMAP_TAG_STI_CONSOLE        0x4f09
1002 827df9f3 balrog
#define OMAP_TAG_CAMERA_SENSOR        0x4f0a
1003 827df9f3 balrog
#define OMAP_TAG_PARTITION        0x4f0b
1004 827df9f3 balrog
#define OMAP_TAG_TEA5761        0x4f10
1005 827df9f3 balrog
#define OMAP_TAG_TMP105                0x4f11
1006 827df9f3 balrog
#define OMAP_TAG_BOOT_REASON        0x4f80
1007 827df9f3 balrog
#define OMAP_TAG_FLASH_PART_STR        0x4f81
1008 827df9f3 balrog
#define OMAP_TAG_VERSION_STR        0x4f82
1009 827df9f3 balrog
1010 e927bb00 balrog
enum {
1011 e927bb00 balrog
    OMAP_GPIOSW_TYPE_COVER        = 0 << 4,
1012 e927bb00 balrog
    OMAP_GPIOSW_TYPE_CONNECTION        = 1 << 4,
1013 e927bb00 balrog
    OMAP_GPIOSW_TYPE_ACTIVITY        = 2 << 4,
1014 e927bb00 balrog
};
1015 e927bb00 balrog
1016 e927bb00 balrog
#define OMAP_GPIOSW_INVERTED        0x0001
1017 e927bb00 balrog
#define OMAP_GPIOSW_OUTPUT        0x0002
1018 e927bb00 balrog
1019 b854bc19 balrog
# define TCMI_VERBOSE                        1
1020 d8f699cb balrog
//# define MEM_VERBOSE                        1
1021 b854bc19 balrog
1022 b854bc19 balrog
# ifdef TCMI_VERBOSE
1023 b854bc19 balrog
#  define OMAP_8B_REG(paddr)                \
1024 827df9f3 balrog
        fprintf(stderr, "%s: 8-bit register " OMAP_FMT_plx "\n",        \
1025 66450b15 balrog
                        __FUNCTION__, paddr)
1026 b854bc19 balrog
#  define OMAP_16B_REG(paddr)                \
1027 827df9f3 balrog
        fprintf(stderr, "%s: 16-bit register " OMAP_FMT_plx "\n",        \
1028 c3d2689d balrog
                        __FUNCTION__, paddr)
1029 b854bc19 balrog
#  define OMAP_32B_REG(paddr)                \
1030 827df9f3 balrog
        fprintf(stderr, "%s: 32-bit register " OMAP_FMT_plx "\n",        \
1031 c3d2689d balrog
                        __FUNCTION__, paddr)
1032 b854bc19 balrog
# else
1033 b854bc19 balrog
#  define OMAP_8B_REG(paddr)
1034 b854bc19 balrog
#  define OMAP_16B_REG(paddr)
1035 b854bc19 balrog
#  define OMAP_32B_REG(paddr)
1036 b854bc19 balrog
# endif
1037 c3d2689d balrog
1038 cf965d24 balrog
# define OMAP_MPUI_REG_MASK                0x000007ff
1039 cf965d24 balrog
1040 d8f699cb balrog
# ifdef MEM_VERBOSE
1041 d8f699cb balrog
struct io_fn {
1042 d60efc6b Blue Swirl
    CPUReadMemoryFunc * const *mem_read;
1043 d60efc6b Blue Swirl
    CPUWriteMemoryFunc * const *mem_write;
1044 d8f699cb balrog
    void *opaque;
1045 d8f699cb balrog
    int in;
1046 d8f699cb balrog
};
1047 d8f699cb balrog
1048 c227f099 Anthony Liguori
static uint32_t io_readb(void *opaque, target_phys_addr_t addr)
1049 d8f699cb balrog
{
1050 d8f699cb balrog
    struct io_fn *s = opaque;
1051 d8f699cb balrog
    uint32_t ret;
1052 d8f699cb balrog
1053 d8f699cb balrog
    s->in ++;
1054 d8f699cb balrog
    ret = s->mem_read[0](s->opaque, addr);
1055 d8f699cb balrog
    s->in --;
1056 d8f699cb balrog
    if (!s->in)
1057 d8f699cb balrog
        fprintf(stderr, "%08x ---> %02x\n", (uint32_t) addr, ret);
1058 d8f699cb balrog
    return ret;
1059 d8f699cb balrog
}
1060 c227f099 Anthony Liguori
static uint32_t io_readh(void *opaque, target_phys_addr_t addr)
1061 d8f699cb balrog
{
1062 d8f699cb balrog
    struct io_fn *s = opaque;
1063 d8f699cb balrog
    uint32_t ret;
1064 d8f699cb balrog
1065 d8f699cb balrog
    s->in ++;
1066 d8f699cb balrog
    ret = s->mem_read[1](s->opaque, addr);
1067 d8f699cb balrog
    s->in --;
1068 d8f699cb balrog
    if (!s->in)
1069 d8f699cb balrog
        fprintf(stderr, "%08x ---> %04x\n", (uint32_t) addr, ret);
1070 d8f699cb balrog
    return ret;
1071 d8f699cb balrog
}
1072 c227f099 Anthony Liguori
static uint32_t io_readw(void *opaque, target_phys_addr_t addr)
1073 d8f699cb balrog
{
1074 d8f699cb balrog
    struct io_fn *s = opaque;
1075 d8f699cb balrog
    uint32_t ret;
1076 d8f699cb balrog
1077 d8f699cb balrog
    s->in ++;
1078 d8f699cb balrog
    ret = s->mem_read[2](s->opaque, addr);
1079 d8f699cb balrog
    s->in --;
1080 d8f699cb balrog
    if (!s->in)
1081 d8f699cb balrog
        fprintf(stderr, "%08x ---> %08x\n", (uint32_t) addr, ret);
1082 d8f699cb balrog
    return ret;
1083 d8f699cb balrog
}
1084 c227f099 Anthony Liguori
static void io_writeb(void *opaque, target_phys_addr_t addr, uint32_t value)
1085 d8f699cb balrog
{
1086 d8f699cb balrog
    struct io_fn *s = opaque;
1087 d8f699cb balrog
1088 d8f699cb balrog
    if (!s->in)
1089 d8f699cb balrog
        fprintf(stderr, "%08x <--- %02x\n", (uint32_t) addr, value);
1090 d8f699cb balrog
    s->in ++;
1091 d8f699cb balrog
    s->mem_write[0](s->opaque, addr, value);
1092 d8f699cb balrog
    s->in --;
1093 d8f699cb balrog
}
1094 c227f099 Anthony Liguori
static void io_writeh(void *opaque, target_phys_addr_t addr, uint32_t value)
1095 d8f699cb balrog
{
1096 d8f699cb balrog
    struct io_fn *s = opaque;
1097 d8f699cb balrog
1098 d8f699cb balrog
    if (!s->in)
1099 d8f699cb balrog
        fprintf(stderr, "%08x <--- %04x\n", (uint32_t) addr, value);
1100 d8f699cb balrog
    s->in ++;
1101 d8f699cb balrog
    s->mem_write[1](s->opaque, addr, value);
1102 d8f699cb balrog
    s->in --;
1103 d8f699cb balrog
}
1104 c227f099 Anthony Liguori
static void io_writew(void *opaque, target_phys_addr_t addr, uint32_t value)
1105 d8f699cb balrog
{
1106 d8f699cb balrog
    struct io_fn *s = opaque;
1107 d8f699cb balrog
1108 d8f699cb balrog
    if (!s->in)
1109 d8f699cb balrog
        fprintf(stderr, "%08x <--- %08x\n", (uint32_t) addr, value);
1110 d8f699cb balrog
    s->in ++;
1111 d8f699cb balrog
    s->mem_write[2](s->opaque, addr, value);
1112 d8f699cb balrog
    s->in --;
1113 d8f699cb balrog
}
1114 d8f699cb balrog
1115 d60efc6b Blue Swirl
static CPUReadMemoryFunc * const io_readfn[] = { io_readb, io_readh, io_readw, };
1116 d60efc6b Blue Swirl
static CPUWriteMemoryFunc * const io_writefn[] = { io_writeb, io_writeh, io_writew, };
1117 d8f699cb balrog
1118 d60efc6b Blue Swirl
inline static int debug_register_io_memory(CPUReadMemoryFunc * const *mem_read,
1119 d60efc6b Blue Swirl
                                           CPUWriteMemoryFunc * const *mem_write,
1120 d60efc6b Blue Swirl
                                           void *opaque)
1121 d8f699cb balrog
{
1122 d8f699cb balrog
    struct io_fn *s = qemu_malloc(sizeof(struct io_fn));
1123 d8f699cb balrog
1124 d8f699cb balrog
    s->mem_read = mem_read;
1125 d8f699cb balrog
    s->mem_write = mem_write;
1126 d8f699cb balrog
    s->opaque = opaque;
1127 d8f699cb balrog
    s->in = 0;
1128 1eed09cb Avi Kivity
    return cpu_register_io_memory(io_readfn, io_writefn, s);
1129 d8f699cb balrog
}
1130 d8f699cb balrog
#  define cpu_register_io_memory        debug_register_io_memory
1131 d8f699cb balrog
# endif
1132 d8f699cb balrog
1133 c66fb5bc balrog
/* Define when we want to reduce the number of IO regions registered.  */
1134 477b24ef balrog
/*# define L4_MUX_HACK*/
1135 c66fb5bc balrog
1136 c66fb5bc balrog
# ifdef L4_MUX_HACK
1137 c66fb5bc balrog
#  undef l4_register_io_memory
1138 d60efc6b Blue Swirl
int l4_register_io_memory(CPUReadMemoryFunc * const *mem_read,
1139 d60efc6b Blue Swirl
                          CPUWriteMemoryFunc * const *mem_write, void *opaque);
1140 c66fb5bc balrog
# endif
1141 c66fb5bc balrog
1142 c3d2689d balrog
#endif /* hw_omap_h */