blob: b82fe54c6009d7d8c4fad070397b1ebcffe84628 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Christophe Kerello4e280b92017-09-13 18:00:08 +02002/*
Patrice Chotard3bc599c2017-10-23 09:53:58 +02003 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
4 * Author(s): Patrice Chotard, <patrice.chotard@st.com> for STMicroelectronics.
Christophe Kerello4e280b92017-09-13 18:00:08 +02005 */
6
7#include <common.h>
8#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Christophe Kerello4e280b92017-09-13 18:00:08 +020010#include <misc.h>
Patrice Chotard928954f2017-11-15 13:14:51 +010011#include <stm32_rcc.h>
12#include <dm/device-internal.h>
Simon Glass336d4612020-02-03 07:36:16 -070013#include <dm/device_compat.h>
Christophe Kerello4e280b92017-09-13 18:00:08 +020014#include <dm/lists.h>
15
Patrice Chotard8b414642018-04-11 17:07:45 +020016struct stm32_rcc_clk stm32_rcc_clk_f42x = {
Patrice Chotard928954f2017-11-15 13:14:51 +010017 .drv_name = "stm32fx_rcc_clock",
Patrice Chotard8b414642018-04-11 17:07:45 +020018 .soc = STM32F42X,
19};
20
21struct stm32_rcc_clk stm32_rcc_clk_f469 = {
22 .drv_name = "stm32fx_rcc_clock",
23 .soc = STM32F469,
Patrice Chotard928954f2017-11-15 13:14:51 +010024};
25
26struct stm32_rcc_clk stm32_rcc_clk_f7 = {
27 .drv_name = "stm32fx_rcc_clock",
28 .soc = STM32F7,
29};
30
31struct stm32_rcc_clk stm32_rcc_clk_h7 = {
32 .drv_name = "stm32h7_rcc_clock",
33};
34
Patrick Delaunayd090cba2018-07-09 15:17:20 +020035struct stm32_rcc_clk stm32_rcc_clk_mp1 = {
36 .drv_name = "stm32mp1_clk",
37 .soc = STM32MP1,
38};
39
Christophe Kerello4e280b92017-09-13 18:00:08 +020040static int stm32_rcc_bind(struct udevice *dev)
41{
Christophe Kerello4e280b92017-09-13 18:00:08 +020042 struct udevice *child;
Patrice Chotard928954f2017-11-15 13:14:51 +010043 struct driver *drv;
44 struct stm32_rcc_clk *rcc_clk =
45 (struct stm32_rcc_clk *)dev_get_driver_data(dev);
46 int ret;
Christophe Kerello4e280b92017-09-13 18:00:08 +020047
48 debug("%s(dev=%p)\n", __func__, dev);
Patrice Chotard928954f2017-11-15 13:14:51 +010049 drv = lists_driver_lookup_name(rcc_clk->drv_name);
50 if (!drv) {
51 debug("Cannot find driver '%s'\n", rcc_clk->drv_name);
52 return -ENOENT;
53 }
54
55 ret = device_bind_with_driver_data(dev, drv, rcc_clk->drv_name,
56 rcc_clk->soc,
57 dev_ofnode(dev), &child);
58
Christophe Kerello4e280b92017-09-13 18:00:08 +020059 if (ret)
60 return ret;
61
Patrick Delaunayd090cba2018-07-09 15:17:20 +020062 drv = lists_driver_lookup_name("stm32_rcc_reset");
63 if (!drv) {
64 dev_err(dev, "Cannot find driver stm32_rcc_reset'\n");
65 return -ENOENT;
66 }
67
68 return device_bind_with_driver_data(dev, drv, "stm32_rcc_reset",
69 rcc_clk->soc,
70 dev_ofnode(dev), &child);
Christophe Kerello4e280b92017-09-13 18:00:08 +020071}
72
Christophe Kerello4e280b92017-09-13 18:00:08 +020073
74static const struct udevice_id stm32_rcc_ids[] = {
Patrice Chotard8b414642018-04-11 17:07:45 +020075 {.compatible = "st,stm32f42xx-rcc", .data = (ulong)&stm32_rcc_clk_f42x },
76 {.compatible = "st,stm32f469-rcc", .data = (ulong)&stm32_rcc_clk_f469 },
Patrice Chotard928954f2017-11-15 13:14:51 +010077 {.compatible = "st,stm32f746-rcc", .data = (ulong)&stm32_rcc_clk_f7 },
78 {.compatible = "st,stm32h743-rcc", .data = (ulong)&stm32_rcc_clk_h7 },
Patrick Delaunayd090cba2018-07-09 15:17:20 +020079 {.compatible = "st,stm32mp1-rcc", .data = (ulong)&stm32_rcc_clk_mp1 },
Christophe Kerello4e280b92017-09-13 18:00:08 +020080 { }
81};
82
83U_BOOT_DRIVER(stm32_rcc) = {
84 .name = "stm32-rcc",
Patrick Delaunay13234702019-08-02 13:08:08 +020085 .id = UCLASS_NOP,
Christophe Kerello4e280b92017-09-13 18:00:08 +020086 .of_match = stm32_rcc_ids,
87 .bind = stm32_rcc_bind,
Christophe Kerello4e280b92017-09-13 18:00:08 +020088};