blob: d9c4eb788940fd1e256a5ee554d3f70bee54df63 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Matt Porter3e9e7c12005-11-07 00:58:15 -08002 * Walnut board definitions
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Matt Porter3e9e7c12005-11-07 00:58:15 -08004 * Copyright (c) 2005 DENX Software Engineering
5 * Stefan Roese <sr@denx.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Matt Porter3e9e7c12005-11-07 00:58:15 -08007 * Based on original work by
8 * Copyright (c) 1999 Grant Erickson <grant@lcse.umn.edu>
9 * Frank Rowand <frank_rowand@mvista.com>
10 * Debbie Chu <debbie_chu@mvista.com>
11 * 2000 (c) MontaVista, Software, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
Matt Porter3e9e7c12005-11-07 00:58:15 -080013 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
17 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
19
20#ifdef __KERNEL__
21#ifndef __ASM_WALNUT_H__
22#define __ASM_WALNUT_H__
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <platforms/4xx/ibm405gp.h>
Matt Porter3e9e7c12005-11-07 00:58:15 -080025#include <asm/ppcboot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27/* Memory map for the IBM "Walnut" 405GP evaluation board.
28 * Generic 4xx plus RTC.
29 */
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#define WALNUT_RTC_PADDR ((uint)0xf0000000)
32#define WALNUT_RTC_VADDR WALNUT_RTC_PADDR
33#define WALNUT_RTC_SIZE ((uint)8*1024)
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#define BASE_BAUD 691200
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#define WALNUT_PS2_BASE 0xF0100000
Matt Porter3e9e7c12005-11-07 00:58:15 -080038
39/* Flash */
40#define PPC40x_FPGA_BASE 0xF0300000
41#define PPC40x_FPGA_REG_OFFS 5 /* offset to flash map reg */
42#define PPC40x_FLASH_ONBD_N(x) (x & 0x02)
43#define PPC40x_FLASH_SRAM_SEL(x) (x & 0x01)
44#define PPC40x_FLASH_LOW 0xFFF00000
45#define PPC40x_FLASH_HIGH 0xFFF80000
46#define PPC40x_FLASH_SIZE 0x80000
47#define WALNUT_FPGA_BASE PPC40x_FPGA_BASE
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#define PPC4xx_MACHINE_NAME "IBM Walnut"
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#endif /* __ASM_WALNUT_H__ */
52#endif /* __KERNEL__ */