~ubuntu-branches/ubuntu/lucid/skyeye/lucid-proposed

« back to all changes in this revision

Viewing changes to arch/ppc/common/ppc_memory.h

  • Committer: Bazaar Package Importer
  • Author(s): Yu Guanghui
  • Date: 2007-08-07 13:25:49 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20070807132549-96159k1obat1fxr0
Tags: 1.2.3-1
* New upstream release
* Added NO_BFD=1, don't require libbfd now. (Closes:Bug#423933) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
This program is free software; you can redistribute it and/or modify
 
3
it under the terms of the GNU General Public License as published by
 
4
the Free Software Foundation; either version 2, or (at your option)
 
5
any later version.
 
6
 
 
7
This program is distributed in the hope that it will be useful,
 
8
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
GNU General Public License for more details.
 
11
 
 
12
You should have received a copy of the GNU General Public License along
 
13
with this program; if not, write to the Free Software Foundation, Inc.,
 
14
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
15
 
 
16
/*
 
17
 * 12/06/2007   Michael.Kang  <blackfin.kang@gmail.com>
 
18
 */
 
19
 
 
20
#ifndef __PPC_MEMORY_H__
 
21
#define __PPC_MEMORY_H__
 
22
 
 
23
//byte boot_rom[8 * 1024 * 1024];/* default 8M boot rom for e500 core */
 
24
#define INIT_RAM_SIZE 0x4000
 
25
byte * init_ram; /* 16k init ram for 8560 */
 
26
byte * boot_rom; /* default 8M bootrom for 8560 */
 
27
byte * ddr_ram; /* 64M DDR SDRAM */
 
28
unsigned long init_ram_start_addr, init_ram_size;
 
29
uint32 boot_romSize;
 
30
uint32 boot_rom_start_addr;
 
31
#define DEFAULT_BOOTROM_SIZE (8 * 1024 * 1024)
 
32
#define DDR_RAM_SIZE (16 * 1024 * 1024)
 
33
FILE * prof_file;
 
34
 
 
35
#endif