blob: ab4b6ceda7f975f71112b131aca57cd07162e289 [file] [log] [blame]
Matthias Fuchs15a08bc2008-01-17 10:52:30 +01001/*
2 * (C) Copyright 2008
3 * Matthias Fuchs, esd gmbh, matthias.fuchs@esd-electronics.com
4 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02005 * SPDX-License-Identifier: GPL-2.0+
Matthias Fuchs15a08bc2008-01-17 10:52:30 +01006 */
7
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +02008#include <asm-offsets.h>
Matthias Fuchs15a08bc2008-01-17 10:52:30 +01009#include <ppc_asm.tmpl>
Peter Tyser61f2b382010-04-12 22:28:07 -050010#include <asm/mmu.h>
Matthias Fuchs15a08bc2008-01-17 10:52:30 +010011#include <config.h>
12
13/*
14 * TLB TABLE
15 *
16 * This table is used by the cpu boot code to setup the initial tlb
17 * entries. Rather than make broad assumptions in the cpu source tree,
18 * this table lets each board set things up however they like.
19 *
20 * Pointer to the table is returned in r1
21 */
22 .section .bootpg,"ax"
23 .globl tlbtab
24
25tlbtab:
26 tlbtab_start
27
28 /*
29 * BOOT_CS (FLASH) must be first. Before relocation SA_I can be off to use the
30 * speed up boot process. It is patched after relocation to enable SA_I
31 */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020032 tlbentry( CONFIG_SYS_BOOT_BASE_ADDR, SZ_256M, CONFIG_SYS_BOOT_BASE_ADDR, 1, AC_RWX | SA_G )
Matthias Fuchs15a08bc2008-01-17 10:52:30 +010033
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020034#ifdef CONFIG_SYS_INIT_RAM_DCACHE
Matthias Fuchs15a08bc2008-01-17 10:52:30 +010035 /* TLB-entry for init-ram in dcache (SA_I must be turned off!) */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020036 tlbentry( CONFIG_SYS_INIT_RAM_ADDR, SZ_64K, CONFIG_SYS_INIT_RAM_ADDR, 0, AC_RWX | SA_G )
Matthias Fuchs15a08bc2008-01-17 10:52:30 +010037#endif
38
39 /* TLB-entry for PCI Memory */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020040 tlbentry( CONFIG_SYS_PCI_MEMBASE, SZ_256M, CONFIG_SYS_PCI_MEMBASE, 1, AC_RW | SA_IG )
41 tlbentry( CONFIG_SYS_PCI_MEMBASE1, SZ_256M, CONFIG_SYS_PCI_MEMBASE1, 1, AC_RW | SA_IG )
42 tlbentry( CONFIG_SYS_PCI_MEMBASE2, SZ_256M, CONFIG_SYS_PCI_MEMBASE2, 1, AC_RW | SA_IG )
43 tlbentry( CONFIG_SYS_PCI_MEMBASE3, SZ_256M, CONFIG_SYS_PCI_MEMBASE3, 1, AC_RW | SA_IG )
Matthias Fuchs15a08bc2008-01-17 10:52:30 +010044
45 /* TLB-entry for PCI IO */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020046 tlbentry( CONFIG_SYS_PCI_IOBASE, SZ_64K, CONFIG_SYS_PCI_IOBASE, 1, AC_RW | SA_IG )
Matthias Fuchs15a08bc2008-01-17 10:52:30 +010047
48 /* TLB-entries for EBC: CPLD, DUMEM, DUIO */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020049 tlbentry( CONFIG_SYS_CPLD_BASE, SZ_1K, CONFIG_SYS_CPLD_BASE, 1, AC_RWX | SA_IG )
50 tlbentry( CONFIG_SYS_DUMEM_BASE, SZ_1M, CONFIG_SYS_DUMEM_BASE, 1, AC_RWX | SA_IG )
51 tlbentry( CONFIG_SYS_DUIO_BASE, SZ_64K, CONFIG_SYS_DUIO_BASE, 1, AC_RWX | SA_IG )
Matthias Fuchs15a08bc2008-01-17 10:52:30 +010052
53 /* TLB-entry for NAND */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020054 tlbentry( CONFIG_SYS_NAND0_ADDR, SZ_1K, CONFIG_SYS_NAND0_ADDR, 1, AC_RWX | SA_IG )
55 tlbentry( CONFIG_SYS_NAND1_ADDR, SZ_1K, CONFIG_SYS_NAND1_ADDR, 1, AC_RWX | SA_IG )
Matthias Fuchs15a08bc2008-01-17 10:52:30 +010056
57 /* TLB-entry for Internal Registers & OCM */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020058 tlbentry( 0xe0000000, SZ_16M, 0xe0000000, 0, AC_RWX | SA_I )
Matthias Fuchs15a08bc2008-01-17 10:52:30 +010059
60 /* TLB-entry PCI registers */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020061 tlbentry( 0xEEC00000, SZ_1K, 0xEEC00000, 1, AC_RWX | SA_IG )
Matthias Fuchs15a08bc2008-01-17 10:52:30 +010062
63 /* TLB-entry for peripherals */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020064 tlbentry( 0xEF000000, SZ_16M, 0xEF000000, 1, AC_RWX | SA_IG)
Matthias Fuchs15a08bc2008-01-17 10:52:30 +010065
66 tlbtab_end