xref: /freebsd/sys/dev/clk/rockchip/rk3568_pmucru.c (revision be82b3a0)
177f22241SEmmanuel Vadot /*-
277f22241SEmmanuel Vadot  * SPDX-License-Identifier: BSD-2-Clause
377f22241SEmmanuel Vadot  *
477f22241SEmmanuel Vadot  * Copyright (c) 2021, 2022 Soren Schmidt <sos@deepcore.dk>
577f22241SEmmanuel Vadot  * Copyright (c) 2023, Emmanuel Vadot <manu@freebsd.org>
677f22241SEmmanuel Vadot  *
777f22241SEmmanuel Vadot  * Redistribution and use in source and binary forms, with or without
877f22241SEmmanuel Vadot  * modification, are permitted provided that the following conditions
977f22241SEmmanuel Vadot  * are met:
1077f22241SEmmanuel Vadot  * 1. Redistributions of source code must retain the above copyright
1177f22241SEmmanuel Vadot  *    notice, this list of conditions and the following disclaimer.
1277f22241SEmmanuel Vadot  * 2. Redistributions in binary form must reproduce the above copyright
1377f22241SEmmanuel Vadot  *    notice, this list of conditions and the following disclaimer in the
1477f22241SEmmanuel Vadot  *    documentation and/or other materials provided with the distribution.
1577f22241SEmmanuel Vadot  *
1677f22241SEmmanuel Vadot  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1777f22241SEmmanuel Vadot  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1877f22241SEmmanuel Vadot  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
1977f22241SEmmanuel Vadot  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2077f22241SEmmanuel Vadot  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
2177f22241SEmmanuel Vadot  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2277f22241SEmmanuel Vadot  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
2377f22241SEmmanuel Vadot  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
2477f22241SEmmanuel Vadot  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2577f22241SEmmanuel Vadot  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2677f22241SEmmanuel Vadot  * SUCH DAMAGE.
2777f22241SEmmanuel Vadot  */
2877f22241SEmmanuel Vadot 
2977f22241SEmmanuel Vadot #include <sys/param.h>
3077f22241SEmmanuel Vadot #include <sys/systm.h>
3177f22241SEmmanuel Vadot #include <sys/bus.h>
3277f22241SEmmanuel Vadot #include <sys/rman.h>
3377f22241SEmmanuel Vadot #include <sys/kernel.h>
3477f22241SEmmanuel Vadot #include <sys/module.h>
3577f22241SEmmanuel Vadot #include <machine/bus.h>
3677f22241SEmmanuel Vadot 
3777f22241SEmmanuel Vadot #include <dev/fdt/simplebus.h>
3877f22241SEmmanuel Vadot 
3977f22241SEmmanuel Vadot #include <dev/ofw/ofw_bus.h>
4077f22241SEmmanuel Vadot #include <dev/ofw/ofw_bus_subr.h>
4177f22241SEmmanuel Vadot 
42be82b3a0SEmmanuel Vadot #include <dev/clk/clk_div.h>
43be82b3a0SEmmanuel Vadot #include <dev/clk/clk_fixed.h>
44be82b3a0SEmmanuel Vadot #include <dev/clk/clk_mux.h>
4577f22241SEmmanuel Vadot 
4677f22241SEmmanuel Vadot #include <dev/clk/rockchip/rk_cru.h>
4777f22241SEmmanuel Vadot #include <contrib/device-tree/include/dt-bindings/clock/rk3568-cru.h>
4877f22241SEmmanuel Vadot 
4977f22241SEmmanuel Vadot 
5077f22241SEmmanuel Vadot #define	CRU_PLLSEL_CON(x)		((x) * 0x20)
5177f22241SEmmanuel Vadot #define	CRU_CLKSEL_CON(x)		((x) * 0x4 + 0x100)
5277f22241SEmmanuel Vadot #define	CRU_CLKGATE_CON(x)		((x) * 0x4 + 0x180)
5377f22241SEmmanuel Vadot 
5477f22241SEmmanuel Vadot /* PLL clock */
5577f22241SEmmanuel Vadot #define	RK_PLL(_id, _name, _pnames, _off, _shift)			\
5677f22241SEmmanuel Vadot {									\
5777f22241SEmmanuel Vadot 	.type = RK3328_CLK_PLL,						\
5877f22241SEmmanuel Vadot 	.clk.pll = &(struct rk_clk_pll_def) {				\
5977f22241SEmmanuel Vadot 		.clkdef.id = _id,					\
6077f22241SEmmanuel Vadot 		.clkdef.name = _name,					\
6177f22241SEmmanuel Vadot 		.clkdef.parent_names = _pnames,				\
6277f22241SEmmanuel Vadot 		.clkdef.parent_cnt = nitems(_pnames),			\
6377f22241SEmmanuel Vadot 		.clkdef.flags = CLK_NODE_STATIC_STRINGS,		\
6477f22241SEmmanuel Vadot 		.base_offset = CRU_PLLSEL_CON(_off),			\
6577f22241SEmmanuel Vadot 		.mode_reg = 0x80,					\
6677f22241SEmmanuel Vadot 		.mode_shift = _shift,					\
6777f22241SEmmanuel Vadot 		.rates = rk3568_pll_rates,				\
6877f22241SEmmanuel Vadot 	},								\
6977f22241SEmmanuel Vadot }
7077f22241SEmmanuel Vadot 
7177f22241SEmmanuel Vadot extern struct rk_clk_pll_rate rk3568_pll_rates[];
7277f22241SEmmanuel Vadot 
7377f22241SEmmanuel Vadot /* Parent clock defines */
7477f22241SEmmanuel Vadot PLIST(mux_pll_p) = { "xin24m" };
7577f22241SEmmanuel Vadot PLIST(xin24m_32k_p) = { "xin24m", "clk_rtc_32k" };
7677f22241SEmmanuel Vadot PLIST(sclk_uart0_p) = { "sclk_uart0_div", "sclk_uart0_frac", "xin24m" };
7777f22241SEmmanuel Vadot PLIST(sclk_uart0_div_p) = { "ppll", "usb480m", "cpll", "gpll" };
7877f22241SEmmanuel Vadot PLIST(clk_rtc32k_pmu_p) = { "clk_32k_pvtm", "xin32k", "clk_osc0_div32k" };
7977f22241SEmmanuel Vadot PLIST(clk_usbphy0_ref_p) = { "clk_ref24m", "xin_osc0_usbphy0_g" };
8077f22241SEmmanuel Vadot PLIST(clk_usbphy1_ref_p) = { "clk_ref24m", "xin_osc0_usbphy1_g" };
8177f22241SEmmanuel Vadot PLIST(clk_mipidsiphy0_ref_p) = { "clk_ref24m", "xin_osc0_mipidsiphy0_g" };
8277f22241SEmmanuel Vadot PLIST(clk_mipidsiphy1_ref_p) = { "clk_ref24m", "xin_osc0_mipidsiphy1_g" };
8377f22241SEmmanuel Vadot PLIST(clk_wifi_p) = { "clk_wifi_osc0", "clk_wifi_div" };
8477f22241SEmmanuel Vadot PLIST(clk_pciephy0_ref_p) = { "clk_pciephy0_osc0", "clk_pciephy0_div" };
8577f22241SEmmanuel Vadot PLIST(clk_pciephy1_ref_p) = { "clk_pciephy1_osc0", "clk_pciephy1_div" };
8677f22241SEmmanuel Vadot PLIST(clk_pciephy2_ref_p) = { "clk_pciephy2_osc0", "clk_pciephy2_div" };
8777f22241SEmmanuel Vadot PLIST(clk_hdmi_ref_p) = { "hpll", "hpll_ph0" };
8877f22241SEmmanuel Vadot PLIST(clk_pdpmu_p) = { "ppll", "gpll" };
8977f22241SEmmanuel Vadot PLIST(clk_pwm0_p) = { "xin24m", "clk_pdpmu" };
9077f22241SEmmanuel Vadot 
9177f22241SEmmanuel Vadot /* CLOCKS */
9277f22241SEmmanuel Vadot static struct rk_clk rk3568_clks[] = {
9377f22241SEmmanuel Vadot 	/* External clocks */
9477f22241SEmmanuel Vadot 	LINK("xin24m"),
9577f22241SEmmanuel Vadot 	LINK("cpll"),
9677f22241SEmmanuel Vadot 	LINK("gpll"),
9777f22241SEmmanuel Vadot 	LINK("usb480m"),
9877f22241SEmmanuel Vadot 	LINK("clk_32k_pvtm"),
9977f22241SEmmanuel Vadot 
10077f22241SEmmanuel Vadot 	/* Fixed clocks */
10177f22241SEmmanuel Vadot 	FFACT(0, "ppll_ph0", "ppll", 1, 2),
10277f22241SEmmanuel Vadot 	FFACT(0, "ppll_ph180", "ppll", 1, 2),
10377f22241SEmmanuel Vadot 	FFACT(0, "hpll_ph0", "hpll", 1, 2),
10477f22241SEmmanuel Vadot 
10577f22241SEmmanuel Vadot 	/* PLL's */
10677f22241SEmmanuel Vadot 	RK_PLL(PLL_PPLL, "ppll", mux_pll_p, 0, 0),
10777f22241SEmmanuel Vadot 	RK_PLL(PLL_HPLL, "hpll", mux_pll_p, 2, 2),
10877f22241SEmmanuel Vadot 
10977f22241SEmmanuel Vadot 	/* PMUCRU_PMUCLKSEL_CON00 */
11077f22241SEmmanuel Vadot 	CDIV(0, "xin_osc0_div_div", "xin24m", 0, 0, 0, 5),
11177f22241SEmmanuel Vadot 	MUX(0, "clk_rtc_32k_mux", clk_rtc32k_pmu_p, 0, 0, 6, 2),
11277f22241SEmmanuel Vadot 
11377f22241SEmmanuel Vadot 	/* PMUCRU_PMUCLKSEL_CON01 */
11477f22241SEmmanuel Vadot 	FRACT(0, "clk_osc0_div32k", "xin24m", 0, 1),
11577f22241SEmmanuel Vadot 
11677f22241SEmmanuel Vadot 	/* PMUCRU_PMUCLKSEL_CON02 */
11777f22241SEmmanuel Vadot 	CDIV(0, "pclk_pdpmu_pre", "clk_pdpmu", 0, 2, 0, 5),
11877f22241SEmmanuel Vadot 	MUX(CLK_PDPMU, "clk_pdpmu", clk_pdpmu_p, 0, 2, 15, 1),
11977f22241SEmmanuel Vadot 
12077f22241SEmmanuel Vadot 	/* PMUCRU_PMUCLKSEL_CON03 */
12177f22241SEmmanuel Vadot 	CDIV(0, "clk_i2c0_div", "clk_pdpmu", 0, 3, 0, 7),
12277f22241SEmmanuel Vadot 
12377f22241SEmmanuel Vadot 	/* PMUCRU_PMUCLKSEL_CON04 */
12477f22241SEmmanuel Vadot 	CDIV(0, "sclk_uart0_div_div", "sclk_uart0_div_sel", 0, 4, 0, 7),
12577f22241SEmmanuel Vadot 	MUX(0, "sclk_uart0_div_sel", sclk_uart0_div_p, 0, 4, 8, 2),
12677f22241SEmmanuel Vadot 	MUX(0, "sclk_uart0_mux", sclk_uart0_p, 0, 4, 10, 2),
12777f22241SEmmanuel Vadot 
12877f22241SEmmanuel Vadot 	/* PMUCRU_PMUCLKSEL_CON05 */
12977f22241SEmmanuel Vadot 	FRACT(0, "sclk_uart0_frac_div", "sclk_uart0_div", 0, 5),
13077f22241SEmmanuel Vadot 
13177f22241SEmmanuel Vadot 	/* PMUCRU_PMUCLKSEL_CON06 */
13277f22241SEmmanuel Vadot 	CDIV(0, "clk_pwm0_div", "clk_pwm0_sel", 0, 6, 0, 7),
13377f22241SEmmanuel Vadot 	MUX(0, "clk_pwm0_sel", clk_pwm0_p, 0, 6, 7, 1),
13477f22241SEmmanuel Vadot 	MUX(0, "dbclk_gpio0_sel", xin24m_32k_p, 0, 6, 15, 1),
13577f22241SEmmanuel Vadot 
13677f22241SEmmanuel Vadot 	/* PMUCRU_PMUCLKSEL_CON07 */
13777f22241SEmmanuel Vadot 	CDIV(0, "clk_ref24m_div", "clk_pdpmu", 0, 7, 0, 6),
13877f22241SEmmanuel Vadot 
13977f22241SEmmanuel Vadot 	/* PMUCRU_PMUCLKSEL_CON08 */
14077f22241SEmmanuel Vadot 	MUX(CLK_USBPHY0_REF, "clk_usbphy0_ref", clk_usbphy0_ref_p, 0, 8, 0, 1),
14177f22241SEmmanuel Vadot 	MUX(CLK_USBPHY1_REF, "clk_usbphy1_ref", clk_usbphy1_ref_p, 0, 8, 1, 1),
14277f22241SEmmanuel Vadot 	MUX(CLK_MIPIDSIPHY0_REF, "clk_mipidsiphy0_ref", clk_mipidsiphy0_ref_p, 0, 8, 2, 1),
14377f22241SEmmanuel Vadot 	MUX(CLK_MIPIDSIPHY1_REF, "clk_mipidsiphy1_ref", clk_mipidsiphy1_ref_p, 0, 8, 3, 1),
14477f22241SEmmanuel Vadot 	MUX(CLK_HDMI_REF, "clk_hdmi_ref", clk_hdmi_ref_p, 0, 8, 7, 1),
14577f22241SEmmanuel Vadot 	CDIV(0, "clk_wifi_div_div", "clk_pdpmu", 0, 8, 8, 6),
14677f22241SEmmanuel Vadot 	MUX(CLK_WIFI, "clk_wifi", clk_wifi_p, 0, 8, 15, 1),
14777f22241SEmmanuel Vadot 
14877f22241SEmmanuel Vadot 	/* PMUCRU_PMUCLKSEL_CON09 */
14977f22241SEmmanuel Vadot 	CDIV(0, "clk_pciephy0_div_div", "ppll_ph0", 0, 9, 0, 3),
15077f22241SEmmanuel Vadot 	MUX(CLK_PCIEPHY0_REF, "clk_pciephy0_ref",
15177f22241SEmmanuel Vadot 	  clk_pciephy0_ref_p, 0, 9, 3, 1),
15277f22241SEmmanuel Vadot 	CDIV(0, "clk_pciephy1_div_div", "ppll_ph0", 0, 9, 4, 3),
15377f22241SEmmanuel Vadot 	MUX(CLK_PCIEPHY1_REF, "clk_pciephy1_ref",
15477f22241SEmmanuel Vadot 	  clk_pciephy1_ref_p, 0, 9, 7, 1),
15577f22241SEmmanuel Vadot 	CDIV(0, "clk_pciephy2_div_div", "ppll_ph0", 0, 9, 8, 3),
15677f22241SEmmanuel Vadot 	MUX(CLK_PCIEPHY2_REF, "clk_pciephy2_ref",
15777f22241SEmmanuel Vadot 	  clk_pciephy2_ref_p, 0, 9, 11, 1),
15877f22241SEmmanuel Vadot };
15977f22241SEmmanuel Vadot 
16077f22241SEmmanuel Vadot /* GATES */
16177f22241SEmmanuel Vadot static struct rk_cru_gate rk3568_gates[] = {
16277f22241SEmmanuel Vadot 	/* PMUCRU_PMUGATE_CON00 */
16377f22241SEmmanuel Vadot 	GATE(XIN_OSC0_DIV, "xin_osc0_div", "xin_osc0_div_div",			0, 0),
16477f22241SEmmanuel Vadot 	GATE(CLK_RTC_32K, "clk_rtc_32k", "clk_rtc_32k_mux",			0, 1),
16577f22241SEmmanuel Vadot 	GATE(PCLK_PDPMU, "pclk_pdpmu", "pclk_pdpmu_pre",			0, 2),
16677f22241SEmmanuel Vadot 	GATE(PCLK_PMU, "pclk_pmu", "pclk_pdpmu",				0, 6),
16777f22241SEmmanuel Vadot 	GATE(CLK_PMU, "clk_pmu", "xin24m",					0, 7),
16877f22241SEmmanuel Vadot 
16977f22241SEmmanuel Vadot 	/* PMUCRU_PMUGATE_CON01 */
17077f22241SEmmanuel Vadot 	GATE(PCLK_I2C0, "pclk_i2c0", "pclk_pdpmu",				1, 0),
17177f22241SEmmanuel Vadot 	GATE(CLK_I2C0, "clk_i2c0", "clk_i2c0_div",				1, 1),
17277f22241SEmmanuel Vadot 	GATE(PCLK_UART0, "pclk_uart0", "pclk_pdpmu",				1, 2),
17377f22241SEmmanuel Vadot 	GATE(CLK_UART0_DIV, "sclk_uart0_div", "sclk_uart0_div_div",		1, 3),
17477f22241SEmmanuel Vadot 	GATE(CLK_UART0_FRAC, "sclk_uart0_frac", "sclk_uart0_frac_div",		1, 4),
17577f22241SEmmanuel Vadot 	GATE(SCLK_UART0, "sclk_uart0", "sclk_uart0_mux",			1, 5),
17677f22241SEmmanuel Vadot 	GATE(PCLK_PWM0, "pclk_pwm0", "pclk_pdpmu",				1, 6),
17777f22241SEmmanuel Vadot 	GATE(CLK_PWM0, "clk_pwm0", "clk_pwm0_div",				1, 7),
17877f22241SEmmanuel Vadot 	GATE(CLK_CAPTURE_PWM0_NDFT, "clk_capture_pwm0_ndft", "xin24m",		1, 8),
17977f22241SEmmanuel Vadot 	GATE(PCLK_GPIO0, "pclk_gpio0", "pclk_pdpmu",				1, 9),
18077f22241SEmmanuel Vadot 	GATE(DBCLK_GPIO0, "dbclk_gpio0", "dbclk_gpio0_sel",			1, 10),
18177f22241SEmmanuel Vadot 	GATE(PCLK_PMUPVTM, "pclk_pmupvtm", "pclk_pdpmu",			1, 11),
18277f22241SEmmanuel Vadot 	GATE(CLK_PMUPVTM, "clk_pmupvtm", "xin24m",				1, 12),
18377f22241SEmmanuel Vadot 	GATE(CLK_CORE_PMUPVTM, "clk_core_pmupvtm", "xin24m",			1, 13),
18477f22241SEmmanuel Vadot 
18577f22241SEmmanuel Vadot 	/* PMUCRU_PMUGATE_CON02 */
18677f22241SEmmanuel Vadot 	GATE(CLK_REF24M, "clk_ref24m", "clk_ref24m_div",			2, 0),
18777f22241SEmmanuel Vadot 	GATE(XIN_OSC0_USBPHY0_G, "xin_osc0_usbphy0_g", "xin24m",		2, 1),
18877f22241SEmmanuel Vadot 	GATE(XIN_OSC0_USBPHY1_G, "xin_osc0_usbphy1_g", "xin24m",		2, 2),
18977f22241SEmmanuel Vadot 	GATE(XIN_OSC0_MIPIDSIPHY0_G, "xin_osc0_mipidsiphy0_g", "xin24m",	2, 3),
19077f22241SEmmanuel Vadot 	GATE(XIN_OSC0_MIPIDSIPHY1_G, "xin_osc0_mipidsiphy1_g", "xin24m",	2, 4),
19177f22241SEmmanuel Vadot 	GATE(CLK_WIFI_DIV, "clk_wifi_div", "clk_wifi_div_div",			2, 5),
19277f22241SEmmanuel Vadot 	GATE(CLK_WIFI_OSC0, "clk_wifi_osc0", "xin24m",				2, 6),
19377f22241SEmmanuel Vadot 	GATE(CLK_PCIEPHY0_DIV, "clk_pciephy0_div", "clk_pciephy0_div_div",	2, 7),
19477f22241SEmmanuel Vadot 	GATE(CLK_PCIEPHY0_OSC0, "clk_pciephy0_osc0", "xin24m",			2, 8),
19577f22241SEmmanuel Vadot 	GATE(CLK_PCIEPHY1_DIV, "clk_pciephy1_div", "clk_pciephy1_div_div",	2, 9),
19677f22241SEmmanuel Vadot 	GATE(CLK_PCIEPHY1_OSC0, "clk_pciephy1_osc0", "xin24m",			2, 10),
19777f22241SEmmanuel Vadot 	GATE(CLK_PCIEPHY2_DIV, "clk_pciephy2_div", "clk_pciephy2_div_div",	2, 11),
19877f22241SEmmanuel Vadot 	GATE(CLK_PCIEPHY2_OSC0, "clk_pciephy2_osc0", "xin24m",			2, 12),
19977f22241SEmmanuel Vadot 	GATE(CLK_PCIE30PHY_REF_M, "clk_pcie30phy_ref_m", "ppll_ph0",		2, 13),
20077f22241SEmmanuel Vadot 	GATE(CLK_PCIE30PHY_REF_N, "clk_pcie30phy_ref_n", "ppll_ph180",		2, 14),
20177f22241SEmmanuel Vadot 	GATE(XIN_OSC0_EDPPHY_G, "xin_osc0_edpphy_g", "xin24m",			2, 15),
20277f22241SEmmanuel Vadot };
20377f22241SEmmanuel Vadot 
20477f22241SEmmanuel Vadot static int
rk3568_pmucru_probe(device_t dev)20577f22241SEmmanuel Vadot rk3568_pmucru_probe(device_t dev)
20677f22241SEmmanuel Vadot {
20777f22241SEmmanuel Vadot 
20877f22241SEmmanuel Vadot 	if (!ofw_bus_status_okay(dev))
20977f22241SEmmanuel Vadot 		return (ENXIO);
21077f22241SEmmanuel Vadot 
21177f22241SEmmanuel Vadot 	if (ofw_bus_is_compatible(dev, "rockchip,rk3568-pmucru")) {
21277f22241SEmmanuel Vadot 		device_set_desc(dev, "Rockchip RK3568 PMU Clock & Reset Unit");
21377f22241SEmmanuel Vadot 		return (BUS_PROBE_DEFAULT);
21477f22241SEmmanuel Vadot 	}
21577f22241SEmmanuel Vadot 
21677f22241SEmmanuel Vadot 	return (ENXIO);
21777f22241SEmmanuel Vadot }
21877f22241SEmmanuel Vadot 
21977f22241SEmmanuel Vadot static int
rk3568_pmucru_attach(device_t dev)22077f22241SEmmanuel Vadot rk3568_pmucru_attach(device_t dev)
22177f22241SEmmanuel Vadot {
22277f22241SEmmanuel Vadot 	struct rk_cru_softc *sc;
22377f22241SEmmanuel Vadot 
22477f22241SEmmanuel Vadot 	sc = device_get_softc(dev);
22577f22241SEmmanuel Vadot 	sc->dev = dev;
22677f22241SEmmanuel Vadot 	sc->clks = rk3568_clks;
22777f22241SEmmanuel Vadot 	sc->nclks = nitems(rk3568_clks);
22877f22241SEmmanuel Vadot 	sc->gates = rk3568_gates;
22977f22241SEmmanuel Vadot 	sc->ngates = nitems(rk3568_gates);
23077f22241SEmmanuel Vadot 	sc->reset_offset = 0x200;
23177f22241SEmmanuel Vadot 	sc->reset_num = 4;
23277f22241SEmmanuel Vadot 
23377f22241SEmmanuel Vadot 	return (rk_cru_attach(dev));
23477f22241SEmmanuel Vadot }
23577f22241SEmmanuel Vadot 
23677f22241SEmmanuel Vadot static device_method_t methods[] = {
23777f22241SEmmanuel Vadot 	/* Device interface */
23877f22241SEmmanuel Vadot 	DEVMETHOD(device_probe,		rk3568_pmucru_probe),
23977f22241SEmmanuel Vadot 	DEVMETHOD(device_attach,	rk3568_pmucru_attach),
24077f22241SEmmanuel Vadot 
24177f22241SEmmanuel Vadot 	DEVMETHOD_END
24277f22241SEmmanuel Vadot };
24377f22241SEmmanuel Vadot 
24477f22241SEmmanuel Vadot DEFINE_CLASS_1(rk3568_pmucru, rk3568_pmucru_driver, methods,
24577f22241SEmmanuel Vadot     sizeof(struct rk_cru_softc), rk_cru_driver);
24677f22241SEmmanuel Vadot 
24777f22241SEmmanuel Vadot EARLY_DRIVER_MODULE(rk3568_pmucru, simplebus, rk3568_pmucru_driver,
24877f22241SEmmanuel Vadot     0, 0, BUS_PASS_BUS + BUS_PASS_ORDER_MIDDLE);
249