mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-15 14:36:03 +01:00
The RK3588-Q7 SoM is a Qseven-compatible (70mm x 70mm, MXM-230 connector) system-on-module from Theobroma Systems, featuring the Rockchip RK3588. It provides the following feature set: * up to 16GB LPDDR4x * on-module eMMC * SD card (on a baseboard) via edge connector * Gigabit Ethernet with on-module GbE PHY * HDMI/eDP * MIPI-DSI * 4x MIPI-CSI (3x on FPC connectors, 1x over Q7) * HDMI input over FPC connector * CAN * USB - 1x USB 3.0 dual-role (direct connection) - 2x USB 3.0 host + 1x USB 2.0 host * PCIe - 1x PCIe 2.1 Gen3, 4 lanes - 2xSATA / 2x PCIe 2.1 Gen1, 2 lanes * on-module ATtiny816 companion controller, implementing: - low-power RTC functionality (ISL1208 emulation) - fan controller (AMC6821 emulation) * on-module Secure Element with Global Platform 2.2.1 compliant JavaCard environment The support is added for Tiger on Haikou devkit, similarly to RK3399 Puma and PX30 Ringneck. Cc: Quentin Schulz <foss+uboot@0leil.net> Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de> Tested-by: Heiko Stuebner <heiko@sntech.de> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
54 lines
1.6 KiB
C
54 lines
1.6 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* (C) Copyright 2023 Theobroma Systems Design und Consulting GmbH
|
|
*/
|
|
|
|
#include <phy.h>
|
|
#include <eth_phy.h>
|
|
|
|
#include <asm/types.h>
|
|
#include <asm/arch-rockchip/cru_rk3588.h>
|
|
#include <asm/arch-rockchip/hardware.h>
|
|
#include <asm/arch-rockchip/ioc_rk3588.h>
|
|
#include <asm-generic/u-boot.h>
|
|
#include <dm/device.h>
|
|
#include <dm/uclass-id.h>
|
|
#include <linux/bitfield.h>
|
|
|
|
#include "../common/common.h"
|
|
|
|
#define GPIO2C3_SEL_MASK GENMASK(15, 12)
|
|
#define GPIO2C3_ETH0_REFCLKO_25M FIELD_PREP(GPIO2C3_SEL_MASK, 1)
|
|
|
|
#define REFCLKO25M_ETH0_OUT_SEL_MASK BIT(15)
|
|
#define REFCLKO25M_ETH0_OUT_SEL_CPLL FIELD_PREP(REFCLKO25M_ETH0_OUT_SEL_MASK, 1)
|
|
#define REFCLKO25M_ETH0_OUT_DIV_MASK GENMASK(14, 8)
|
|
#define REFCLKO25M_ETH0_OUT_DIV(x) FIELD_PREP(REFCLKO25M_ETH0_OUT_DIV_MASK, (x) - 1)
|
|
|
|
#define REFCLKO25M_ETH0_OUT_EN BIT(4)
|
|
|
|
void setup_eth0refclko(void)
|
|
{
|
|
/* Configure and enable ETH0_REFCLKO_25MHz */
|
|
static struct rk3588_bus_ioc * const bus_ioc = (void *)BUS_IOC_BASE;
|
|
static struct rk3588_cru * const cru = (void *)CRU_BASE;
|
|
|
|
/* 1. Pinmux */
|
|
rk_clrsetreg(&bus_ioc->gpio2c_iomux_sel_l, GPIO2C3_SEL_MASK, GPIO2C3_ETH0_REFCLKO_25M);
|
|
/* 2. Parent clock selection + divider => CPLL (1.5GHz) / 60 => 25MHz */
|
|
rk_clrsetreg(&cru->clksel_con[15],
|
|
REFCLKO25M_ETH0_OUT_SEL_MASK | REFCLKO25M_ETH0_OUT_DIV_MASK,
|
|
REFCLKO25M_ETH0_OUT_SEL_CPLL | REFCLKO25M_ETH0_OUT_DIV(60));
|
|
/* 3. Enable clock */
|
|
rk_clrreg(&cru->clkgate_con[5], REFCLKO25M_ETH0_OUT_EN);
|
|
}
|
|
|
|
int rockchip_early_misc_init_r(void)
|
|
{
|
|
setup_boottargets();
|
|
|
|
setup_eth0refclko();
|
|
|
|
return 0;
|
|
}
|