blob: c0e83de25795ca85eec053e08e5640d52a17ccdb [file] [log] [blame]
Stefan Roesea4c8d132006-06-02 16:18:04 +02001/*
2 * (C) Copyright 2006
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02005 * SPDX-License-Identifier: GPL-2.0+
Stefan Roesea4c8d132006-06-02 16:18:04 +02006 */
7
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +02008#include <asm-offsets.h>
Stefan Roesea4c8d132006-06-02 16:18:04 +02009#include <ppc_asm.tmpl>
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020010#include <asm/mmu.h>
Stefan Roesea4c8d132006-06-02 16:18:04 +020011#include <config.h>
12
Stefan Roesea4c8d132006-06-02 16:18:04 +020013/**************************************************************************
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 *************************************************************************/
23
24 .section .bootpg,"ax"
25 .globl tlbtab
26
27tlbtab:
Heiko Schocher566a4942007-06-22 19:11:54 +020028 tlbtab_start
Stefan Roesea4c8d132006-06-02 16:18:04 +020029
Heiko Schocher566a4942007-06-22 19:11:54 +020030 /*
31 * BOOT_CS (FLASH) must be first. Before relocation SA_I can be off to use the
32 * speed up boot process. It is patched after relocation to enable SA_I
33 */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020034 tlbentry( CONFIG_SYS_BOOT_BASE_ADDR, SZ_256M, CONFIG_SYS_BOOT_BASE_ADDR, 0, AC_RWX | SA_G/*|SA_I*/)
Stefan Roesea4c8d132006-06-02 16:18:04 +020035
Heiko Schocher566a4942007-06-22 19:11:54 +020036 /* TLB-entry for init-ram in dcache (SA_I must be turned off!) */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020037 tlbentry( CONFIG_SYS_INIT_RAM_ADDR, SZ_64K, CONFIG_SYS_INIT_RAM_ADDR, 0, AC_RWX | SA_G )
Stefan Roesea4c8d132006-06-02 16:18:04 +020038
Heiko Schocher566a4942007-06-22 19:11:54 +020039 /*
40 * TLB entries for SDRAM are not needed on this platform.
41 * They are dynamically generated in the SPD DDR detection
42 * routine.
43 */
Stefan Roesea4c8d132006-06-02 16:18:04 +020044
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020045 tlbentry( CONFIG_SYS_PCI_BASE, SZ_256M, CONFIG_SYS_PCI_BASE, 0, AC_RW | SA_IG )
Stefan Roesea4c8d132006-06-02 16:18:04 +020046
Heiko Schocher566a4942007-06-22 19:11:54 +020047 /* PCI */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020048 tlbentry( CONFIG_SYS_PCI_MEMBASE, SZ_256M, CONFIG_SYS_PCI_MEMBASE, 0, AC_RW | SA_IG )
49 tlbentry( CONFIG_SYS_PCI_MEMBASE1, SZ_256M, CONFIG_SYS_PCI_MEMBASE1, 0, AC_RW | SA_IG )
50 tlbentry( CONFIG_SYS_PCI_MEMBASE2, SZ_256M, CONFIG_SYS_PCI_MEMBASE2, 0, AC_RW | SA_IG )
51 tlbentry( CONFIG_SYS_PCI_MEMBASE3, SZ_256M, CONFIG_SYS_PCI_MEMBASE3, 0, AC_RW | SA_IG )
Stefan Roesea4c8d132006-06-02 16:18:04 +020052
Heiko Schocher566a4942007-06-22 19:11:54 +020053 /* USB 2.0 Device */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020054 tlbentry( CONFIG_SYS_USB_DEVICE, SZ_1K, 0x50000000, 0, AC_RW | SA_IG )
Heiko Schocher566a4942007-06-22 19:11:54 +020055
56 tlbtab_end