blob: cc608c4ac434a95ffed6cbc85fff8a65e3598b00 [file] [log] [blame]
Dirk Eibachd494cdb2019-03-29 10:18:19 +01001/*
2 * (C) Copyright 2015
3 * Dirk Eibach, Guntermann & Drunck GmbH, eibach@gdsys.de
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
Simon Glass09140112020-05-10 11:40:03 -06009#include <command.h>
Dirk Eibachd494cdb2019-03-29 10:18:19 +010010#include <dm.h>
Simon Glass168068f2019-08-01 09:46:47 -060011#include <env.h>
Simon Glass91caa3b2023-08-21 21:17:01 -060012#include <event.h>
Dirk Eibachd494cdb2019-03-29 10:18:19 +010013#include <fdt_support.h>
14#include <fsl_esdhc.h>
Simon Glass52559322019-11-14 12:57:46 -070015#include <init.h>
Dirk Eibachd494cdb2019-03-29 10:18:19 +010016#include <miiphy.h>
17#include <misc.h>
Simon Glass3a8ee3d2020-11-05 06:32:05 -070018#include <sysinfo.h>
Dirk Eibachd494cdb2019-03-29 10:18:19 +010019#include <tpm-v1.h>
20#include <video_osd.h>
Simon Glass401d1c42020-10-30 21:38:53 -060021#include <asm/global_data.h>
Dirk Eibachd494cdb2019-03-29 10:18:19 +010022
23#include "../common/ihs_mdio.h"
Simon Glass3a8ee3d2020-11-05 06:32:05 -070024#include "../../../drivers/sysinfo/gazerbeam.h"
Dirk Eibachd494cdb2019-03-29 10:18:19 +010025
26DECLARE_GLOBAL_DATA_PTR;
27
28struct ihs_mdio_info ihs_mdio_info[] = {
29 { .fpga = NULL, .name = "ihs0", .base = 0x58 },
30 { .fpga = NULL, .name = "ihs1", .base = 0x58 },
31};
32
33static int get_tpm(struct udevice **devp)
34{
35 int rc;
36
37 rc = uclass_first_device_err(UCLASS_TPM, devp);
38 if (rc) {
39 printf("Could not find TPM (ret=%d)\n", rc);
40 return CMD_RET_FAILURE;
41 }
42
43 return 0;
44}
45
46int board_early_init_r(void)
47{
Simon Glass3a8ee3d2020-11-05 06:32:05 -070048 struct udevice *sysinfo;
Dirk Eibachd494cdb2019-03-29 10:18:19 +010049 struct udevice *serdes;
50 int mc = 0;
51 int con = 0;
52
Michal Suchanek7b2aa212022-10-12 21:58:04 +020053 if (sysinfo_get(&sysinfo)) {
Simon Glass3a8ee3d2020-11-05 06:32:05 -070054 puts("Could not find sysinfo information device.\n");
Michal Suchanek7b2aa212022-10-12 21:58:04 +020055 sysinfo = NULL;
56 }
Dirk Eibachd494cdb2019-03-29 10:18:19 +010057
58 /* Initialize serdes */
Simon Glass3a8ee3d2020-11-05 06:32:05 -070059 uclass_get_device_by_phandle(UCLASS_MISC, sysinfo, "serdes", &serdes);
Dirk Eibachd494cdb2019-03-29 10:18:19 +010060
Simon Glass3a8ee3d2020-11-05 06:32:05 -070061 if (sysinfo_detect(sysinfo))
Dirk Eibachd494cdb2019-03-29 10:18:19 +010062 puts("Device information detection failed.\n");
63
Simon Glass3a8ee3d2020-11-05 06:32:05 -070064 sysinfo_get_int(sysinfo, BOARD_MULTICHANNEL, &mc);
65 sysinfo_get_int(sysinfo, BOARD_VARIANT, &con);
Dirk Eibachd494cdb2019-03-29 10:18:19 +010066
67 if (mc == 2 || mc == 1)
68 dev_disable_by_path("/immr@e0000000/i2c@3100/pca9698@22");
69
70 if (mc == 4) {
71 dev_disable_by_path("/immr@e0000000/i2c@3100/pca9698@20");
72 dev_enable_by_path("/localbus@e0005000/iocon_uart@2,0");
73 dev_enable_by_path("/fpga1bus");
74 }
75
76 if (mc == 2 || con == VAR_CON) {
77 dev_enable_by_path("/fpga0bus/fpga0_video1");
78 dev_enable_by_path("/fpga0bus/fpga0_iic_video1");
79 dev_enable_by_path("/fpga0bus/fpga0_axi_video1");
80 }
81
82 if (con == VAR_CON) {
83 dev_enable_by_path("/fpga0bus/fpga0_video0");
84 dev_enable_by_path("/fpga0bus/fpga0_iic_video0");
85 dev_enable_by_path("/fpga0bus/fpga0_axi_video0");
86 }
87
88 return 0;
89}
90
Simon Glass3a8ee3d2020-11-05 06:32:05 -070091int checksysinfo(void)
Dirk Eibachd494cdb2019-03-29 10:18:19 +010092{
Simon Glass3a8ee3d2020-11-05 06:32:05 -070093 struct udevice *sysinfo;
Dirk Eibachd494cdb2019-03-29 10:18:19 +010094 char *s = env_get("serial#");
95 int mc = 0;
96 int con = 0;
97
Michal Suchanek7b2aa212022-10-12 21:58:04 +020098 if (sysinfo_get(&sysinfo)) {
Simon Glass3a8ee3d2020-11-05 06:32:05 -070099 puts("Could not find sysinfo information device.\n");
Michal Suchanek7b2aa212022-10-12 21:58:04 +0200100 sysinfo = NULL;
101 }
Dirk Eibachd494cdb2019-03-29 10:18:19 +0100102
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700103 sysinfo_get_int(sysinfo, BOARD_MULTICHANNEL, &mc);
104 sysinfo_get_int(sysinfo, BOARD_VARIANT, &con);
Dirk Eibachd494cdb2019-03-29 10:18:19 +0100105
106 puts("Board: Gazerbeam ");
107 printf("%s ", mc == 4 ? "MC4" : mc == 2 ? "MC2" : "SC");
108 printf("%s", con == VAR_CON ? "CON" : "CPU");
109
110 if (s) {
111 puts(", serial# ");
112 puts(s);
113 }
114
115 puts("\n");
116
117 return 0;
118}
119
120static void display_osd_info(struct udevice *osd,
121 struct video_osd_info *osd_info)
122{
123 printf("OSD-%s: Digital-OSD version %01d.%02d, %d x %d characters\n",
124 osd->name, osd_info->major_version, osd_info->minor_version,
125 osd_info->width, osd_info->height);
126}
127
Simon Glass91caa3b2023-08-21 21:17:01 -0600128static int last_stage_init(void)
Dirk Eibachd494cdb2019-03-29 10:18:19 +0100129{
130 int fpga_hw_rev = 0;
131 int i;
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700132 struct udevice *sysinfo;
Dirk Eibachd494cdb2019-03-29 10:18:19 +0100133 struct udevice *osd;
134 struct video_osd_info osd_info;
135 struct udevice *tpm;
136 int ret;
137
Michal Suchanek7b2aa212022-10-12 21:58:04 +0200138 if (sysinfo_get(&sysinfo)) {
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700139 puts("Could not find sysinfo information device.\n");
Michal Suchanek7b2aa212022-10-12 21:58:04 +0200140 sysinfo = NULL;
141 }
Dirk Eibachd494cdb2019-03-29 10:18:19 +0100142
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700143 if (sysinfo) {
144 int res = sysinfo_get_int(sysinfo, BOARD_HWVERSION,
145 &fpga_hw_rev);
Dirk Eibachd494cdb2019-03-29 10:18:19 +0100146
147 if (res)
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700148 printf("Could not determind FPGA HW revision (res = %d)\n",
149 res);
Dirk Eibachd494cdb2019-03-29 10:18:19 +0100150 }
151
152 env_set_ulong("fpga_hw_rev", fpga_hw_rev);
153
154 ret = get_tpm(&tpm);
Simon Glassd6a885f2021-02-06 14:23:36 -0700155 if (ret || tpm_init(tpm) || tpm1_startup(tpm, TPM_ST_CLEAR) ||
156 tpm1_continue_self_test(tpm)) {
Dirk Eibachd494cdb2019-03-29 10:18:19 +0100157 printf("TPM init failed\n");
158 }
159
160 if (fpga_hw_rev >= 4) {
161 for (i = 0; i < 4; i++) {
162 struct udevice *rxaui;
163 char name[8];
164
165 snprintf(name, sizeof(name), "rxaui%d", i);
166 /* Disable RXAUI polarity inversion */
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700167 ret = uclass_get_device_by_phandle(UCLASS_MISC, sysinfo,
168 name, &rxaui);
Dirk Eibachd494cdb2019-03-29 10:18:19 +0100169 if (!ret)
170 misc_set_enabled(rxaui, false);
171 }
172 }
173
174 for (uclass_first_device(UCLASS_VIDEO_OSD, &osd);
175 osd;
176 uclass_next_device(&osd)) {
177 video_osd_get_info(osd, &osd_info);
178 display_osd_info(osd, &osd_info);
179 }
180
181 return 0;
182}
Simon Glass91caa3b2023-08-21 21:17:01 -0600183EVENT_SPY_SIMPLE(EVT_LAST_STAGE_INIT, last_stage_init);
Dirk Eibachd494cdb2019-03-29 10:18:19 +0100184
185#if defined(CONFIG_OF_BOARD_SETUP)
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900186int ft_board_setup(void *blob, struct bd_info *bd)
Dirk Eibachd494cdb2019-03-29 10:18:19 +0100187{
188 ft_cpu_setup(blob, bd);
189 fsl_fdt_fixup_dr_usb(blob, bd);
190 fdt_fixup_esdhc(blob, bd);
191
192 return 0;
193}
194#endif