blob: b31e9db3f9102b34906d2d3c4b408128871b82b8 [file] [log] [blame]
Stefan Roese887e2ec2006-09-07 11:51:23 +02001/*
Matthias Fuchs83a49c82008-01-16 10:33:46 +01002 * (C) Copyright 2008
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
Stefan Roese887e2ec2006-09-07 11:51:23 +02004 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02005 * SPDX-License-Identifier: GPL-2.0+
Stefan Roese887e2ec2006-09-07 11:51:23 +02006 */
7
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +02008#include <asm-offsets.h>
Stefan Roese887e2ec2006-09-07 11:51:23 +02009#include <ppc_asm.tmpl>
Peter Tyser61f2b382010-04-12 22:28:07 -050010#include <asm/mmu.h>
Stefan Roese887e2ec2006-09-07 11:51:23 +020011#include <config.h>
12
Matthias Fuchs83a49c82008-01-16 10:33:46 +010013/*
Stefan Roese887e2ec2006-09-07 11:51:23 +020014 * 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
Matthias Fuchs83a49c82008-01-16 10:33:46 +010021 */
Stefan Roese887e2ec2006-09-07 11:51:23 +020022 .section .bootpg,"ax"
23 .globl tlbtab
24
25tlbtab:
26 tlbtab_start
27
Niklaus Giger4d332db2008-01-10 18:50:33 +010028 /* vxWorks needs this as first entry for the Machine Check interrupt */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020029 tlbentry( 0x40000000, SZ_256M, 0, 0, AC_RWX | SA_IG )
Stefan Roese887e2ec2006-09-07 11:51:23 +020030
Stefan Roesed8731332009-05-11 13:46:14 +020031 /*
32 * The RAM-boot version skips the SDRAM TLB (identified by EPN=0). This
33 * entry is already configured for SDRAM via the JTAG debugger and mustn't
34 * be re-initialized by this RAM-booting U-Boot version.
35 */
36#ifndef CONFIG_SYS_RAMBOOT
Stefan Roese887e2ec2006-09-07 11:51:23 +020037 /* TLB-entry for DDR SDRAM (Up to 2GB) */
Stefan Roeseea2e1422007-10-31 20:57:11 +010038#ifdef CONFIG_4xx_DCACHE
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020039 tlbentry( CONFIG_SYS_SDRAM_BASE, SZ_256M, CONFIG_SYS_SDRAM_BASE, 0, AC_RWX | SA_G)
Stefan Roeseea2e1422007-10-31 20:57:11 +010040#else
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020041 tlbentry( CONFIG_SYS_SDRAM_BASE, SZ_256M, CONFIG_SYS_SDRAM_BASE, 0, AC_RWX | SA_IG )
Stefan Roeseea2e1422007-10-31 20:57:11 +010042#endif
Stefan Roesed8731332009-05-11 13:46:14 +020043#endif /* CONFIG_SYS_RAMBOOT */
Stefan Roese887e2ec2006-09-07 11:51:23 +020044
Niklaus Giger4d332db2008-01-10 18:50:33 +010045 /* TLB-entry for EBC */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020046 tlbentry( CONFIG_SYS_BCSR_BASE, SZ_256M, CONFIG_SYS_BCSR_BASE, 1, AC_RWX | SA_IG )
Niklaus Giger4d332db2008-01-10 18:50:33 +010047
48 /* BOOT_CS (FLASH) must be forth. Before relocation SA_I can be off to use the
49 * speed up boot process. It is patched after relocation to enable SA_I
50 */
51#ifndef CONFIG_NAND_SPL
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020052 tlbentry( CONFIG_SYS_BOOT_BASE_ADDR, SZ_256M, CONFIG_SYS_BOOT_BASE_ADDR, 1, AC_RWX | SA_G )
Niklaus Giger4d332db2008-01-10 18:50:33 +010053#else
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020054 tlbentry( CONFIG_SYS_NAND_BOOT_SPL_SRC, SZ_4K, CONFIG_SYS_NAND_BOOT_SPL_SRC, 1, AC_RWX | SA_G )
Niklaus Giger4d332db2008-01-10 18:50:33 +010055#endif
56
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020057#ifdef CONFIG_SYS_INIT_RAM_DCACHE
Stefan Roese887e2ec2006-09-07 11:51:23 +020058 /* TLB-entry for init-ram in dcache (SA_I must be turned off!) */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020059 tlbentry( CONFIG_SYS_INIT_RAM_ADDR, SZ_64K, CONFIG_SYS_INIT_RAM_ADDR, 0, AC_RWX | SA_G )
Stefan Roese887e2ec2006-09-07 11:51:23 +020060#endif
61
62 /* TLB-entry for PCI Memory */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020063 tlbentry( CONFIG_SYS_PCI_MEMBASE, SZ_256M, CONFIG_SYS_PCI_MEMBASE, 1, AC_RW | SA_IG )
64 tlbentry( CONFIG_SYS_PCI_MEMBASE1, SZ_256M, CONFIG_SYS_PCI_MEMBASE1, 1, AC_RW | SA_IG )
65 tlbentry( CONFIG_SYS_PCI_MEMBASE2, SZ_256M, CONFIG_SYS_PCI_MEMBASE2, 1, AC_RW | SA_IG )
66 tlbentry( CONFIG_SYS_PCI_MEMBASE3, SZ_256M, CONFIG_SYS_PCI_MEMBASE3, 1, AC_RW | SA_IG )
Stefan Roese887e2ec2006-09-07 11:51:23 +020067
Stefan Roese887e2ec2006-09-07 11:51:23 +020068 /* TLB-entry for NAND */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020069 tlbentry( CONFIG_SYS_NAND_ADDR, SZ_1K, CONFIG_SYS_NAND_ADDR, 1, AC_RWX | SA_IG )
Stefan Roese887e2ec2006-09-07 11:51:23 +020070
71 /* TLB-entry for Internal Registers & OCM */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020072 tlbentry( 0xe0000000, SZ_16M, 0xe0000000, 0, AC_RWX | SA_I )
Stefan Roese887e2ec2006-09-07 11:51:23 +020073
74 /*TLB-entry PCI registers*/
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020075 tlbentry( 0xEEC00000, SZ_1K, 0xEEC00000, 1, AC_RWX | SA_IG )
Stefan Roese887e2ec2006-09-07 11:51:23 +020076
77 /* TLB-entry for peripherals */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020078 tlbentry( 0xEF000000, SZ_16M, 0xEF000000, 1, AC_RWX | SA_IG)
Stefan Roese887e2ec2006-09-07 11:51:23 +020079
Gary Jennejohn81b73de2007-08-31 15:21:46 +020080 /* TLB-entry PCI IO Space - from sr@denx.de */
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020081 tlbentry(0xE8000000, SZ_64K, 0xE8000000, 1, AC_RWX | SA_IG)
Gary Jennejohn81b73de2007-08-31 15:21:46 +020082
Stefan Roese887e2ec2006-09-07 11:51:23 +020083 tlbtab_end
84
85#if defined(CONFIG_NAND_U_BOOT) && !defined(CONFIG_NAND_SPL)
86 /*
87 * For NAND booting the first TLB has to be reconfigured to full size
88 * and with caching disabled after running from RAM!
89 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020090#define TLB00 TLB0(CONFIG_SYS_BOOT_BASE_ADDR, SZ_256M)
91#define TLB01 TLB1(CONFIG_SYS_BOOT_BASE_ADDR, 1)
Stefan Roesecf6eb6d2010-04-14 13:57:18 +020092#define TLB02 TLB2(AC_RWX | SA_IG)
Stefan Roese887e2ec2006-09-07 11:51:23 +020093
94 .globl reconfig_tlb0
95reconfig_tlb0:
96 sync
97 isync
Stefan Roese3edf68c2009-03-26 16:14:13 +010098 addi r4,r0,CONFIG_SYS_TLB_FOR_BOOT_FLASH /* TLB entry # */
Stefan Roese887e2ec2006-09-07 11:51:23 +020099 lis r5,TLB00@h
100 ori r5,r5,TLB00@l
101 tlbwe r5,r4,0x0000 /* Save it out */
102 lis r5,TLB01@h
103 ori r5,r5,TLB01@l
104 tlbwe r5,r4,0x0001 /* Save it out */
105 lis r5,TLB02@h
106 ori r5,r5,TLB02@l
107 tlbwe r5,r4,0x0002 /* Save it out */
108 sync
109 isync
110 blr
111#endif