Statistics
| Branch: | Revision:

root / hw / omap.h @ e7b43f7e

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