the emmc controller on rk3568 (so also rk3566) and rk3588 is largely a sdhc(4) controller, but with a bunch of extra registers up top that get involved in handling high speed modes.
i could have added this to sdhc_fdt.c, but the names and number of registers involved were going to be cumbersome, and there's almost no overlap of handling for this chip compared to the exiting ones in the driver. patrick@ helped me get this working by suggesting i try these things: SET(sdhc->sc_flags, SDHC_F_NOPWR0); SET(capmask, (uint64_t)SDHC_DDR50_SUPP << 32); we don't know enough to say why these arent supported by the chip, but if anyone figures it out then i would argue that they can commit it themselves. looks like this on a bpi-r2 pro: dwmshc0 at mainbus0 dwmshc0: SDHC 6.0, 200 MHz base clock sdmmc1 at dwmshc0: 8-bit, sd high-speed, mmc high-speed, dma scsibus2 at sdmmc1: 2 targets, initiator 0 sd2 at scsibus2 targ 1 lun 0: <Samsung, AJTD4R, 0000> removable sd2: 14910MB, 512 bytes/sector, 30535680 sectors radxa e25 is basically the same. ok? Index: files.fdt =================================================================== RCS file: /cvs/src/sys/dev/fdt/files.fdt,v retrieving revision 1.185 diff -u -p -r1.185 files.fdt --- files.fdt 4 Apr 2023 00:38:38 -0000 1.185 +++ files.fdt 17 Apr 2023 01:39:19 -0000 @@ -426,6 +440,10 @@ device dwmmc: sdmmcbus attach dwmmc at fdt file dev/fdt/dwmmc.c dwmmc +device dwmshc: sdhc, sdmmcbus +attach dwmshc at fdt +file dev/fdt/dwmshc.c dwmshc + device dwdog attach dwdog at fdt file dev/fdt/dwdog.c dwdog Index: dwmshc.c =================================================================== RCS file: dwmshc.c diff -N dwmshc.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ dwmshc.c 17 Apr 2023 01:39:19 -0000 @@ -0,0 +1,398 @@ +/* $OpenBSD$ */ + +/* + * Copyright (c) 2023 David Gwynne <d...@openbsd.org> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <sys/param.h> +#include <sys/malloc.h> +#include <sys/systm.h> + +#include <machine/bus.h> +#include <machine/fdt.h> +#include <machine/intr.h> + +#include <dev/ofw/openfirm.h> +#include <dev/ofw/ofw_clock.h> +#include <dev/ofw/ofw_gpio.h> +#include <dev/ofw/ofw_misc.h> +#include <dev/ofw/ofw_pinctrl.h> +#include <dev/ofw/ofw_regulator.h> +#include <dev/ofw/fdt.h> + +#include <dev/sdmmc/sdhcreg.h> +#include <dev/sdmmc/sdhcvar.h> +#include <dev/sdmmc/sdmmcvar.h> + +#define EMMC_VER_ID 0x500 +#define EMMC_VER_TYPE 0x504 +#define EMMC_HOST_CTRL3 0x508 /* B */ +#define EMMC_HOST_CTRL3_CMD_CONFLICT_CHECK (1U << 0) +#define EMMC_HOST_CTRL3_SW_CG_DIS (1U << 4) +#define EMMC_EMMC_CTRL 0x52c /* HW */ +#define EMMC_EMMC_CTRL_CARD_IS_EMMC (1U << 0) +#define EMMC_EMMC_CTRL_DISABLE_DATA_CRC_CHK (1U << 1) +#define EMMC_EMMC_CTRL_EMMC_RST_N (1U << 2) +#define EMMC_EMMC_CTRL_EMMC_RST_N_OE (1U << 3) +#define EMMC_EMMC_CTRL_ENH_STROBE_ENABLE (1U << 8) +#define EMMC_EMMC_CTRL_CQE_ALGO_SEL (1U << 9) +#define EMMC_EMMC_CTRL_CQE_PREFETCH_DISABLE (1U << 10) +#define EMMC_BOOT_CTRL 0x52e /* HW */ +#define EMMC_BOOT_CTRL_MAN_BOOT_EN (1U << 0) +#define EMMC_BOOT_CTRL_VALIDATE_BOOT (1U << 1) +#define EMMC_BOOT_CTRL_BOOT_ACK_ENABLE (1U << 8) +#define EMMC_BOOT_CTRL_BOOT_TOUT_CNT_SHIFT 12 +#define EMMC_BOOT_CTRL_BOOT_TOUT_CNT_MASK 0xf +#define EMMC_AT_CTRL 0x540 +#define EMMC_AT_CTRL_SWIN_TH_EN (1U << 2) +#define EMMC_AT_CTRL_RPT_TUNE_ERR (1U << 3) +#define EMMC_AT_CTRL_SW_TUNE_EN (1U << 4) +#define EMMC_AT_CTRL_TUNE_CLK_STOP_EN (1U << 16) +#define EMMC_AT_CTRL_PRE_CHANGE_DLY_MASK (0x3 << 17) +#define EMMC_AT_CTRL_PRE_CHANGE_DLY_LT1 (0x0 << 17) +#define EMMC_AT_CTRL_PRE_CHANGE_DLY_LT2 (0x1 << 17) +#define EMMC_AT_CTRL_PRE_CHANGE_DLY_LT3 (0x2 << 17) +#define EMMC_AT_CTRL_PRE_CHANGE_DLY_LT4 (0x3 << 17) +#define EMMC_AT_CTRL_POST_CHANGE_DLY_MASK (0x3 << 19) +#define EMMC_AT_CTRL_POST_CHANGE_DLY_LT1 (0x0 << 19) +#define EMMC_AT_CTRL_POST_CHANGE_DLY_LT2 (0x1 << 19) +#define EMMC_AT_CTRL_POST_CHANGE_DLY_LT3 (0x2 << 19) +#define EMMC_AT_CTRL_POST_CHANGE_DLY_LT4 (0x3 << 19) +#define EMMC_AT_STAT 0x544 +#define EMMC_AT_STAT_CENTER_PH_CODE_SHIFT 0 +#define EMMC_AT_STAT_CENTER_PH_CODE_MASK 0xff +#define EMMC_AT_STAT_R_EDGE_PH_CODE_SHIFT 8 +#define EMMC_AT_STAT_R_EDGE_PH_CODE_MASK 0xff +#define EMMC_AT_STAT_L_EDGE_PH_CODE_SHIFT 16 +#define EMMC_AT_STAT_L_EDGE_PH_CODE_MASK 0xff +#define EMMC_DLL_CTRL 0x800 +#define EMMC_DLL_CTRL_DLL_START (1U << 0) +#define EMMC_DLL_CTRL_DLL_SRST (1U << 1) +#define EMMC_DLL_CTRL_DLL_INCREMENT_SHIFT 8 +#define EMMC_DLL_CTRL_DLL_INCREMENT_MASK 0xff +#define EMMC_DLL_CTRL_DLL_START_POINT_SHIFT 16 +#define EMMC_DLL_CTRL_DLL_START_POINT_MASK 0xff +#define EMMC_DLL_CTRL_DLL_BYPASS_MODE (1U << 24) +#define EMMC_DLL_RXCLK 0x804 +#define EMMC_DLL_RXCLK_RX_TAP_NUM_SHIFT 0 +#define EMMC_DLL_RXCLK_RX_TAP_NUM_MASK 0x1f +#define EMMC_DLL_RXCLK_RX_TAP_VALUE_SHIFT 8 +#define EMMC_DLL_RXCLK_RX_TAP_VALUE_MASK 0xff +#define EMMC_DLL_RXCLK_RX_DELAY_NUM_SHIFT 16 +#define EMMC_DLL_RXCLK_RX_DELAY_NUM_MASK 0xff +#define EMMC_DLL_RXCLK_RX_TAP_NUM_SEL (1U << 24) +#define EMMC_DLL_RXCLK_RX_TAP_VALUE_SEL (1U << 25) +#define EMMC_DLL_RXCLK_RX_DELAY_NUM_SEL (1U << 26) +#define EMMC_DLL_RXCLK_RX_CLK_OUT_SEL (1U << 27) +#define EMMC_DLL_RXCLK_RX_CLK_CHANGE_WINDOW (1U << 28) +#define EMMC_DLL_RXCLK_RX_CLK_SRC_SEL (1U << 29) +#define EMMC_DLL_TXCLK 0x804 +#define EMMC_DLL_TXCLK_TX_TAP_NUM_SHIFT 0 +#define EMMC_DLL_TXCLK_TX_TAP_NUM_MASK 0x1f +#define EMMC_DLL_TXCLK_TX_TAP_VALUE_SHIFT 8 +#define EMMC_DLL_TXCLK_TX_TAP_VALUE_MASK 0xff +#define EMMC_DLL_TXCLK_TX_DELAY_SHIFT 16 +#define EMMC_DLL_TXCLK_TX_DELAY_MASK 0xff +#define EMMC_DLL_TXCLK_TX_TAP_NUM_SEL (1U << 24) +#define EMMC_DLL_TXCLK_TX_TAP_VALUE_SEL (1U << 25) +#define EMMC_DLL_TXCLK_TX_DELAY_SEL (1U << 26) +#define EMMC_DLL_TXCLK_TX_CLK_OUT_SEL (1U << 27) +#define EMMC_DLL_STRBIN 0x80c +#define EMMC_DLL_STRBIN_TAP_NUM_SHIFT 0 +#define EMMC_DLL_STRBIN_TAP_NUM_MASK 0x1f +#define EMMC_DLL_STRBIN_TAP_NUM_DEFAULT 0x8 +#define EMMC_DLL_STRBIN_TAP_VALUE_SHIFT 8 +#define EMMC_DLL_STRBIN_TAP_VALUE_MASK 0xff +#define EMMC_DLL_STRBIN_DELAY_NUM_SHIFT 16 +#define EMMC_DLL_STRBIN_DELAY_NUM_MASK 0xff +#define EMMC_DLL_STRBIN_DELAY_NUM_DEFAULT 0x16 +#define EMMC_DLL_STRBIN_TAP_NUM_SEL (1U << 24) +#define EMMC_DLL_STRBIN_TAP_VALUE_SEL (1U << 25) +#define EMMC_DLL_STRBIN_DELAY_NUM_SEL (1U << 26) +#define EMMC_DLL_STRBIN_DELAY_ENA (1U << 27) +#define EMMC_DLL_STATUS0 0x840 +#define EMMC_DLL_STATUS0_DLL_LOCK_VALUE_SHIFT 0 +#define EMMC_DLL_STATUS0_DLL_LOCK_VALUE_MASK 0xff +#define EMMC_DLL_STATUS0_DLL_LOCK (1U << 8) +#define EMMC_DLL_STATUS0_DLL_LOCK_TIMEOUT (1U << 9) +#define EMMC_DLL_STATUS1 0x844 +#define EMMC_DLL_STATUS1_DLL_TXCLK_DELAY_VALUE_SHIFT \ + 0 +#define EMMC_DLL_STATUS1_DLL_TXCLK_DELAY_VALUE_MASK \ + 0xff +#define EMMC_DLL_STATUS1_DLL_RXCLK_DELAY_VALUE_SHIFT \ + 8 +#define EMMC_DLL_STATUS1_DLL_RXCLK_DELAY_VALUE_MASK \ + 0xff +#define EMMC_DLL_STATUS1_DLL_STRBIN_DELAY_VALUE_SHIFT \ + 16 +#define EMMC_DLL_STATUS1_DLL_STRBIN_DELAY_VALUE_MASK \ + 0xff + +struct dwmshc_softc { + struct sdhc_softc sc_sdhc; + + int sc_node; + + bus_space_tag_t sc_iot; + bus_space_handle_t sc_ioh; + bus_size_t sc_ios; + bus_dma_tag_t sc_dmat; + void *sc_ih; + + struct sdhc_host *sc_host; +}; + +static int dwmshc_match(struct device *, void *, void *); +static void dwmshc_attach(struct device *, struct device *, + void *); + +static inline void dwmshc_wr1(struct dwmshc_softc *, + bus_size_t, uint8_t); +#if 0 +static inline void dwmshc_wr2(struct dwmshc_softc *, + bus_size_t, uint16_t); +static inline uint16_t dwmshc_rd2(struct dwmshc_softc *, bus_size_t); +#endif +static inline void dwmshc_wr4(struct dwmshc_softc *, + bus_size_t, uint32_t); +static inline uint32_t dwmshc_rd4(struct dwmshc_softc *, bus_size_t); + +static void dwmshc_clock_pre(struct sdhc_softc *, int, int); +static void dwmshc_clock_post(struct sdhc_softc *, int, int); +static int dwmshc_non_removable(struct sdhc_softc *); + +const struct cfattach dwmshc_ca = { + sizeof(struct dwmshc_softc), dwmshc_match, dwmshc_attach +}; + +struct cfdriver dwmshc_cd = { + NULL, "dwmshc", DV_DULL +}; + +int +dwmshc_match(struct device *parent, void *match, void *aux) +{ + struct fdt_attach_args *faa = aux; + + return (OF_is_compatible(faa->fa_node, "rockchip,rk3568-dwcmshc")); +} +static void +dwmshc_attach(struct device *parent, struct device *self, void *aux) +{ + struct dwmshc_softc *sc = (struct dwmshc_softc *)self; + struct sdhc_softc *sdhc = &sc->sc_sdhc; + struct fdt_attach_args *faa = aux; + uint64_t capmask = 0; + uint16_t capset = 0; + int bus_width; + uint32_t freq; + + sc->sc_node = faa->fa_node; + sc->sc_iot = faa->fa_iot; + sc->sc_ios = faa->fa_reg[0].size; + sc->sc_dmat = faa->fa_dmat; + + if (faa->fa_nreg < 1) { + printf(": no registers\n"); + return; + } + + if (bus_space_map(sc->sc_iot, faa->fa_reg[0].addr, + faa->fa_reg[0].size, 0, &sc->sc_ioh)) { + printf(": can't map registers\n"); + return; + } + + pinctrl_byname(sc->sc_node, "default"); + + clock_set_assigned(sc->sc_node); + clock_enable_all(sc->sc_node); + reset_deassert_all(sc->sc_node); + + sc->sc_ih = fdt_intr_establish(faa->fa_node, IPL_BIO, + sdhc_intr, sdhc, DEVNAME(sdhc)); + if (sc->sc_ih == NULL) { + printf(": can't establish interrupt\n"); + return; + } + + printf("\n"); + + /* Disable Command Conflict Check */ + dwmshc_wr1(sc, EMMC_HOST_CTRL3, 0); + + sdhc->sc_host = &sc->sc_host; + sdhc->sc_dmat = faa->fa_dmat; + + sdhc->sc_bus_clock_pre = dwmshc_clock_pre; + sdhc->sc_bus_clock_post = dwmshc_clock_post; + + if (OF_getpropbool(sc->sc_node, "non-removable")) + sdhc->sc_card_detect = dwmshc_non_removable; + + bus_width = OF_getpropint(faa->fa_node, "bus-width", 1); + if (bus_width < 8) + SET(capmask, SDHC_8BIT_MODE_SUPP); +#if 0 + if (bus_width < 4) + ... +#endif + + freq = clock_get_frequency(faa->fa_node, "block"); + sdhc->sc_clkbase = freq / 1000; + + SET(sdhc->sc_flags, SDHC_F_NOPWR0); + SET(capmask, (uint64_t)SDHC_DDR50_SUPP << 32); + + sdhc_host_found(sdhc, sc->sc_iot, sc->sc_ioh, sc->sc_ios, 1, + capmask, capset); +} + +static void +dwmshc_clock_pre(struct sdhc_softc *sdhc, int freq, int timing) +{ +#if 0 + struct dwmshc_softc *sc = (struct dwmshc_softc *)sdhc; + + /* + * before switching to hs400es the driver needs to enable + * enhanced strobe. i think this is the right place to do + * that. + */ + if (timing == hs400es) { + dwmshc_wr4(sc, EMMC_DLL_STRBIN, EMMC_DLL_STRBIN_DELAY_ENA | + EMMC_DLL_STRBIN_DELAY_NUM_SEL | + (EMMC_DLL_STRBIN_DELAY_NUM_DEFAULT << + EMMC_DLL_STRBIN_DELAY_NUM_SHIFT)); + } +#endif +} + +static int +dwmshc_dll_wait(struct dwmshc_softc *sc) +{ + uint32_t status0; + int i; + + for (i = 0; i < 500 * 1000; i++) { + delay(1); + + status0 = dwmshc_rd4(sc, EMMC_DLL_STATUS0); + if (ISSET(status0, EMMC_DLL_STATUS0_DLL_LOCK)) { + if (ISSET(status0, EMMC_DLL_STATUS0_DLL_LOCK_TIMEOUT)) { + printf("%s: lock timeout\n", + DEVNAME(&sc->sc_sdhc)); + return (EIO); + } + return (0); + } + } + + printf("%s: poll timeout\n", DEVNAME(&sc->sc_sdhc)); + return (ETIMEDOUT); +} + +static void +dwmshc_clock_post(struct sdhc_softc *sdhc, int freq, int timing) +{ + struct dwmshc_softc *sc = (struct dwmshc_softc *)sdhc; + uint32_t txclk_tapnum = EMMC_DLL_STRBIN_DELAY_NUM_DEFAULT; + + clock_set_frequency(sc->sc_node, 0, freq * 1000); + + if (timing == SDMMC_TIMING_LEGACY) { /* disable dll */ + /* + * the bypass and start bits need to be set if dll + * is not locked. + */ + dwmshc_wr4(sc, EMMC_DLL_CTRL, + EMMC_DLL_CTRL_DLL_START | EMMC_DLL_CTRL_DLL_BYPASS_MODE); + dwmshc_wr4(sc, EMMC_DLL_RXCLK, 0); + dwmshc_wr4(sc, EMMC_DLL_TXCLK, 0); + dwmshc_wr4(sc, EMMC_DLL_STRBIN, 0); + return; + } + + dwmshc_wr4(sc, EMMC_DLL_CTRL, EMMC_DLL_CTRL_DLL_SRST); + delay(1); + dwmshc_wr4(sc, EMMC_DLL_CTRL, 0); + + dwmshc_wr4(sc, EMMC_DLL_RXCLK, EMMC_DLL_RXCLK_RX_CLK_OUT_SEL | + /* rk3568 */ EMMC_DLL_RXCLK_RX_CLK_SRC_SEL); + dwmshc_wr4(sc, EMMC_DLL_CTRL, EMMC_DLL_CTRL_DLL_START | + 0x5 << EMMC_DLL_CTRL_DLL_START_POINT_SHIFT | + 0x2 << EMMC_DLL_CTRL_DLL_INCREMENT_SHIFT); + + if (dwmshc_dll_wait(sc) != 0) + return; + + dwmshc_wr4(sc, EMMC_AT_CTRL, EMMC_AT_CTRL_TUNE_CLK_STOP_EN | + EMMC_AT_CTRL_PRE_CHANGE_DLY_LT4 | + EMMC_AT_CTRL_POST_CHANGE_DLY_LT4); + + if (timing >= SDMMC_TIMING_MMC_HS200) { + txclk_tapnum = OF_getpropint(sc->sc_node, + "rockchip,txclk-tapnum", txclk_tapnum); + + /* XXX rk3588 hs400 */ + } + + dwmshc_wr4(sc, EMMC_DLL_TXCLK, EMMC_DLL_TXCLK_TX_CLK_OUT_SEL | + EMMC_DLL_TXCLK_TX_TAP_NUM_SEL | + txclk_tapnum << EMMC_DLL_TXCLK_TX_TAP_NUM_SHIFT); + dwmshc_wr4(sc, EMMC_DLL_STRBIN, EMMC_DLL_STRBIN_DELAY_ENA | + EMMC_DLL_STRBIN_TAP_NUM_SEL | + (EMMC_DLL_STRBIN_TAP_NUM_DEFAULT << + EMMC_DLL_STRBIN_TAP_NUM_SHIFT)); +} + +static int +dwmshc_non_removable(struct sdhc_softc *sdhc) +{ + return (1); +} + +static inline void +dwmshc_wr1(struct dwmshc_softc *sc, bus_size_t off, uint8_t v) +{ + bus_space_write_1(sc->sc_iot, sc->sc_ioh, off, v); +} + +#if 0 +static inline void +dwmshc_wr2(struct dwmshc_softc *sc, bus_size_t off, uint16_t v) +{ + bus_space_write_2(sc->sc_iot, sc->sc_ioh, off, v); +} + +static inline uint16_t +dwmshc_rd2(struct dwmshc_softc *sc, bus_size_t off) +{ + return (bus_space_read_2(sc->sc_iot, sc->sc_ioh, off)); +} +#endif + +static inline void +dwmshc_wr4(struct dwmshc_softc *sc, bus_size_t off, uint32_t v) +{ + bus_space_write_4(sc->sc_iot, sc->sc_ioh, off, v); +} + +static inline uint32_t +dwmshc_rd4(struct dwmshc_softc *sc, bus_size_t off) +{ + return (bus_space_read_4(sc->sc_iot, sc->sc_ioh, off)); +} Index: rkclock.c =================================================================== RCS file: /cvs/src/sys/dev/fdt/rkclock.c,v retrieving revision 1.73 diff -u -p -r1.73 rkclock.c --- rkclock.c 6 Apr 2023 21:17:01 -0000 1.73 +++ rkclock.c 17 Apr 2023 01:39:19 -0000 @@ -526,7 +526,7 @@ rkclock_get_frequency(struct rkclock_sof clk = rkclock_lookup(sc, idx); if (clk == NULL) { - printf("%s: 0x%08x\n", __func__, idx); + printf("%s(%s, %u)\n", __func__, sc->sc_dev.dv_xname, idx); return 0; } @@ -3081,6 +3081,22 @@ rk3399_pmu_reset(void *cookie, uint32_t const struct rkclock rk3568_clocks[] = { { + RK3568_BCLK_EMMC, RK3568_CRU_CLKSEL_CON(28), + SEL(9, 8), 0, + { RK3568_GPLL_200M, RK3568_GPLL_150M, RK3568_CPLL_125M } + }, + { + RK3568_CCLK_EMMC, RK3568_CRU_CLKSEL_CON(28), + SEL(14, 12), 0, + { RK3568_XIN24M, RK3568_GPLL_200M, RK3568_GPLL_150M, + RK3568_CPLL_100M, RK3568_CPLL_50M, RK3568_CLK_OSC0_DIV_375K } + }, + { + RK3568_TCLK_EMMC, 0, 0, 0, + { RK3568_XIN24M } + }, + + { RK3568_ACLK_PHP, RK3568_CRU_CLKSEL_CON(30), SEL(1, 0), 0, { RK3568_GPLL_300M, RK3568_GPLL_200M, @@ -3331,6 +3347,11 @@ const struct rkclock rk3568_clocks[] = { { RK3568_PLL_GPLL } }, { + RK3568_GPLL_150M, RK3568_CRU_CLKSEL_CON(76), + 0, DIV(12, 5), + { RK3568_PLL_GPLL } + }, + { RK3568_GPLL_100M, RK3568_CRU_CLKSEL_CON(77), 0, DIV(4, 0), { RK3568_PLL_GPLL } @@ -3481,6 +3502,9 @@ rk3568_get_frequency(void *cookie, uint3 return rk3568_get_frequency(sc, &idx) / 20; case RK3568_SCLK_GMAC1_DIV_2: idx = RK3568_SCLK_GMAC1; + return rk3568_get_frequency(sc, &idx) / 2; + case RK3568_CLK_OSC0_DIV_375K: + idx = RK3568_CLK_OSC0_DIV_750K; return rk3568_get_frequency(sc, &idx) / 2; case RK3568_GMAC0_CLKIN: return rkclock_external_frequency("gmac0_clkin"); Index: rkclock_clocks.h =================================================================== RCS file: /cvs/src/sys/dev/fdt/rkclock_clocks.h,v retrieving revision 1.46 diff -u -p -r1.46 rkclock_clocks.h --- rkclock_clocks.h 6 Apr 2023 21:17:01 -0000 1.46 +++ rkclock_clocks.h 17 Apr 2023 01:39:19 -0000 @@ -283,6 +283,11 @@ #define RK3568_PLL_VPLL 5 #define RK3568_PLL_NPLL 6 +#define RK3568_ACLK_EMMC 121 +#define RK3568_HCLK_EMMC 122 +#define RK3568_BCLK_EMMC 123 +#define RK3568_CCLK_EMMC 124 +#define RK3568_TCLK_EMMC 125 #define RK3568_ACLK_PHP 173 #define RK3568_PCLK_PHP 175 #define RK3568_CLK_SDMMC0 177 @@ -332,18 +337,20 @@ #define RK3568_CPLL_25M 416 #define RK3568_CPLL_100M 417 -#define RK3568_SCLK_GMAC0_DIV_50 1007 -#define RK3568_SCLK_GMAC0_DIV_5 1008 -#define RK3568_SCLK_GMAC0_DIV_20 1009 -#define RK3568_SCLK_GMAC0_DIV_2 1010 -#define RK3568_SCLK_GMAC1_DIV_50 1011 -#define RK3568_SCLK_GMAC1_DIV_5 1012 -#define RK3568_SCLK_GMAC1_DIV_20 1013 -#define RK3568_SCLK_GMAC1_DIV_2 1014 -#define RK3568_GPLL_400M 1015 -#define RK3568_GPLL_300M 1016 -#define RK3568_GPLL_200M 1017 -#define RK3568_GPLL_100M 1018 +#define RK3568_SCLK_GMAC0_DIV_50 1005 +#define RK3568_SCLK_GMAC0_DIV_5 1006 +#define RK3568_SCLK_GMAC0_DIV_20 1007 +#define RK3568_SCLK_GMAC0_DIV_2 1008 +#define RK3568_SCLK_GMAC1_DIV_50 1009 +#define RK3568_SCLK_GMAC1_DIV_5 1010 +#define RK3568_SCLK_GMAC1_DIV_20 1011 +#define RK3568_SCLK_GMAC1_DIV_2 1012 +#define RK3568_GPLL_400M 1013 +#define RK3568_GPLL_300M 1014 +#define RK3568_GPLL_200M 1015 +#define RK3568_GPLL_150M 1016 +#define RK3568_GPLL_100M 1017 +#define RK3568_CLK_OSC0_DIV_375K 1018 #define RK3568_CLK_OSC0_DIV_750K 1019 #define RK3568_GMAC0_CLKIN 1020 #define RK3568_GMAC1_CLKIN 1021