mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-19 12:51:23 +02:00
When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"' I failed to notice that b4 noticed it was based on next and so took that as the base commit and merged that part of next to master. This reverts commit c8ffd1356d42223cbb8c86280a083cc3c93e6426, reversing changes made to 2ee6f3a5f7550de3599faef9704e166e5dcace35. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
98 lines
2.4 KiB
C
98 lines
2.4 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2017, STMicroelectronics - All Rights Reserved
|
|
* Author(s): Patrice Chotard, <patrice.chotard@foss.st.com> for STMicroelectronics.
|
|
*/
|
|
|
|
#define LOG_CATEGORY UCLASS_NOP
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <log.h>
|
|
#include <misc.h>
|
|
#include <stm32_rcc.h>
|
|
#include <dm/device-internal.h>
|
|
#include <dm/device_compat.h>
|
|
#include <dm/lists.h>
|
|
|
|
struct stm32_rcc_clk stm32_rcc_clk_f42x = {
|
|
.drv_name = "stm32fx_rcc_clock",
|
|
.soc = STM32F42X,
|
|
};
|
|
|
|
struct stm32_rcc_clk stm32_rcc_clk_f469 = {
|
|
.drv_name = "stm32fx_rcc_clock",
|
|
.soc = STM32F469,
|
|
};
|
|
|
|
struct stm32_rcc_clk stm32_rcc_clk_f7 = {
|
|
.drv_name = "stm32fx_rcc_clock",
|
|
.soc = STM32F7,
|
|
};
|
|
|
|
struct stm32_rcc_clk stm32_rcc_clk_h7 = {
|
|
.drv_name = "stm32h7_rcc_clock",
|
|
};
|
|
|
|
struct stm32_rcc_clk stm32_rcc_clk_mp1 = {
|
|
.drv_name = "stm32mp1_clk",
|
|
.soc = STM32MP1,
|
|
};
|
|
|
|
struct stm32_rcc_clk stm32_rcc_clk_mp13 = {
|
|
.drv_name = "stm32mp13_clk",
|
|
.soc = STM32MP1,
|
|
};
|
|
|
|
static int stm32_rcc_bind(struct udevice *dev)
|
|
{
|
|
struct udevice *child;
|
|
struct driver *drv;
|
|
struct stm32_rcc_clk *rcc_clk =
|
|
(struct stm32_rcc_clk *)dev_get_driver_data(dev);
|
|
int ret;
|
|
|
|
dev_dbg(dev, "RCC bind\n");
|
|
drv = lists_driver_lookup_name(rcc_clk->drv_name);
|
|
if (!drv) {
|
|
dev_err(dev, "Cannot find driver '%s'\n", rcc_clk->drv_name);
|
|
return -ENOENT;
|
|
}
|
|
|
|
ret = device_bind_with_driver_data(dev, drv, dev->name,
|
|
rcc_clk->soc,
|
|
dev_ofnode(dev), &child);
|
|
|
|
if (ret)
|
|
return ret;
|
|
|
|
drv = lists_driver_lookup_name("stm32_rcc_reset");
|
|
if (!drv) {
|
|
dev_err(dev, "Cannot find driver stm32_rcc_reset'\n");
|
|
return -ENOENT;
|
|
}
|
|
|
|
return device_bind_with_driver_data(dev, drv, dev->name,
|
|
rcc_clk->soc,
|
|
dev_ofnode(dev), &child);
|
|
}
|
|
|
|
|
|
static const struct udevice_id stm32_rcc_ids[] = {
|
|
{.compatible = "st,stm32f42xx-rcc", .data = (ulong)&stm32_rcc_clk_f42x },
|
|
{.compatible = "st,stm32f469-rcc", .data = (ulong)&stm32_rcc_clk_f469 },
|
|
{.compatible = "st,stm32f746-rcc", .data = (ulong)&stm32_rcc_clk_f7 },
|
|
{.compatible = "st,stm32h743-rcc", .data = (ulong)&stm32_rcc_clk_h7 },
|
|
{.compatible = "st,stm32mp1-rcc", .data = (ulong)&stm32_rcc_clk_mp1 },
|
|
{.compatible = "st,stm32mp1-rcc-secure", .data = (ulong)&stm32_rcc_clk_mp1 },
|
|
{.compatible = "st,stm32mp13-rcc", .data = (ulong)&stm32_rcc_clk_mp13 },
|
|
{ }
|
|
};
|
|
|
|
U_BOOT_DRIVER(stm32_rcc) = {
|
|
.name = "stm32-rcc",
|
|
.id = UCLASS_NOP,
|
|
.of_match = stm32_rcc_ids,
|
|
.bind = stm32_rcc_bind,
|
|
};
|