blob: 8cec71217a72905e5481a44089242b32c92135b9 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Priyanka Jain8b1a60e2013-10-18 17:19:06 +05302/*
3 * Copyright 2013 Freescale Semiconductor, Inc.
Priyanka Jain8b1a60e2013-10-18 17:19:06 +05304 */
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>
Zhao Qiang81136a12015-08-28 10:31:50 +080010#include <hwconfig.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060011#include <image.h>
Simon Glassa7b51302019-11-14 12:57:46 -070012#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
Priyanka Jain8b1a60e2013-10-18 17:19:06 +053014#include <netdev.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060015#include <asm/global_data.h>
Priyanka Jain8b1a60e2013-10-18 17:19:06 +053016#include <linux/compiler.h>
17#include <asm/mmu.h>
18#include <asm/processor.h>
19#include <asm/cache.h>
20#include <asm/immap_85xx.h>
Zhao Qiang81136a12015-08-28 10:31:50 +080021#include <asm/fsl_fdt.h>
Priyanka Jain8b1a60e2013-10-18 17:19:06 +053022#include <asm/fsl_law.h>
23#include <asm/fsl_serdes.h>
Priyanka Jain8b1a60e2013-10-18 17:19:06 +053024#include <asm/fsl_liodn.h>
25#include <fm_eth.h>
Tang Yuantian760eafc2014-11-21 11:17:16 +080026#include "../common/sleep.h"
Priyanka Jain8b1a60e2013-10-18 17:19:06 +053027#include "t104xrdb.h"
Prabhakar Kushwahae5e66332014-04-03 16:50:05 +053028#include "cpld.h"
Priyanka Jain8b1a60e2013-10-18 17:19:06 +053029
30DECLARE_GLOBAL_DATA_PTR;
31
32int checkboard(void)
33{
34 struct cpu_type *cpu = gd->arch.cpu;
Prabhakar Kushwahae5e66332014-04-03 16:50:05 +053035 u8 sw;
Priyanka Jain8b1a60e2013-10-18 17:19:06 +053036
Tom Rini454a8522022-12-02 16:42:51 -050037#if defined(CONFIG_TARGET_T1042D4RDB)
Priyanka Jaine7597fe2015-06-05 15:29:02 +053038 printf("Board: %sD4RDB\n", cpu->name);
39#else
Priyanka Jain8b1a60e2013-10-18 17:19:06 +053040 printf("Board: %sRDB\n", cpu->name);
Priyanka Jaine7597fe2015-06-05 15:29:02 +053041#endif
Prabhakar Kushwahae5e66332014-04-03 16:50:05 +053042 printf("Board rev: 0x%02x CPLD ver: 0x%02x, ",
43 CPLD_READ(hw_ver), CPLD_READ(sw_ver));
44
45 sw = CPLD_READ(flash_ctl_status);
46 sw = ((sw & CPLD_LBMAP_MASK) >> CPLD_LBMAP_SHIFT);
47
Priyanka Jain86c6bfe2015-07-30 10:20:18 +053048 printf("vBank: %d\n", sw);
Prabhakar Kushwahae5e66332014-04-03 16:50:05 +053049
Priyanka Jain8b1a60e2013-10-18 17:19:06 +053050 return 0;
51}
52
Tang Yuantian760eafc2014-11-21 11:17:16 +080053int board_early_init_f(void)
54{
55#if defined(CONFIG_DEEP_SLEEP)
56 if (is_warm_boot())
57 fsl_dp_disable_console();
58#endif
59
60 return 0;
61}
62
Priyanka Jain8b1a60e2013-10-18 17:19:06 +053063int board_early_init_r(void)
64{
Tom Rini6a5dccc2022-11-16 13:10:41 -050065#ifdef CFG_SYS_FLASH_BASE
66 const unsigned int flashbase = CFG_SYS_FLASH_BASE;
York Sun220c3462014-06-24 21:16:20 -070067 int flash_esel = find_tlb_idx((void *)flashbase, 1);
Priyanka Jain8b1a60e2013-10-18 17:19:06 +053068
69 /*
70 * Remap Boot flash region to caching-inhibited
71 * so that flash can be erased properly.
72 */
73
74 /* Flush d-cache and invalidate i-cache of any FLASH data */
75 flush_dcache();
76 invalidate_icache();
77
York Sun220c3462014-06-24 21:16:20 -070078 if (flash_esel == -1) {
79 /* very unlikely unless something is messed up */
80 puts("Error: Could not find TLB for FLASH BASE\n");
81 flash_esel = 2; /* give our best effort to continue */
82 } else {
83 /* invalidate existing TLB entry for flash */
84 disable_tlb(flash_esel);
85 }
Priyanka Jain8b1a60e2013-10-18 17:19:06 +053086
Tom Rini6a5dccc2022-11-16 13:10:41 -050087 set_tlb(1, flashbase, CFG_SYS_FLASH_BASE_PHYS,
Priyanka Jain8b1a60e2013-10-18 17:19:06 +053088 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
89 0, flash_esel, BOOKE_PAGESZ_256M, 1);
90#endif
Priyanka Jain8b1a60e2013-10-18 17:19:06 +053091 return 0;
92}
93
94int misc_init_r(void)
95{
Tom Rinid5c3bf22022-10-28 20:27:12 -040096 ccsr_gur_t __iomem *gur = (void *)(CFG_SYS_MPC85xx_GUTS_ADDR);
Priyanka Jaine7597fe2015-06-05 15:29:02 +053097 u32 srds_s1;
98
99 srds_s1 = in_be32(&gur->rcwsr[4]) >> 24;
100
101 printf("SERDES Reference : 0x%X\n", srds_s1);
102
103 /* select SGMII*/
104 if (srds_s1 == 0x86)
105 CPLD_WRITE(misc_ctl_status, CPLD_READ(misc_ctl_status) |
106 MISC_CTL_SG_SEL);
107
108 /* select SGMII and Aurora*/
109 if (srds_s1 == 0x8E)
110 CPLD_WRITE(misc_ctl_status, CPLD_READ(misc_ctl_status) |
111 MISC_CTL_SG_SEL | MISC_CTL_AURORA_SEL);
112
Priyanka Jain8b1a60e2013-10-18 17:19:06 +0530113 return 0;
114}
115
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900116int ft_board_setup(void *blob, struct bd_info *bd)
Priyanka Jain8b1a60e2013-10-18 17:19:06 +0530117{
118 phys_addr_t base;
119 phys_size_t size;
120
121 ft_cpu_setup(blob, bd);
122
Simon Glassda1a1342017-08-03 12:22:15 -0600123 base = env_get_bootm_low();
124 size = env_get_bootm_size();
Priyanka Jain8b1a60e2013-10-18 17:19:06 +0530125
126 fdt_fixup_memory(blob, (u64)base, (u64)size);
127
128#ifdef CONFIG_PCI
129 pci_of_setup(blob, bd);
130#endif
131
132 fdt_fixup_liodn(blob);
133
134#ifdef CONFIG_HAS_FSL_DR_USB
Sriram Dash9fd465c2016-09-16 17:12:15 +0530135 fsl_fdt_fixup_dr_usb(blob, bd);
Priyanka Jain8b1a60e2013-10-18 17:19:06 +0530136#endif
137
138#ifdef CONFIG_SYS_DPAA_FMAN
Madalin Bucur70848512020-04-30 15:59:58 +0300139#ifndef CONFIG_DM_ETH
Priyanka Jain8b1a60e2013-10-18 17:19:06 +0530140 fdt_fixup_fman_ethernet(blob);
141#endif
Madalin Bucur70848512020-04-30 15:59:58 +0300142#endif
Simon Glass2aec3cc2014-10-23 18:58:47 -0600143
Zhao Qiang81136a12015-08-28 10:31:50 +0800144 if (hwconfig("qe-tdm"))
145 fdt_del_diu(blob);
Simon Glass2aec3cc2014-10-23 18:58:47 -0600146 return 0;
Priyanka Jain8b1a60e2013-10-18 17:19:06 +0530147}