1/*
2 * MPC834X SYS common board definitions
3 *
4 * Maintainer: Kumar Gala <galak@kernel.crashing.org>
5 *
6 * Copyright 2005 Freescale Semiconductor, Inc.
7 *
8 * This program is free software; you can redistribute  it and/or modify it
9 * under  the terms of  the GNU General  Public License as published by the
10 * Free Software Foundation;  either version 2 of the  License, or (at your
11 * option) any later version.
12 *
13 */
14
15#ifndef __MACH_MPC83XX_SYS_H__
16#define __MACH_MPC83XX_SYS_H__
17
18#include <linux/init.h>
19#include <syslib/ppc83xx_setup.h>
20#include <asm/ppcboot.h>
21
22#define VIRT_IMMRBAR		((uint)0xfe000000)
23
24#define BCSR_PHYS_ADDR		((uint)0xf8000000)
25#define BCSR_SIZE		((uint)(32 * 1024))
26
27#define BCSR_MISC_REG2_OFF	0x07
28#define BCSR_MISC_REG2_PORESET	0x01
29
30#define BCSR_MISC_REG3_OFF	0x08
31#define BCSR_MISC_REG3_CNFLOCK	0x80
32
33#define PIRQA	MPC83xx_IRQ_EXT4
34#define PIRQB	MPC83xx_IRQ_EXT5
35#define PIRQC	MPC83xx_IRQ_EXT6
36#define PIRQD	MPC83xx_IRQ_EXT7
37
38#define MPC83xx_PCI1_LOWER_IO	0x00000000
39#define MPC83xx_PCI1_UPPER_IO	0x00ffffff
40#define MPC83xx_PCI1_LOWER_MEM	0x80000000
41#define MPC83xx_PCI1_UPPER_MEM	0x9fffffff
42#define MPC83xx_PCI1_IO_BASE	0xe2000000
43#define MPC83xx_PCI1_MEM_OFFSET	0x00000000
44#define MPC83xx_PCI1_IO_SIZE	0x01000000
45
46#define MPC83xx_PCI2_LOWER_IO	0x00000000
47#define MPC83xx_PCI2_UPPER_IO	0x00ffffff
48#define MPC83xx_PCI2_LOWER_MEM	0xa0000000
49#define MPC83xx_PCI2_UPPER_MEM	0xbfffffff
50#define MPC83xx_PCI2_IO_BASE	0xe3000000
51#define MPC83xx_PCI2_MEM_OFFSET	0x00000000
52#define MPC83xx_PCI2_IO_SIZE	0x01000000
53
54#endif                /* __MACH_MPC83XX_SYS_H__ */
55