Home | History | Annotate | Line # | Download | only in gemini
gemini.h revision 1.8.8.2
      1  1.8.8.2  yamt /*	$NetBSD: gemini.h,v 1.8.8.2 2009/05/04 08:10:57 yamt Exp $	*/
      2  1.8.8.2  yamt 
      3  1.8.8.2  yamt /*-
      4  1.8.8.2  yamt  * Copyright (c) 2008 The NetBSD Foundation, Inc.
      5  1.8.8.2  yamt  * All rights reserved.
      6  1.8.8.2  yamt  *
      7  1.8.8.2  yamt  * This code is derived from software contributed to The NetBSD Foundation
      8  1.8.8.2  yamt  * by Matt Thomas <matt (at) 3am-software.com>
      9  1.8.8.2  yamt  *
     10  1.8.8.2  yamt  * Redistribution and use in source and binary forms, with or without
     11  1.8.8.2  yamt  * modification, are permitted provided that the following conditions
     12  1.8.8.2  yamt  * are met:
     13  1.8.8.2  yamt  * 1. Redistributions of source code must retain the above copyright
     14  1.8.8.2  yamt  *    notice, this list of conditions and the following disclaimer.
     15  1.8.8.2  yamt  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.8.8.2  yamt  *    notice, this list of conditions and the following disclaimer in the
     17  1.8.8.2  yamt  *    documentation and/or other materials provided with the distribution.
     18  1.8.8.2  yamt  *
     19  1.8.8.2  yamt  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  1.8.8.2  yamt  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  1.8.8.2  yamt  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  1.8.8.2  yamt  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  1.8.8.2  yamt  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  1.8.8.2  yamt  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  1.8.8.2  yamt  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  1.8.8.2  yamt  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  1.8.8.2  yamt  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  1.8.8.2  yamt  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  1.8.8.2  yamt  * POSSIBILITY OF SUCH DAMAGE.
     30  1.8.8.2  yamt  */
     31  1.8.8.2  yamt 
     32  1.8.8.2  yamt #ifndef _EVBARM_GEMINI_GEMINI_H
     33  1.8.8.2  yamt #define _EVBARM_GEMINI_GEMINI_H
     34  1.8.8.2  yamt 
     35  1.8.8.2  yamt /*
     36  1.8.8.2  yamt  * sanity check opt_gemini.h
     37  1.8.8.2  yamt  */
     38  1.8.8.2  yamt #include "opt_gemini.h"
     39  1.8.8.2  yamt #if !defined(GEMINI)
     40  1.8.8.2  yamt # error must define GEMINI to use gemini.h
     41  1.8.8.2  yamt #endif
     42  1.8.8.2  yamt #if !defined(GEMINI_SINGLE) && !defined(GEMINI_MASTER) && !defined(GEMINI_SLAVE)
     43  1.8.8.2  yamt # error must define one of GEMINI_SINGLE, GEMINI_MASTER, or GEMINI_SLAVE
     44  1.8.8.2  yamt #endif
     45  1.8.8.2  yamt #if defined(GEMINI_SINGLE)
     46  1.8.8.2  yamt # if defined(GEMINI_MASTER) || defined(GEMINI_SLAVE)
     47  1.8.8.2  yamt #  error GEMINI_SINGLE can not define either GEMINI_MASTER or GEMINI_SLAVE
     48  1.8.8.2  yamt # endif
     49  1.8.8.2  yamt #else
     50  1.8.8.2  yamt # if defined(GEMINI_MASTER) && defined(GEMINI_SLAVE)
     51  1.8.8.2  yamt #  error can not define both GEMINI_MASTER and GEMINI_SLAVE
     52  1.8.8.2  yamt # endif
     53  1.8.8.2  yamt #endif
     54  1.8.8.2  yamt 
     55  1.8.8.2  yamt #include <machine/vmparam.h>
     56  1.8.8.2  yamt #include <arm/gemini/gemini_reg.h>
     57  1.8.8.2  yamt 
     58  1.8.8.2  yamt 
     59  1.8.8.2  yamt /*
     60  1.8.8.2  yamt  * Kernel VM space: 192MB at KERNEL_VM_BASE
     61  1.8.8.2  yamt  */
     62  1.8.8.2  yamt #define	KERNEL_VM_BASE		((KERNEL_BASE + 0x01000000) & ~(0x400000-1))
     63  1.8.8.2  yamt #define KERNEL_VM_SIZE		0x0C000000
     64  1.8.8.2  yamt 
     65  1.8.8.2  yamt /*
     66  1.8.8.2  yamt  * We devmap IO starting at KERNEL_VM_BASE + KERNEL_VM_SIZE
     67  1.8.8.2  yamt  */
     68  1.8.8.2  yamt #define	GEMINI_KERNEL_IO_VBASE	(KERNEL_VM_BASE + KERNEL_VM_SIZE)
     69  1.8.8.2  yamt #define	GEMINI_GLOBAL_VBASE	GEMINI_KERNEL_IO_VBASE
     70  1.8.8.2  yamt #define	GEMINI_WATCHDOG_VBASE	(GEMINI_GLOBAL_VBASE   + L1_S_SIZE)
     71  1.8.8.2  yamt #define	GEMINI_UART_VBASE	(GEMINI_WATCHDOG_VBASE + L1_S_SIZE)
     72  1.8.8.2  yamt #define	GEMINI_LPCHC_VBASE	(GEMINI_UART_VBASE     + L1_S_SIZE)
     73  1.8.8.2  yamt #define	GEMINI_LPCIO_VBASE	(GEMINI_LPCHC_VBASE    + L1_S_SIZE)
     74  1.8.8.2  yamt #define	GEMINI_TIMER_VBASE	(GEMINI_LPCIO_VBASE    + L1_S_SIZE)
     75  1.8.8.2  yamt #define	GEMINI_DRAMC_VBASE	(GEMINI_TIMER_VBASE    + L1_S_SIZE)
     76  1.8.8.2  yamt 
     77  1.8.8.2  yamt /*
     78  1.8.8.2  yamt  * mapping of physical RAM
     79  1.8.8.2  yamt  */
     80  1.8.8.2  yamt #define	GEMINI_RAMDISK_VBASE	(GEMINI_DRAMC_VBASE    + L1_S_SIZE)
     81  1.8.8.2  yamt #define	GEMINI_RAMDISK_PBASE	0x00800000
     82  1.8.8.2  yamt #define	GEMINI_RAMDISK_SIZE	0x00300000
     83  1.8.8.2  yamt #define	GEMINI_RAMDISK_PEND	(GEMINI_RAMDISK_PBASE + GEMINI_RAMDISK_SIZE)
     84  1.8.8.2  yamt 
     85  1.8.8.2  yamt #define	GEMINI_IPMQ_VBASE 					\
     86  1.8.8.2  yamt 	((GEMINI_RAMDISK_VBASE + GEMINI_RAMDISK_SIZE		\
     87  1.8.8.2  yamt 	  + (L1_S_SIZE * 4) - 1) & ~((L1_S_SIZE * 4) - 1))
     88  1.8.8.2  yamt 		/* round up for l2pt alignment */
     89  1.8.8.2  yamt #ifdef GEMINI_SLAVE
     90  1.8.8.2  yamt # define	GEMINI_IPMQ_PBASE	(GEMINI_RAMDISK_PEND + (GEMINI_BUSBASE * 1024 * 1024))
     91  1.8.8.2  yamt #else
     92  1.8.8.2  yamt # define	GEMINI_IPMQ_PBASE	GEMINI_RAMDISK_PEND
     93  1.8.8.2  yamt #endif
     94  1.8.8.2  yamt #if 0
     95  1.8.8.2  yamt # define	GEMINI_IPMQ_SIZE	(2 * sizeof(ipm_queue_t))
     96  1.8.8.2  yamt #else
     97  1.8.8.2  yamt # define	GEMINI_IPMQ_SIZE	(2 * 4096)
     98  1.8.8.2  yamt #endif
     99  1.8.8.2  yamt #define	GEMINI_IPMQ_PEND	(GEMINI_IPMQ_PBASE + GEMINI_IPMQ_SIZE)
    100  1.8.8.2  yamt 
    101  1.8.8.2  yamt /*
    102  1.8.8.2  yamt  * reserve physical RAM, as needed
    103  1.8.8.2  yamt  *
    104  1.8.8.2  yamt  * NOTE: the RAM used for the IPM queues is owned by the MASTER
    105  1.8.8.2  yamt  * so MASTER needs to reserve those pages from VM; the slave does not.
    106  1.8.8.2  yamt  * Hence, GEMINI_RAM_RESV_PEND is adjusted for the MASTER but not the SLAVE.
    107  1.8.8.2  yamt  */
    108  1.8.8.2  yamt #define GEMINI_RAM_RESV_PBASE	0
    109  1.8.8.2  yamt #define GEMINI_RAM_RESV_PEND	0
    110  1.8.8.2  yamt #if defined(MEMORY_DISK_DYNAMIC)
    111  1.8.8.2  yamt # undef  GEMINI_RAM_RESV_PBASE
    112  1.8.8.2  yamt # undef  GEMINI_RAM_RESV_PEND
    113  1.8.8.2  yamt # define GEMINI_RAM_RESV_PBASE	GEMINI_RAMDISK_PBASE
    114  1.8.8.2  yamt # define GEMINI_RAM_RESV_PEND	GEMINI_RAMDISK_PEND
    115  1.8.8.2  yamt #endif
    116  1.8.8.2  yamt #if (NGEMINIIPM > 0) && !defined(GEMINI_SLAVE)
    117  1.8.8.2  yamt # if (NGEMINIIPM > 1)
    118  1.8.8.2  yamt #  error unexpected NGEMINIIPM > 1
    119  1.8.8.2  yamt # endif
    120  1.8.8.2  yamt # if (GEMINI_RAM_RESV_PBASE == 0)
    121  1.8.8.2  yamt #  undef  GEMINI_RAM_RESV_PBASE
    122  1.8.8.2  yamt #  define GEMINI_RAM_RESV_PBASE	GEMINI_IPMQ_PBASE
    123  1.8.8.2  yamt # endif
    124  1.8.8.2  yamt # undef  GEMINI_RAM_RESV_PEND
    125  1.8.8.2  yamt # define GEMINI_RAM_RESV_PEND	GEMINI_IPMQ_PEND
    126  1.8.8.2  yamt #endif
    127  1.8.8.2  yamt 
    128  1.8.8.2  yamt /*
    129  1.8.8.2  yamt  * to map all of memory, including RAM owned by both core.
    130  1.8.8.2  yamt  * we start at nice round vbase to simplify conversion
    131  1.8.8.2  yamt  * from VA to PA and back
    132  1.8.8.2  yamt  */
    133  1.8.8.2  yamt #define GEMINI_ALLMEM_PBASE	0
    134  1.8.8.2  yamt #define GEMINI_ALLMEM_VBASE	0xf0000000
    135  1.8.8.2  yamt #define GEMINI_ALLMEM_SIZE	128		/* units of MB */
    136  1.8.8.2  yamt 
    137  1.8.8.2  yamt 
    138  1.8.8.2  yamt #endif /* _EVBARM_GEMINI_GEMINI_H */
    139