Stefan Roese | b79316f | 2005-08-15 12:31:23 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2005 Sandburst Corporation |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 3 | * SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | b79316f | 2005-08-15 12:31:23 +0200 | [diff] [blame] | 4 | */ |
| 5 | /* |
| 6 | * Ported from Ebony init.S by Travis B. Sawyer |
| 7 | */ |
| 8 | |
| 9 | #include <ppc_asm.tmpl> |
Stefan Roese | cf6eb6d | 2010-04-14 13:57:18 +0200 | [diff] [blame] | 10 | #include <asm/mmu.h> |
Stefan Roese | b79316f | 2005-08-15 12:31:23 +0200 | [diff] [blame] | 11 | #include <config.h> |
Stefan Roese | 550650d | 2010-09-20 16:05:31 +0200 | [diff] [blame] | 12 | #include <asm/ppc4xx.h> |
Stefan Roese | b79316f | 2005-08-15 12:31:23 +0200 | [diff] [blame] | 13 | |
Stefan Roese | b79316f | 2005-08-15 12:31:23 +0200 | [diff] [blame] | 14 | /************************************************************************** |
| 15 | * TLB TABLE |
| 16 | * |
| 17 | * This table is used by the cpu boot code to setup the initial tlb |
| 18 | * entries. Rather than make broad assumptions in the cpu source tree, |
| 19 | * this table lets each board set things up however they like. |
| 20 | * |
| 21 | * Pointer to the table is returned in r1 |
| 22 | * |
| 23 | *************************************************************************/ |
| 24 | |
| 25 | .section .bootpg,"ax" |
| 26 | .globl tlbtab |
| 27 | |
| 28 | tlbtab: |
| 29 | tlbtab_start |
Stefan Roese | cf6eb6d | 2010-04-14 13:57:18 +0200 | [diff] [blame] | 30 | tlbentry( 0xf0000000, SZ_256M, 0xf0000000, 1, AC_RWX | SA_IG) |
| 31 | tlbentry( CONFIG_SYS_PERIPHERAL_BASE, SZ_256M, 0x40000000, 1, AC_RW | SA_IG) |
| 32 | tlbentry( CONFIG_SYS_ISRAM_BASE, SZ_256K, 0x80000000, 0, AC_RWX | SA_IG) |
| 33 | tlbentry( CONFIG_SYS_SDRAM_BASE, SZ_256M, 0x00000000, 0, AC_RWX | SA_IG ) |
| 34 | tlbentry( CONFIG_SYS_SDRAM_BASE+0x10000000, SZ_256M, 0x10000000, 0, AC_RWX | SA_IG ) |
| 35 | tlbentry( CONFIG_SYS_SDRAM_BASE+0x20000000, SZ_256M, 0x20000000, 0, AC_RWX | SA_IG ) |
| 36 | tlbentry( CONFIG_SYS_SDRAM_BASE+0x30000000, SZ_256M, 0x30000000, 0, AC_RWX | SA_IG ) |
| 37 | tlbentry( CONFIG_SYS_PCI_BASE, SZ_256M, 0x00000000, 2, AC_RW | SA_IG ) |
| 38 | tlbentry( CONFIG_SYS_PCI_MEMBASE, SZ_256M, 0x00000000, 3, AC_RW | SA_IG ) |
Stefan Roese | b79316f | 2005-08-15 12:31:23 +0200 | [diff] [blame] | 39 | tlbtab_end |