Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
York Sun | 1cb19fb | 2013-06-27 10:48:29 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2013 Freescale Semiconductor, Inc. |
York Sun | 1cb19fb | 2013-06-27 10:48:29 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <command.h> |
Simon Glass | 7b51b57 | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 8 | #include <env.h> |
York Sun | 1cb19fb | 2013-06-27 10:48:29 -0700 | [diff] [blame] | 9 | #include <i2c.h> |
Simon Glass | 5255932 | 2019-11-14 12:57:46 -0700 | [diff] [blame^] | 10 | #include <init.h> |
York Sun | 1cb19fb | 2013-06-27 10:48:29 -0700 | [diff] [blame] | 11 | #include <netdev.h> |
| 12 | #include <linux/compiler.h> |
| 13 | #include <asm/mmu.h> |
| 14 | #include <asm/processor.h> |
| 15 | #include <asm/cache.h> |
| 16 | #include <asm/immap_85xx.h> |
| 17 | #include <asm/fsl_law.h> |
| 18 | #include <asm/fsl_serdes.h> |
York Sun | 1cb19fb | 2013-06-27 10:48:29 -0700 | [diff] [blame] | 19 | #include <asm/fsl_liodn.h> |
| 20 | |
| 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
| 23 | int checkboard(void) |
| 24 | { |
| 25 | struct cpu_type *cpu = gd->arch.cpu; |
| 26 | |
| 27 | printf("Board: %sEMU\n", cpu->name); |
| 28 | |
| 29 | return 0; |
| 30 | } |
| 31 | |
| 32 | int board_early_init_r(void) |
| 33 | { |
| 34 | const unsigned int flashbase = CONFIG_SYS_FLASH_BASE; |
York Sun | 9d04568 | 2014-06-24 21:16:20 -0700 | [diff] [blame] | 35 | int flash_esel = find_tlb_idx((void *)flashbase, 1); |
York Sun | 1cb19fb | 2013-06-27 10:48:29 -0700 | [diff] [blame] | 36 | |
| 37 | /* |
| 38 | * Remap Boot flash + PROMJET region to caching-inhibited |
| 39 | * so that flash can be erased properly. |
| 40 | */ |
| 41 | |
| 42 | /* Flush d-cache and invalidate i-cache of any FLASH data */ |
| 43 | flush_dcache(); |
| 44 | invalidate_icache(); |
| 45 | |
York Sun | 9d04568 | 2014-06-24 21:16:20 -0700 | [diff] [blame] | 46 | if (flash_esel == -1) { |
| 47 | /* very unlikely unless something is messed up */ |
| 48 | puts("Error: Could not find TLB for FLASH BASE\n"); |
| 49 | flash_esel = 2; /* give our best effort to continue */ |
| 50 | } else { |
| 51 | /* invalidate existing TLB entry for flash */ |
| 52 | disable_tlb(flash_esel); |
| 53 | } |
York Sun | 1cb19fb | 2013-06-27 10:48:29 -0700 | [diff] [blame] | 54 | |
| 55 | set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, |
| 56 | MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 57 | 0, flash_esel, BOOKE_PAGESZ_256M, 1); |
| 58 | |
York Sun | 1cb19fb | 2013-06-27 10:48:29 -0700 | [diff] [blame] | 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | int misc_init_r(void) |
| 63 | { |
| 64 | return 0; |
| 65 | } |
| 66 | |
Simon Glass | e895a4b | 2014-10-23 18:58:47 -0600 | [diff] [blame] | 67 | int ft_board_setup(void *blob, bd_t *bd) |
York Sun | 1cb19fb | 2013-06-27 10:48:29 -0700 | [diff] [blame] | 68 | { |
| 69 | phys_addr_t base; |
| 70 | phys_size_t size; |
| 71 | |
| 72 | ft_cpu_setup(blob, bd); |
| 73 | |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 74 | base = env_get_bootm_low(); |
| 75 | size = env_get_bootm_size(); |
York Sun | 1cb19fb | 2013-06-27 10:48:29 -0700 | [diff] [blame] | 76 | |
| 77 | fdt_fixup_memory(blob, (u64)base, (u64)size); |
| 78 | |
| 79 | fdt_fixup_liodn(blob); |
Sriram Dash | a5c289b | 2016-09-16 17:12:15 +0530 | [diff] [blame] | 80 | fsl_fdt_fixup_dr_usb(blob, bd); |
Simon Glass | e895a4b | 2014-10-23 18:58:47 -0600 | [diff] [blame] | 81 | |
| 82 | return 0; |
York Sun | 1cb19fb | 2013-06-27 10:48:29 -0700 | [diff] [blame] | 83 | } |