1/*	$NetBSD: sdp24xx.h,v 1.2 2008/04/27 18:58:47 matt Exp $	*/
2/*
3 * Copyright (c) 2007 Microsoft
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 *    notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 *    must display the following acknowledgement:
16 *	This product includes software developed by Microsoft
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
19 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
20 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTERS BE LIABLE FOR ANY DIRECT,
22 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 */
30
31#ifndef _EVBARM_TISDP24XX_SDP24XX_H
32#define _EVBARM_TISDP24XX_SDP24XX_H
33
34#include <arm/omap/omap2_reg.h>
35
36/*
37 * Kernel VM space: 192MB at KERNEL_VM_BASE
38 */
39#define	KERNEL_VM_BASE		((KERNEL_BASE + 0x01000000) & ~(0x400000-1))
40#define KERNEL_VM_SIZE		0x0C000000
41
42/*
43 * We devmap IO starting at KERNEL_VM_BASE + KERNEL_VM_SIZE
44 */
45#define	OMAP2430_KERNEL_IO_VBASE	(KERNEL_VM_BASE + KERNEL_VM_SIZE)
46#define	OMAP2430_L4_CORE_VBASE		OMAP2430_KERNEL_IO_VBASE
47#define	OMAP2430_L4_WAKEUP_VBASE	(OMAP2430_L4_CORE_VBASE   + OMAP2430_L4_CORE_SIZE)
48#define	OMAP2430_KERNEL_IO_VEND		(OMAP2430_L4_WAKEUP_VBASE + OMAP2430_L4_WAKEUP_SIZE)
49
50#define CONSADDR_VA	((CONSADDR - OMAP2430_L4_CORE_BASE) + OMAP2430_L4_CORE_VBASE)
51
52
53#endif /* _EVBARM_TISDP24XX_SDP24XX_H */
54