blob: 6ab35ca9185bb6471b8328836f414725bba9369b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +08002/*
3 * Copyright 2014 Freescale Semiconductor, Inc.
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +08004 */
5
6#include <common.h>
7#include <command.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -06008#include <env.h>
Simon Glass3bbe70c2019-12-28 10:44:54 -07009#include <fdt_support.h>
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +080010#include <i2c.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060011#include <image.h>
Simon Glassa7b51302019-11-14 12:57:46 -070012#include <init.h>
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +080013#include <netdev.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +080015#include <linux/compiler.h>
16#include <asm/mmu.h>
17#include <asm/processor.h>
18#include <asm/cache.h>
19#include <asm/immap_85xx.h>
20#include <asm/fsl_law.h>
21#include <asm/fsl_serdes.h>
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +080022#include <asm/fsl_liodn.h>
23#include <fm_eth.h>
24
25#include "t4rdb.h"
Chunhe Lanc3eb88d2014-09-12 14:47:09 +080026#include "cpld.h"
Ying Zhangff779052016-01-22 12:15:13 +080027#include "../common/vid.h"
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +080028
29DECLARE_GLOBAL_DATA_PTR;
30
31int checkboard(void)
32{
33 struct cpu_type *cpu = gd->arch.cpu;
Chunhe Lanc3eb88d2014-09-12 14:47:09 +080034 u8 sw;
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +080035
36 printf("Board: %sRDB, ", cpu->name);
Chunhe Lanc3eb88d2014-09-12 14:47:09 +080037 printf("Board rev: 0x%02x CPLD ver: 0x%02x%02x, ",
38 CPLD_READ(hw_ver), CPLD_READ(sw_maj_ver), CPLD_READ(sw_min_ver));
39
40 sw = CPLD_READ(vbank);
41 sw = sw & CPLD_BANK_SEL_MASK;
42
43 if (sw <= 7)
44 printf("vBank: %d\n", sw);
45 else
46 printf("Unsupported Bank=%x\n", sw);
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +080047
48 puts("SERDES Reference Clocks:\n");
49 printf(" SERDES1=100MHz SERDES2=156.25MHz\n"
50 " SERDES3=100MHz SERDES4=100MHz\n");
51
52 return 0;
53}
54
55int board_early_init_r(void)
56{
57 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
York Sun220c3462014-06-24 21:16:20 -070058 int flash_esel = find_tlb_idx((void *)flashbase, 1);
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +080059
60 /*
61 * Remap Boot flash + PROMJET region to caching-inhibited
62 * so that flash can be erased properly.
63 */
64
65 /* Flush d-cache and invalidate i-cache of any FLASH data */
66 flush_dcache();
67 invalidate_icache();
68
York Sun220c3462014-06-24 21:16:20 -070069 if (flash_esel == -1) {
70 /* very unlikely unless something is messed up */
71 puts("Error: Could not find TLB for FLASH BASE\n");
72 flash_esel = 2; /* give our best effort to continue */
73 } else {
74 /* invalidate existing TLB entry for flash + promjet */
75 disable_tlb(flash_esel);
76 }
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +080077
78 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS,
79 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
80 0, flash_esel, BOOKE_PAGESZ_256M, 1);
81
Ying Zhangff779052016-01-22 12:15:13 +080082 /*
83 * Adjust core voltage according to voltage ID
84 * This function changes I2C mux to channel 2.
85 */
86 if (adjust_vdd(0))
87 printf("Warning: Adjusting core voltage failed.\n");
88
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +080089 return 0;
90}
91
92int misc_init_r(void)
93{
94 return 0;
95}
96
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090097int ft_board_setup(void *blob, struct bd_info *bd)
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +080098{
99 phys_addr_t base;
100 phys_size_t size;
101
102 ft_cpu_setup(blob, bd);
103
Simon Glassda1a1342017-08-03 12:22:15 -0600104 base = env_get_bootm_low();
105 size = env_get_bootm_size();
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +0800106
107 fdt_fixup_memory(blob, (u64)base, (u64)size);
108
109#ifdef CONFIG_PCI
110 pci_of_setup(blob, bd);
111#endif
112
113 fdt_fixup_liodn(blob);
Sriram Dash9fd465c2016-09-16 17:12:15 +0530114 fsl_fdt_fixup_dr_usb(blob, bd);
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +0800115
116#ifdef CONFIG_SYS_DPAA_FMAN
Madalin Bucur70848512020-04-30 15:59:58 +0300117#ifndef CONFIG_DM_ETH
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +0800118 fdt_fixup_fman_ethernet(blob);
Madalin Bucur70848512020-04-30 15:59:58 +0300119#endif
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +0800120 fdt_fixup_board_enet(blob);
121#endif
Simon Glass2aec3cc2014-10-23 18:58:47 -0600122
123 return 0;
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +0800124}
125
126/*
127 * This function is called by bdinfo to print detail board information.
128 * As an exmaple for future board, we organize the messages into
129 * several sections. If applicable, the message is in the format of
130 * <name> = <value>
131 * It should aligned with normal output of bdinfo command.
132 *
133 * Voltage: Core, DDR and another configurable voltages
134 * Clock : Critical clocks which are not printed already
135 * RCW : RCW source if not printed already
136 * Misc : Other important information not in above catagories
137 */
138void board_detail(void)
139{
140 int rcwsrc;
141
142 /* RCW section SW3[4] */
143 rcwsrc = 0x0;
144 puts("RCW source = ");
145 switch (rcwsrc & 0x1) {
146 case 0x1:
147 puts("SDHC/eMMC\n");
148 break;
149 default:
150 puts("I2C normal addressing\n");
151 break;
152 }
153}