2004-03-14 00:07:33 +00:00
|
|
|
/*
|
2006-10-04 05:12:49 +00:00
|
|
|
* Copyright (C) 2002 Scott McNutt <smcnutt@artesyncp.com>
|
|
|
|
*
|
2013-10-07 11:07:26 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2006-10-04 05:12:49 +00:00
|
|
|
*/
|
2004-03-14 00:07:33 +00:00
|
|
|
|
|
|
|
#include <ppc_asm.tmpl>
|
|
|
|
#include <config.h>
|
2010-04-13 03:28:07 +00:00
|
|
|
#include <asm/mmu.h>
|
2010-09-20 14:05:31 +00:00
|
|
|
#include <asm/ppc4xx.h>
|
2004-03-14 00:07:33 +00:00
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* TLB TABLE
|
|
|
|
*
|
|
|
|
* This table is used by the cpu boot code to setup the initial tlb
|
|
|
|
* entries. Rather than make broad assumptions in the cpu source tree,
|
|
|
|
* this table lets each board set things up however they like.
|
|
|
|
*
|
|
|
|
* Pointer to the table is returned in r1
|
|
|
|
*
|
|
|
|
*************************************************************************/
|
|
|
|
|
2007-03-07 15:43:00 +00:00
|
|
|
.section .bootpg,"ax"
|
|
|
|
.globl tlbtab
|
2004-03-14 00:07:33 +00:00
|
|
|
|
|
|
|
tlbtab:
|
2007-03-07 15:43:00 +00:00
|
|
|
tlbtab_start
|
|
|
|
|
2010-04-14 11:57:18 +00:00
|
|
|
tlbentry(0xf0000000, SZ_256M, 0xf0000000, 1, AC_RWX | SA_IG)
|
2007-03-07 15:43:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* TLB entries for SDRAM are not needed on this platform.
|
|
|
|
* They are dynamically generated in the SPD DDR(2) detection
|
|
|
|
* routine.
|
|
|
|
*/
|
|
|
|
|
2010-04-14 11:57:18 +00:00
|
|
|
tlbentry(CONFIG_SYS_PERIPHERAL_BASE, SZ_256M, 0x40000000, 1, AC_RW | SA_IG)
|
|
|
|
tlbentry(CONFIG_SYS_ISRAM_BASE, SZ_4K, 0x80000000, 0, AC_RWX)
|
|
|
|
tlbentry(CONFIG_SYS_ISRAM_BASE + 0x1000, SZ_4K, 0x80001000, 0, AC_RWX)
|
|
|
|
tlbentry(CONFIG_SYS_PCI_BASE, SZ_256M, 0x00000000, 2, AC_RW | SA_IG)
|
|
|
|
tlbentry(CONFIG_SYS_PCI_MEMBASE, SZ_256M, 0x00000000, 3, AC_RW | SA_IG)
|
2007-03-07 15:43:00 +00:00
|
|
|
tlbtab_end
|