Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
John Schmoller | bfe1881 | 2010-10-22 00:20:34 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2010 Extreme Engineering Solutions, Inc. |
John Schmoller | bfe1881 | 2010-10-22 00:20:34 -0500 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <command.h> |
Simon Glass | 5255932 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 8 | #include <init.h> |
John Schmoller | bfe1881 | 2010-10-22 00:20:34 -0500 | [diff] [blame] | 9 | #include <asm/processor.h> |
| 10 | #include <asm/mmu.h> |
| 11 | #include <asm/immap_85xx.h> |
| 12 | #include <asm/fsl_pci.h> |
| 13 | #include <asm/io.h> |
| 14 | #include <asm/cache.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 15 | #include <linux/libfdt.h> |
John Schmoller | bfe1881 | 2010-10-22 00:20:34 -0500 | [diff] [blame] | 16 | #include <fdt_support.h> |
| 17 | #include <pca953x.h> |
| 18 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 19 | extern void ft_board_pci_setup(void *blob, struct bd_info *bd); |
John Schmoller | bfe1881 | 2010-10-22 00:20:34 -0500 | [diff] [blame] | 20 | |
| 21 | static void flash_cs_fixup(void) |
| 22 | { |
| 23 | int flash_sel; |
| 24 | |
| 25 | /* |
| 26 | * Print boot dev and swap flash flash chip selects if booted from 2nd |
| 27 | * flash. Swapping chip selects presents user with a common memory |
| 28 | * map regardless of which flash was booted from. |
| 29 | */ |
| 30 | flash_sel = !((pca953x_get_val(CONFIG_SYS_I2C_PCA953X_ADDR0) & |
| 31 | CONFIG_SYS_PCA953X_C0_FLASH_PASS_CS)); |
Peter Tyser | eddf52b | 2010-12-28 18:12:05 -0600 | [diff] [blame] | 32 | printf("Flash: Executed from flash%d\n", flash_sel ? 2 : 1); |
John Schmoller | bfe1881 | 2010-10-22 00:20:34 -0500 | [diff] [blame] | 33 | |
| 34 | if (flash_sel) { |
| 35 | set_lbc_br(0, CONFIG_SYS_BR1_PRELIM); |
| 36 | set_lbc_or(0, CONFIG_SYS_OR1_PRELIM); |
| 37 | |
| 38 | set_lbc_br(1, CONFIG_SYS_BR0_PRELIM); |
| 39 | set_lbc_or(1, CONFIG_SYS_OR0_PRELIM); |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | int board_early_init_r(void) |
| 44 | { |
| 45 | /* Initialize PCA9557 devices */ |
| 46 | pca953x_set_pol(CONFIG_SYS_I2C_PCA953X_ADDR0, 0xff, 0); |
| 47 | pca953x_set_pol(CONFIG_SYS_I2C_PCA953X_ADDR1, 0xff, 0); |
| 48 | pca953x_set_pol(CONFIG_SYS_I2C_PCA953X_ADDR2, 0xff, 0); |
| 49 | pca953x_set_pol(CONFIG_SYS_I2C_PCA953X_ADDR3, 0xff, 0); |
| 50 | |
| 51 | /* |
| 52 | * Remap NOR flash region to caching-inhibited |
| 53 | * so that flash can be erased/programmed properly. |
| 54 | */ |
| 55 | |
| 56 | /* Flush d-cache and invalidate i-cache of any FLASH data */ |
| 57 | flush_dcache(); |
| 58 | invalidate_icache(); |
| 59 | |
| 60 | /* Invalidate existing TLB entry for NOR flash */ |
| 61 | disable_tlb(0); |
| 62 | set_tlb(1, (CONFIG_SYS_FLASH_BASE2 & 0xf0000000), |
| 63 | (CONFIG_SYS_FLASH_BASE2 & 0xf0000000), |
| 64 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 65 | 0, 0, BOOKE_PAGESZ_256M, 1); |
| 66 | |
| 67 | flash_cs_fixup(); |
| 68 | |
| 69 | return 0; |
| 70 | } |
| 71 | |
| 72 | #if defined(CONFIG_OF_BOARD_SETUP) |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 73 | int ft_board_setup(void *blob, struct bd_info *bd) |
John Schmoller | bfe1881 | 2010-10-22 00:20:34 -0500 | [diff] [blame] | 74 | { |
| 75 | #ifdef CONFIG_PCI |
| 76 | ft_board_pci_setup(blob, bd); |
| 77 | #endif |
| 78 | ft_cpu_setup(blob, bd); |
Simon Glass | e895a4b | 2014-10-23 18:58:47 -0600 | [diff] [blame] | 79 | |
| 80 | return 0; |
John Schmoller | bfe1881 | 2010-10-22 00:20:34 -0500 | [diff] [blame] | 81 | } |
| 82 | #endif |