blob: 8daa18e97cdbb4c5ed60fcb6be76b1f9263ccff4 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Peter Tyser1f03cbf2008-12-23 16:32:00 -06002/*
3 * Copyright 2008 Extreme Engineering Solutions, Inc.
4 * Copyright 2004, 2007 Freescale Semiconductor, Inc.
Peter Tyser1f03cbf2008-12-23 16:32:00 -06005 */
6
7#include <common.h>
8#include <command.h>
9#include <pci.h>
10#include <asm/processor.h>
11#include <asm/immap_85xx.h>
Kumar Galac8514622009-04-02 13:22:48 -050012#include <asm/fsl_pci.h>
Peter Tyser1f03cbf2008-12-23 16:32:00 -060013#include <asm/io.h>
14#include <asm/cache.h>
15#include <asm/mmu.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090016#include <linux/libfdt.h>
Peter Tyser1f03cbf2008-12-23 16:32:00 -060017#include <fdt_support.h>
18#include <pca953x.h>
19
20extern void ft_board_pci_setup(void *blob, bd_t *bd);
21
Peter Tyser1f03cbf2008-12-23 16:32:00 -060022static void flash_cs_fixup(void)
23{
Peter Tyser1f03cbf2008-12-23 16:32:00 -060024 int flash_sel;
25
26 /*
27 * Print boot dev and swap flash flash chip selects if booted from 2nd
28 * flash. Swapping chip selects presents user with a common memory
29 * map regardless of which flash was booted from.
30 */
31 flash_sel = !((pca953x_get_val(CONFIG_SYS_I2C_PCA953X_ADDR0) &
32 CONFIG_SYS_PCA953X_FLASH_PASS_CS));
Peter Tysereddf52b2010-12-28 18:12:05 -060033 printf("Flash: Executed from flash%d\n", flash_sel ? 2 : 1);
Peter Tyser1f03cbf2008-12-23 16:32:00 -060034
35 if (flash_sel) {
Becky Brucef51cdaf2010-06-17 11:37:20 -050036 set_lbc_br(0, CONFIG_SYS_BR1_PRELIM);
37 set_lbc_or(0, CONFIG_SYS_OR1_PRELIM);
Peter Tyser1f03cbf2008-12-23 16:32:00 -060038
Becky Brucef51cdaf2010-06-17 11:37:20 -050039 set_lbc_br(1, CONFIG_SYS_BR0_PRELIM);
40 set_lbc_or(1, CONFIG_SYS_OR0_PRELIM);
Peter Tyser1f03cbf2008-12-23 16:32:00 -060041 }
42}
43
44int board_early_init_r(void)
45{
46 /* Initialize PCA9557 devices */
47 pca953x_set_pol(CONFIG_SYS_I2C_PCA953X_ADDR0, 0xff, 0);
48 pca953x_set_pol(CONFIG_SYS_I2C_PCA953X_ADDR1, 0xff, 0);
49
50 /*
51 * Remap NOR flash region to caching-inhibited
52 * so that flash can be erased/programmed properly.
53 */
54
55 /* Flush d-cache and invalidate i-cache of any FLASH data */
56 flush_dcache();
57 invalidate_icache();
58
59 /* Invalidate existing TLB entry for NOR flash */
60 disable_tlb(0);
61 set_tlb(1, (CONFIG_SYS_FLASH_BASE2 & 0xf0000000),
62 (CONFIG_SYS_FLASH_BASE2 & 0xf0000000),
63 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
64 0, 0, BOOKE_PAGESZ_256M, 1);
65
66 flash_cs_fixup();
67
68 return 0;
69}
70
71#if defined(CONFIG_OF_BOARD_SETUP)
Simon Glasse895a4b2014-10-23 18:58:47 -060072int ft_board_setup(void *blob, bd_t *bd)
Peter Tyser1f03cbf2008-12-23 16:32:00 -060073{
74#ifdef CONFIG_PCI
75 ft_board_pci_setup(blob, bd);
76#endif
77 ft_cpu_setup(blob, bd);
Simon Glasse895a4b2014-10-23 18:58:47 -060078
79 return 0;
Peter Tyser1f03cbf2008-12-23 16:32:00 -060080}
81#endif