blob: e51c4f3293d1c1a315eb74a20c879f9bb75e83e4 [file] [log] [blame]
Dirk Behme2c803212008-12-14 09:47:11 +01001/*
2 * (C) Copyright 2006-2008
3 * Texas Instruments, <www.ti.com>
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 *
23 */
24
25#ifndef _CPU_H
26#define _CPU_H
27
Dirk Behmea3d14212009-08-08 09:30:23 +020028#if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
29#include <asm/types.h>
30#endif /* !(__KERNEL_STRICT_NAMES || __ASSEMBLY__) */
31
Dirk Behme2c803212008-12-14 09:47:11 +010032/* Register offsets of common modules */
33/* Control */
Dirk Behmea3d14212009-08-08 09:30:23 +020034#ifndef __KERNEL_STRICT_NAMES
Dirk Behme2c803212008-12-14 09:47:11 +010035#ifndef __ASSEMBLY__
Dirk Behme97a099e2009-08-08 09:30:21 +020036struct ctrl {
Dirk Behmea3d14212009-08-08 09:30:23 +020037 u8 res1[0xC0];
38 u16 gpmc_nadv_ale; /* 0xC0 */
39 u16 gpmc_noe; /* 0xC2 */
40 u16 gpmc_nwe; /* 0xC4 */
41 u8 res2[0x22A];
42 u32 status; /* 0x2F0 */
43 u32 gpstatus; /* 0x2F4 */
44 u8 res3[0x08];
45 u32 rpubkey_0; /* 0x300 */
46 u32 rpubkey_1; /* 0x304 */
47 u32 rpubkey_2; /* 0x308 */
48 u32 rpubkey_3; /* 0x30C */
49 u32 rpubkey_4; /* 0x310 */
50 u8 res4[0x04];
51 u32 randkey_0; /* 0x318 */
52 u32 randkey_1; /* 0x31C */
53 u32 randkey_2; /* 0x320 */
54 u32 randkey_3; /* 0x324 */
55 u8 res5[0x124];
56 u32 ctrl_omap_stat; /* 0x44C */
Dirk Behme97a099e2009-08-08 09:30:21 +020057};
Dirk Behme2c803212008-12-14 09:47:11 +010058#else /* __ASSEMBLY__ */
59#define CONTROL_STATUS 0x2F0
60#endif /* __ASSEMBLY__ */
Dirk Behmea3d14212009-08-08 09:30:23 +020061#endif /* __KERNEL_STRICT_NAMES */
Dirk Behme2c803212008-12-14 09:47:11 +010062
Dirk Behme6530a8b2009-02-12 18:55:42 +010063/* cpu type */
64#define OMAP3503 0x5c00
65#define OMAP3515 0x1c00
66#define OMAP3525 0x4c00
67#define OMAP3530 0x0c00
68
Dirk Behmea3d14212009-08-08 09:30:23 +020069#ifndef __KERNEL_STRICT_NAMES
Dirk Behmee6a6a702009-03-12 19:30:50 +010070#ifndef __ASSEMBLY__
Dirk Behme97a099e2009-08-08 09:30:21 +020071struct ctrl_id {
Dirk Behmea3d14212009-08-08 09:30:23 +020072 u8 res1[0x4];
73 u32 idcode; /* 0x04 */
74 u32 prod_id; /* 0x08 */
75 u8 res2[0x0C];
76 u32 die_id_0; /* 0x18 */
77 u32 die_id_1; /* 0x1C */
78 u32 die_id_2; /* 0x20 */
79 u32 die_id_3; /* 0x24 */
Dirk Behme97a099e2009-08-08 09:30:21 +020080};
Dirk Behmee6a6a702009-03-12 19:30:50 +010081#endif /* __ASSEMBLY__ */
Dirk Behmea3d14212009-08-08 09:30:23 +020082#endif /* __KERNEL_STRICT_NAMES */
Dirk Behmee6a6a702009-03-12 19:30:50 +010083
Dirk Behme2c803212008-12-14 09:47:11 +010084/* device type */
85#define DEVICE_MASK (0x7 << 8)
86#define SYSBOOT_MASK 0x1F
87#define TST_DEVICE 0x0
88#define EMU_DEVICE 0x1
89#define HS_DEVICE 0x2
90#define GP_DEVICE 0x3
91
Dirk Behme2c803212008-12-14 09:47:11 +010092#define GPMC_BASE (OMAP34XX_GPMC_BASE)
93#define GPMC_CONFIG_CS0 0x60
Dirk Behmecd3dcba2009-08-08 12:46:09 +020094#define GPMC_CONFIG_CS0_BASE (GPMC_BASE + GPMC_CONFIG_CS0)
Dirk Behme2c803212008-12-14 09:47:11 +010095
Dirk Behmea3d14212009-08-08 09:30:23 +020096#ifndef __KERNEL_STRICT_NAMES
Dirk Behme2c803212008-12-14 09:47:11 +010097#ifndef __ASSEMBLY__
Matthias Ludwig187af952009-05-19 09:09:31 +020098struct gpmc_cs {
Dirk Behmea3d14212009-08-08 09:30:23 +020099 u32 config1; /* 0x00 */
100 u32 config2; /* 0x04 */
101 u32 config3; /* 0x08 */
102 u32 config4; /* 0x0C */
103 u32 config5; /* 0x10 */
104 u32 config6; /* 0x14 */
105 u32 config7; /* 0x18 */
106 u32 nand_cmd; /* 0x1C */
107 u32 nand_adr; /* 0x20 */
108 u32 nand_dat; /* 0x24 */
109 u8 res[8]; /* blow up to 0x30 byte */
Matthias Ludwig187af952009-05-19 09:09:31 +0200110};
111
Dirk Behme97a099e2009-08-08 09:30:21 +0200112struct gpmc {
Dirk Behmea3d14212009-08-08 09:30:23 +0200113 u8 res1[0x10];
114 u32 sysconfig; /* 0x10 */
115 u8 res2[0x4];
116 u32 irqstatus; /* 0x18 */
117 u32 irqenable; /* 0x1C */
118 u8 res3[0x20];
119 u32 timeout_control; /* 0x40 */
120 u8 res4[0xC];
121 u32 config; /* 0x50 */
122 u32 status; /* 0x54 */
Ben Goska8fa656a2009-08-14 10:03:36 -0700123 u8 res5[0x8]; /* 0x58 */
Matthias Ludwig187af952009-05-19 09:09:31 +0200124 struct gpmc_cs cs[8]; /* 0x60, 0x90, .. */
Ben Goska8fa656a2009-08-14 10:03:36 -0700125 u8 res6[0x14]; /* 0x1E0 */
Dirk Behmea3d14212009-08-08 09:30:23 +0200126 u32 ecc_config; /* 0x1F4 */
127 u32 ecc_control; /* 0x1F8 */
128 u32 ecc_size_config; /* 0x1FC */
129 u32 ecc1_result; /* 0x200 */
130 u32 ecc2_result; /* 0x204 */
131 u32 ecc3_result; /* 0x208 */
132 u32 ecc4_result; /* 0x20C */
133 u32 ecc5_result; /* 0x210 */
134 u32 ecc6_result; /* 0x214 */
135 u32 ecc7_result; /* 0x218 */
136 u32 ecc8_result; /* 0x21C */
137 u32 ecc9_result; /* 0x220 */
Dirk Behme97a099e2009-08-08 09:30:21 +0200138};
Dirk Behme2c803212008-12-14 09:47:11 +0100139#else /* __ASSEMBLY__ */
140#define GPMC_CONFIG1 0x00
141#define GPMC_CONFIG2 0x04
142#define GPMC_CONFIG3 0x08
143#define GPMC_CONFIG4 0x0C
144#define GPMC_CONFIG5 0x10
145#define GPMC_CONFIG6 0x14
146#define GPMC_CONFIG7 0x18
147#endif /* __ASSEMBLY__ */
Dirk Behmea3d14212009-08-08 09:30:23 +0200148#endif /* __KERNEL_STRICT_NAMES */
Dirk Behme2c803212008-12-14 09:47:11 +0100149
150/* GPMC Mapping */
151#define FLASH_BASE 0x10000000 /* NOR flash, */
152 /* aligned to 256 Meg */
153#define FLASH_BASE_SDPV1 0x04000000 /* NOR flash, */
154 /* aligned to 64 Meg */
155#define FLASH_BASE_SDPV2 0x10000000 /* NOR flash, */
156 /* aligned to 256 Meg */
157#define DEBUG_BASE 0x08000000 /* debug board */
158#define NAND_BASE 0x30000000 /* NAND addr */
159 /* (actual size small port) */
160#define PISMO2_BASE 0x18000000 /* PISMO2 CS1/2 */
161#define ONENAND_MAP 0x20000000 /* OneNand addr */
162 /* (actual size small port) */
163/* SMS */
Dirk Behmea3d14212009-08-08 09:30:23 +0200164#ifndef __KERNEL_STRICT_NAMES
Dirk Behme2c803212008-12-14 09:47:11 +0100165#ifndef __ASSEMBLY__
Dirk Behme97a099e2009-08-08 09:30:21 +0200166struct sms {
Dirk Behmea3d14212009-08-08 09:30:23 +0200167 u8 res1[0x10];
168 u32 sysconfig; /* 0x10 */
169 u8 res2[0x34];
170 u32 rg_att0; /* 0x48 */
171 u8 res3[0x84];
172 u32 class_arb0; /* 0xD0 */
Dirk Behme97a099e2009-08-08 09:30:21 +0200173};
Dirk Behme2c803212008-12-14 09:47:11 +0100174#endif /* __ASSEMBLY__ */
Dirk Behmea3d14212009-08-08 09:30:23 +0200175#endif /* __KERNEL_STRICT_NAMES */
Dirk Behme2c803212008-12-14 09:47:11 +0100176
177#define BURSTCOMPLETE_GROUP7 (0x1 << 31)
178
179/* SDRC */
Dirk Behmea3d14212009-08-08 09:30:23 +0200180#ifndef __KERNEL_STRICT_NAMES
Dirk Behme2c803212008-12-14 09:47:11 +0100181#ifndef __ASSEMBLY__
Dirk Behme97a099e2009-08-08 09:30:21 +0200182struct sdrc_cs {
Dirk Behmea3d14212009-08-08 09:30:23 +0200183 u32 mcfg; /* 0x80 || 0xB0 */
184 u32 mr; /* 0x84 || 0xB4 */
185 u8 res1[0x4];
186 u32 emr2; /* 0x8C || 0xBC */
187 u8 res2[0x14];
188 u32 rfr_ctrl; /* 0x84 || 0xD4 */
189 u32 manual; /* 0xA8 || 0xD8 */
190 u8 res3[0x4];
Dirk Behme97a099e2009-08-08 09:30:21 +0200191};
Dirk Behme2c803212008-12-14 09:47:11 +0100192
Dirk Behme97a099e2009-08-08 09:30:21 +0200193struct sdrc_actim {
Dirk Behmea3d14212009-08-08 09:30:23 +0200194 u32 ctrla; /* 0x9C || 0xC4 */
195 u32 ctrlb; /* 0xA0 || 0xC8 */
Dirk Behme97a099e2009-08-08 09:30:21 +0200196};
Dirk Behme2c803212008-12-14 09:47:11 +0100197
Dirk Behme97a099e2009-08-08 09:30:21 +0200198struct sdrc {
Dirk Behmea3d14212009-08-08 09:30:23 +0200199 u8 res1[0x10];
200 u32 sysconfig; /* 0x10 */
201 u32 status; /* 0x14 */
202 u8 res2[0x28];
203 u32 cs_cfg; /* 0x40 */
204 u32 sharing; /* 0x44 */
205 u8 res3[0x18];
206 u32 dlla_ctrl; /* 0x60 */
207 u32 dlla_status; /* 0x64 */
208 u32 dllb_ctrl; /* 0x68 */
209 u32 dllb_status; /* 0x6C */
210 u32 power; /* 0x70 */
211 u8 res4[0xC];
212 struct sdrc_cs cs[2]; /* 0x80 || 0xB0 */
Dirk Behme97a099e2009-08-08 09:30:21 +0200213};
Dirk Behme2c803212008-12-14 09:47:11 +0100214#endif /* __ASSEMBLY__ */
Dirk Behmea3d14212009-08-08 09:30:23 +0200215#endif /* __KERNEL_STRICT_NAMES */
Dirk Behme2c803212008-12-14 09:47:11 +0100216
217#define DLLPHASE_90 (0x1 << 1)
218#define LOADDLL (0x1 << 2)
219#define ENADLL (0x1 << 3)
220#define DLL_DELAY_MASK 0xFF00
221#define DLL_NO_FILTER_MASK ((0x1 << 9) | (0x1 << 8))
222
223#define PAGEPOLICY_HIGH (0x1 << 0)
224#define SRFRONRESET (0x1 << 7)
Nishanth Menond414aae2009-11-09 09:29:34 -0500225#define PWDNEN (0x1 << 2)
Dirk Behme2c803212008-12-14 09:47:11 +0100226#define WAKEUPPROC (0x1 << 26)
227
228#define DDR_SDRAM (0x1 << 0)
229#define DEEPPD (0x1 << 3)
230#define B32NOT16 (0x1 << 4)
231#define BANKALLOCATION (0x2 << 6)
232#define RAMSIZE_128 (0x40 << 8) /* RAM size in 2MB chunks */
233#define ADDRMUXLEGACY (0x1 << 19)
234#define CASWIDTH_10BITS (0x5 << 20)
235#define RASWIDTH_13BITS (0x2 << 24)
236#define BURSTLENGTH4 (0x2 << 0)
237#define CASL3 (0x3 << 4)
238#define SDRC_ACTIM_CTRL0_BASE (OMAP34XX_SDRC_BASE + 0x9C)
239#define SDRC_ACTIM_CTRL1_BASE (OMAP34XX_SDRC_BASE + 0xC4)
240#define ARE_ARCV_1 (0x1 << 0)
241#define ARCV (0x4e2 << 8) /* Autorefresh count */
242#define OMAP34XX_SDRC_CS0 0x80000000
243#define OMAP34XX_SDRC_CS1 0xA0000000
244#define CMD_NOP 0x0
245#define CMD_PRECHARGE 0x1
246#define CMD_AUTOREFRESH 0x2
247#define CMD_ENTR_PWRDOWN 0x3
248#define CMD_EXIT_PWRDOWN 0x4
249#define CMD_ENTR_SRFRSH 0x5
250#define CMD_CKE_HIGH 0x6
251#define CMD_CKE_LOW 0x7
252#define SOFTRESET (0x1 << 1)
253#define SMART_IDLE (0x2 << 3)
254#define REF_ON_IDLE (0x1 << 6)
255
256/* timer regs offsets (32 bit regs) */
257
Dirk Behmea3d14212009-08-08 09:30:23 +0200258#ifndef __KERNEL_STRICT_NAMES
Dirk Behme2c803212008-12-14 09:47:11 +0100259#ifndef __ASSEMBLY__
Dirk Behme97a099e2009-08-08 09:30:21 +0200260struct gptimer {
Dirk Behmea3d14212009-08-08 09:30:23 +0200261 u32 tidr; /* 0x00 r */
262 u8 res[0xc];
263 u32 tiocp_cfg; /* 0x10 rw */
264 u32 tistat; /* 0x14 r */
265 u32 tisr; /* 0x18 rw */
266 u32 tier; /* 0x1c rw */
267 u32 twer; /* 0x20 rw */
268 u32 tclr; /* 0x24 rw */
269 u32 tcrr; /* 0x28 rw */
270 u32 tldr; /* 0x2c rw */
271 u32 ttgr; /* 0x30 rw */
272 u32 twpc; /* 0x34 r*/
273 u32 tmar; /* 0x38 rw*/
274 u32 tcar1; /* 0x3c r */
275 u32 tcicr; /* 0x40 rw */
276 u32 tcar2; /* 0x44 r */
Dirk Behme97a099e2009-08-08 09:30:21 +0200277};
Dirk Behme2c803212008-12-14 09:47:11 +0100278#endif /* __ASSEMBLY__ */
Dirk Behmea3d14212009-08-08 09:30:23 +0200279#endif /* __KERNEL_STRICT_NAMES */
Dirk Behme2c803212008-12-14 09:47:11 +0100280
281/* enable sys_clk NO-prescale /1 */
282#define GPT_EN ((0x0 << 2) | (0x1 << 1) | (0x1 << 0))
283
284/* Watchdog */
Dirk Behmea3d14212009-08-08 09:30:23 +0200285#ifndef __KERNEL_STRICT_NAMES
Dirk Behme2c803212008-12-14 09:47:11 +0100286#ifndef __ASSEMBLY__
Dirk Behme97a099e2009-08-08 09:30:21 +0200287struct watchdog {
Dirk Behmea3d14212009-08-08 09:30:23 +0200288 u8 res1[0x34];
289 u32 wwps; /* 0x34 r */
290 u8 res2[0x10];
291 u32 wspr; /* 0x48 rw */
Dirk Behme97a099e2009-08-08 09:30:21 +0200292};
Dirk Behme2c803212008-12-14 09:47:11 +0100293#endif /* __ASSEMBLY__ */
Dirk Behmea3d14212009-08-08 09:30:23 +0200294#endif /* __KERNEL_STRICT_NAMES */
Dirk Behme2c803212008-12-14 09:47:11 +0100295
296#define WD_UNLOCK1 0xAAAA
297#define WD_UNLOCK2 0x5555
298
299/* PRCM */
300#define PRCM_BASE 0x48004000
301
Dirk Behmea3d14212009-08-08 09:30:23 +0200302#ifndef __KERNEL_STRICT_NAMES
Dirk Behme2c803212008-12-14 09:47:11 +0100303#ifndef __ASSEMBLY__
Dirk Behme97a099e2009-08-08 09:30:21 +0200304struct prcm {
Dirk Behmea3d14212009-08-08 09:30:23 +0200305 u32 fclken_iva2; /* 0x00 */
306 u32 clken_pll_iva2; /* 0x04 */
307 u8 res1[0x1c];
308 u32 idlest_pll_iva2; /* 0x24 */
309 u8 res2[0x18];
310 u32 clksel1_pll_iva2 ; /* 0x40 */
311 u32 clksel2_pll_iva2; /* 0x44 */
312 u8 res3[0x8bc];
313 u32 clken_pll_mpu; /* 0x904 */
314 u8 res4[0x1c];
315 u32 idlest_pll_mpu; /* 0x924 */
316 u8 res5[0x18];
317 u32 clksel1_pll_mpu; /* 0x940 */
318 u32 clksel2_pll_mpu; /* 0x944 */
319 u8 res6[0xb8];
320 u32 fclken1_core; /* 0xa00 */
321 u8 res7[0xc];
322 u32 iclken1_core; /* 0xa10 */
323 u32 iclken2_core; /* 0xa14 */
324 u8 res8[0x28];
325 u32 clksel_core; /* 0xa40 */
326 u8 res9[0xbc];
327 u32 fclken_gfx; /* 0xb00 */
328 u8 res10[0xc];
329 u32 iclken_gfx; /* 0xb10 */
330 u8 res11[0x2c];
331 u32 clksel_gfx; /* 0xb40 */
332 u8 res12[0xbc];
333 u32 fclken_wkup; /* 0xc00 */
334 u8 res13[0xc];
335 u32 iclken_wkup; /* 0xc10 */
336 u8 res14[0xc];
337 u32 idlest_wkup; /* 0xc20 */
338 u8 res15[0x1c];
339 u32 clksel_wkup; /* 0xc40 */
340 u8 res16[0xbc];
341 u32 clken_pll; /* 0xd00 */
342 u8 res17[0x1c];
343 u32 idlest_ckgen; /* 0xd20 */
344 u8 res18[0x1c];
345 u32 clksel1_pll; /* 0xd40 */
346 u32 clksel2_pll; /* 0xd44 */
347 u32 clksel3_pll; /* 0xd48 */
348 u8 res19[0xb4];
349 u32 fclken_dss; /* 0xe00 */
350 u8 res20[0xc];
351 u32 iclken_dss; /* 0xe10 */
352 u8 res21[0x2c];
353 u32 clksel_dss; /* 0xe40 */
354 u8 res22[0xbc];
355 u32 fclken_cam; /* 0xf00 */
356 u8 res23[0xc];
357 u32 iclken_cam; /* 0xf10 */
358 u8 res24[0x2c];
359 u32 clksel_cam; /* 0xf40 */
360 u8 res25[0xbc];
361 u32 fclken_per; /* 0x1000 */
362 u8 res26[0xc];
363 u32 iclken_per; /* 0x1010 */
364 u8 res27[0x2c];
365 u32 clksel_per; /* 0x1040 */
366 u8 res28[0xfc];
367 u32 clksel1_emu; /* 0x1140 */
Dirk Behme97a099e2009-08-08 09:30:21 +0200368};
Dirk Behme2c803212008-12-14 09:47:11 +0100369#else /* __ASSEMBLY__ */
370#define CM_CLKSEL_CORE 0x48004a40
371#define CM_CLKSEL_GFX 0x48004b40
372#define CM_CLKSEL_WKUP 0x48004c40
373#define CM_CLKEN_PLL 0x48004d00
374#define CM_CLKSEL1_PLL 0x48004d40
375#define CM_CLKSEL1_EMU 0x48005140
376#endif /* __ASSEMBLY__ */
Dirk Behmea3d14212009-08-08 09:30:23 +0200377#endif /* __KERNEL_STRICT_NAMES */
Dirk Behme2c803212008-12-14 09:47:11 +0100378
379#define PRM_BASE 0x48306000
380
Dirk Behmea3d14212009-08-08 09:30:23 +0200381#ifndef __KERNEL_STRICT_NAMES
Dirk Behme2c803212008-12-14 09:47:11 +0100382#ifndef __ASSEMBLY__
Dirk Behme97a099e2009-08-08 09:30:21 +0200383struct prm {
Dirk Behmea3d14212009-08-08 09:30:23 +0200384 u8 res1[0xd40];
385 u32 clksel; /* 0xd40 */
386 u8 res2[0x50c];
387 u32 rstctrl; /* 0x1250 */
388 u8 res3[0x1c];
389 u32 clksrc_ctrl; /* 0x1270 */
Dirk Behme97a099e2009-08-08 09:30:21 +0200390};
Dirk Behme2c803212008-12-14 09:47:11 +0100391#else /* __ASSEMBLY__ */
392#define PRM_RSTCTRL 0x48307250
393#endif /* __ASSEMBLY__ */
Dirk Behmea3d14212009-08-08 09:30:23 +0200394#endif /* __KERNEL_STRICT_NAMES */
Dirk Behme2c803212008-12-14 09:47:11 +0100395
396#define SYSCLKDIV_1 (0x1 << 6)
397#define SYSCLKDIV_2 (0x1 << 7)
398
399#define CLKSEL_GPT1 (0x1 << 0)
400
401#define EN_GPT1 (0x1 << 0)
402#define EN_32KSYNC (0x1 << 2)
403
404#define ST_WDT2 (0x1 << 5)
405
406#define ST_MPU_CLK (0x1 << 0)
407
408#define ST_CORE_CLK (0x1 << 0)
409
410#define ST_PERIPH_CLK (0x1 << 1)
411
412#define ST_IVA2_CLK (0x1 << 0)
413
414#define RESETDONE (0x1 << 0)
415
416#define TCLR_ST (0x1 << 0)
417#define TCLR_AR (0x1 << 1)
418#define TCLR_PRE (0x1 << 5)
419
420/* SMX-APE */
421#define PM_RT_APE_BASE_ADDR_ARM (SMX_APE_BASE + 0x10000)
422#define PM_GPMC_BASE_ADDR_ARM (SMX_APE_BASE + 0x12400)
423#define PM_OCM_RAM_BASE_ADDR_ARM (SMX_APE_BASE + 0x12800)
424#define PM_IVA2_BASE_ADDR_ARM (SMX_APE_BASE + 0x14000)
425
Dirk Behmea3d14212009-08-08 09:30:23 +0200426#ifndef __KERNEL_STRICT_NAMES
Dirk Behme2c803212008-12-14 09:47:11 +0100427#ifndef __ASSEMBLY__
Dirk Behme97a099e2009-08-08 09:30:21 +0200428struct pm {
Dirk Behmea3d14212009-08-08 09:30:23 +0200429 u8 res1[0x48];
430 u32 req_info_permission_0; /* 0x48 */
431 u8 res2[0x4];
432 u32 read_permission_0; /* 0x50 */
433 u8 res3[0x4];
434 u32 wirte_permission_0; /* 0x58 */
435 u8 res4[0x4];
436 u32 addr_match_1; /* 0x58 */
437 u8 res5[0x4];
438 u32 req_info_permission_1; /* 0x68 */
439 u8 res6[0x14];
440 u32 addr_match_2; /* 0x80 */
Dirk Behme97a099e2009-08-08 09:30:21 +0200441};
Dirk Behme2c803212008-12-14 09:47:11 +0100442#endif /*__ASSEMBLY__ */
Dirk Behmea3d14212009-08-08 09:30:23 +0200443#endif /* __KERNEL_STRICT_NAMES */
Dirk Behme2c803212008-12-14 09:47:11 +0100444
445/* Permission values for registers -Full fledged permissions to all */
446#define UNLOCK_1 0xFFFFFFFF
447#define UNLOCK_2 0x00000000
448#define UNLOCK_3 0x0000FFFF
449
450#define NOT_EARLY 0
451
452/* I2C base */
453#define I2C_BASE1 (OMAP34XX_CORE_L4_IO_BASE + 0x70000)
454#define I2C_BASE2 (OMAP34XX_CORE_L4_IO_BASE + 0x72000)
455#define I2C_BASE3 (OMAP34XX_CORE_L4_IO_BASE + 0x60000)
456
457#endif /* _CPU_H */