blob: 35085f0a06a5594e90332349142f7b9c56b1921d [file] [log] [blame]
wdenk0e6d7982004-03-14 00:07:33 +00001/*
Stefan Roese56fb6ba2006-10-04 07:12:49 +02002 * Copyright (C) 2002 Scott McNutt <smcnutt@artesyncp.com>
3 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02004 * SPDX-License-Identifier: GPL-2.0+
Stefan Roese56fb6ba2006-10-04 07:12:49 +02005 */
wdenk0e6d7982004-03-14 00:07:33 +00006
7#include <ppc_asm.tmpl>
8#include <config.h>
Peter Tyser61f2b382010-04-12 22:28:07 -05009#include <asm/mmu.h>
Stefan Roese550650d2010-09-20 16:05:31 +020010#include <asm/ppc4xx.h>
wdenk0e6d7982004-03-14 00:07:33 +000011
12/**************************************************************************
13 * TLB TABLE
14 *
15 * This table is used by the cpu boot code to setup the initial tlb
16 * entries. Rather than make broad assumptions in the cpu source tree,
17 * this table lets each board set things up however they like.
18 *
19 * Pointer to the table is returned in r1
20 *
21 *************************************************************************/
22
Stefan Roesefa1aef12007-03-07 16:43:00 +010023 .section .bootpg,"ax"
24 .globl tlbtab
wdenk0e6d7982004-03-14 00:07:33 +000025
26tlbtab:
Stefan Roesefa1aef12007-03-07 16:43:00 +010027 tlbtab_start
28
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020029 tlbentry(0xf0000000, SZ_256M, 0xf0000000, 1, AC_RWX | SA_IG)
Stefan Roesefa1aef12007-03-07 16:43:00 +010030
31 /*
32 * TLB entries for SDRAM are not needed on this platform.
33 * They are dynamically generated in the SPD DDR(2) detection
34 * routine.
35 */
36
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020037 tlbentry(CONFIG_SYS_PERIPHERAL_BASE, SZ_256M, 0x40000000, 1, AC_RW | SA_IG)
38 tlbentry(CONFIG_SYS_ISRAM_BASE, SZ_4K, 0x80000000, 0, AC_RWX)
39 tlbentry(CONFIG_SYS_ISRAM_BASE + 0x1000, SZ_4K, 0x80001000, 0, AC_RWX)
40 tlbentry(CONFIG_SYS_PCI_BASE, SZ_256M, 0x00000000, 2, AC_RW | SA_IG)
41 tlbentry(CONFIG_SYS_PCI_MEMBASE, SZ_256M, 0x00000000, 3, AC_RW | SA_IG)
Stefan Roesefa1aef12007-03-07 16:43:00 +010042 tlbtab_end