blob: 980b3a58e1d855e755afba3df0bff34cee7b1a62 [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>
9#include <misc.h>
Patrice Chotard928954f2017-11-15 13:14:51 +010010#include <stm32_rcc.h>
11#include <dm/device-internal.h>
Christophe Kerello4e280b92017-09-13 18:00:08 +020012#include <dm/lists.h>
13
Patrice Chotard8b414642018-04-11 17:07:45 +020014struct stm32_rcc_clk stm32_rcc_clk_f42x = {
Patrice Chotard928954f2017-11-15 13:14:51 +010015 .drv_name = "stm32fx_rcc_clock",
Patrice Chotard8b414642018-04-11 17:07:45 +020016 .soc = STM32F42X,
17};
18
19struct stm32_rcc_clk stm32_rcc_clk_f469 = {
20 .drv_name = "stm32fx_rcc_clock",
21 .soc = STM32F469,
Patrice Chotard928954f2017-11-15 13:14:51 +010022};
23
24struct stm32_rcc_clk stm32_rcc_clk_f7 = {
25 .drv_name = "stm32fx_rcc_clock",
26 .soc = STM32F7,
27};
28
29struct stm32_rcc_clk stm32_rcc_clk_h7 = {
30 .drv_name = "stm32h7_rcc_clock",
31};
32
Christophe Kerello4e280b92017-09-13 18:00:08 +020033static int stm32_rcc_bind(struct udevice *dev)
34{
Christophe Kerello4e280b92017-09-13 18:00:08 +020035 struct udevice *child;
Patrice Chotard928954f2017-11-15 13:14:51 +010036 struct driver *drv;
37 struct stm32_rcc_clk *rcc_clk =
38 (struct stm32_rcc_clk *)dev_get_driver_data(dev);
39 int ret;
Christophe Kerello4e280b92017-09-13 18:00:08 +020040
41 debug("%s(dev=%p)\n", __func__, dev);
42
Patrice Chotard928954f2017-11-15 13:14:51 +010043 drv = lists_driver_lookup_name(rcc_clk->drv_name);
44 if (!drv) {
45 debug("Cannot find driver '%s'\n", rcc_clk->drv_name);
46 return -ENOENT;
47 }
48
49 ret = device_bind_with_driver_data(dev, drv, rcc_clk->drv_name,
50 rcc_clk->soc,
51 dev_ofnode(dev), &child);
52
Christophe Kerello4e280b92017-09-13 18:00:08 +020053 if (ret)
54 return ret;
55
56 return device_bind_driver_to_node(dev, "stm32_rcc_reset",
57 "stm32_rcc_reset",
58 dev_ofnode(dev), &child);
59}
60
61static const struct misc_ops stm32_rcc_ops = {
62};
63
64static const struct udevice_id stm32_rcc_ids[] = {
Patrice Chotard8b414642018-04-11 17:07:45 +020065 {.compatible = "st,stm32f42xx-rcc", .data = (ulong)&stm32_rcc_clk_f42x },
66 {.compatible = "st,stm32f469-rcc", .data = (ulong)&stm32_rcc_clk_f469 },
Patrice Chotard928954f2017-11-15 13:14:51 +010067 {.compatible = "st,stm32f746-rcc", .data = (ulong)&stm32_rcc_clk_f7 },
68 {.compatible = "st,stm32h743-rcc", .data = (ulong)&stm32_rcc_clk_h7 },
Christophe Kerello4e280b92017-09-13 18:00:08 +020069 { }
70};
71
72U_BOOT_DRIVER(stm32_rcc) = {
73 .name = "stm32-rcc",
74 .id = UCLASS_MISC,
75 .of_match = stm32_rcc_ids,
76 .bind = stm32_rcc_bind,
77 .ops = &stm32_rcc_ops,
78};