Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Christophe Kerello | 275f706 | 2017-09-13 18:00:08 +0200 | [diff] [blame] | 2 | /* |
Patrice Chotard | 789ee0e | 2017-10-23 09:53:58 +0200 | [diff] [blame] | 3 | * Copyright (C) 2017, STMicroelectronics - All Rights Reserved |
Patrice Chotard | 5d9950d | 2020-12-02 18:47:30 +0100 | [diff] [blame] | 4 | * Author(s): Patrice Chotard, <patrice.chotard@foss.st.com> for STMicroelectronics. |
Christophe Kerello | 275f706 | 2017-09-13 18:00:08 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
Patrick Delaunay | eec21f3 | 2020-11-06 19:01:43 +0100 | [diff] [blame] | 7 | #define LOG_CATEGORY UCLASS_NOP |
| 8 | |
Christophe Kerello | 275f706 | 2017-09-13 18:00:08 +0200 | [diff] [blame] | 9 | #include <dm.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 10 | #include <log.h> |
Christophe Kerello | 275f706 | 2017-09-13 18:00:08 +0200 | [diff] [blame] | 11 | #include <misc.h> |
Patrice Chotard | 03f10a1 | 2017-11-15 13:14:51 +0100 | [diff] [blame] | 12 | #include <stm32_rcc.h> |
| 13 | #include <dm/device-internal.h> |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 14 | #include <dm/device_compat.h> |
Christophe Kerello | 275f706 | 2017-09-13 18:00:08 +0200 | [diff] [blame] | 15 | #include <dm/lists.h> |
| 16 | |
Gabriel Fernandez | afdc1ae | 2025-05-27 15:27:53 +0200 | [diff] [blame] | 17 | static const struct stm32_rcc stm32_rcc_f42x = { |
| 18 | .drv_name_clk = "stm32fx_rcc_clock", |
| 19 | .drv_name_rst = "stm32_rcc_reset", |
Patrice Chotard | 7264aae | 2018-04-11 17:07:45 +0200 | [diff] [blame] | 20 | .soc = STM32F42X, |
Patrice Chotard | 03f10a1 | 2017-11-15 13:14:51 +0100 | [diff] [blame] | 21 | }; |
| 22 | |
Gabriel Fernandez | afdc1ae | 2025-05-27 15:27:53 +0200 | [diff] [blame] | 23 | static const struct stm32_rcc stm32_rcc_f469 = { |
| 24 | .drv_name_clk = "stm32fx_rcc_clock", |
| 25 | .drv_name_rst = "stm32_rcc_reset", |
Patrice Chotard | 7264aae | 2018-04-11 17:07:45 +0200 | [diff] [blame] | 26 | .soc = STM32F469, |
| 27 | }; |
| 28 | |
Gabriel Fernandez | afdc1ae | 2025-05-27 15:27:53 +0200 | [diff] [blame] | 29 | static const struct stm32_rcc stm32_rcc_f7 = { |
| 30 | .drv_name_clk = "stm32fx_rcc_clock", |
| 31 | .drv_name_rst = "stm32_rcc_reset", |
Patrice Chotard | 03f10a1 | 2017-11-15 13:14:51 +0100 | [diff] [blame] | 32 | .soc = STM32F7, |
| 33 | }; |
| 34 | |
Gabriel Fernandez | afdc1ae | 2025-05-27 15:27:53 +0200 | [diff] [blame] | 35 | static const struct stm32_rcc stm32_rcc_h7 = { |
| 36 | .drv_name_clk = "stm32h7_rcc_clock", |
| 37 | .drv_name_rst = "stm32_rcc_reset", |
Patrice Chotard | 03f10a1 | 2017-11-15 13:14:51 +0100 | [diff] [blame] | 38 | }; |
| 39 | |
Gabriel Fernandez | afdc1ae | 2025-05-27 15:27:53 +0200 | [diff] [blame] | 40 | static const struct stm32_rcc stm32_rcc_mp15 = { |
| 41 | .drv_name_clk = "stm32mp1_clk", |
| 42 | .drv_name_rst = "stm32mp1_reset", |
Patrick Delaunay | b139a5b | 2018-07-09 15:17:20 +0200 | [diff] [blame] | 43 | }; |
| 44 | |
Gabriel Fernandez | afdc1ae | 2025-05-27 15:27:53 +0200 | [diff] [blame] | 45 | static const struct stm32_rcc stm32_rcc_mp13 = { |
| 46 | .drv_name_clk = "stm32mp13_clk", |
| 47 | .drv_name_rst = "stm32mp1_reset", |
Patrick Delaunay | 6b4490c | 2022-05-19 17:56:46 +0200 | [diff] [blame] | 48 | }; |
| 49 | |
Gabriel Fernandez | afdc1ae | 2025-05-27 15:27:53 +0200 | [diff] [blame] | 50 | static const struct stm32_rcc stm32_rcc_mp25 = { |
| 51 | .drv_name_clk = "stm32mp25_clk", |
| 52 | .drv_name_rst = "stm32mp25_reset", |
| 53 | }; |
| 54 | |
Christophe Kerello | 275f706 | 2017-09-13 18:00:08 +0200 | [diff] [blame] | 55 | static int stm32_rcc_bind(struct udevice *dev) |
| 56 | { |
Christophe Kerello | 275f706 | 2017-09-13 18:00:08 +0200 | [diff] [blame] | 57 | struct udevice *child; |
Patrice Chotard | 03f10a1 | 2017-11-15 13:14:51 +0100 | [diff] [blame] | 58 | struct driver *drv; |
Gabriel Fernandez | afdc1ae | 2025-05-27 15:27:53 +0200 | [diff] [blame] | 59 | struct stm32_rcc *rcc_clk = |
| 60 | (struct stm32_rcc *)dev_get_driver_data(dev); |
Patrice Chotard | 03f10a1 | 2017-11-15 13:14:51 +0100 | [diff] [blame] | 61 | int ret; |
Christophe Kerello | 275f706 | 2017-09-13 18:00:08 +0200 | [diff] [blame] | 62 | |
Patrick Delaunay | eec21f3 | 2020-11-06 19:01:43 +0100 | [diff] [blame] | 63 | dev_dbg(dev, "RCC bind\n"); |
Gabriel Fernandez | afdc1ae | 2025-05-27 15:27:53 +0200 | [diff] [blame] | 64 | drv = lists_driver_lookup_name(rcc_clk->drv_name_clk); |
Patrice Chotard | 03f10a1 | 2017-11-15 13:14:51 +0100 | [diff] [blame] | 65 | if (!drv) { |
Gabriel Fernandez | afdc1ae | 2025-05-27 15:27:53 +0200 | [diff] [blame] | 66 | dev_err(dev, "Cannot find driver '%s'\n", rcc_clk->drv_name_clk); |
Patrice Chotard | 03f10a1 | 2017-11-15 13:14:51 +0100 | [diff] [blame] | 67 | return -ENOENT; |
| 68 | } |
| 69 | |
Patrick Delaunay | 78075bb | 2020-11-06 19:01:44 +0100 | [diff] [blame] | 70 | ret = device_bind_with_driver_data(dev, drv, dev->name, |
Patrice Chotard | 03f10a1 | 2017-11-15 13:14:51 +0100 | [diff] [blame] | 71 | rcc_clk->soc, |
| 72 | dev_ofnode(dev), &child); |
| 73 | |
Christophe Kerello | 275f706 | 2017-09-13 18:00:08 +0200 | [diff] [blame] | 74 | if (ret) |
| 75 | return ret; |
| 76 | |
Gabriel Fernandez | afdc1ae | 2025-05-27 15:27:53 +0200 | [diff] [blame] | 77 | drv = lists_driver_lookup_name(rcc_clk->drv_name_rst); |
Patrick Delaunay | b139a5b | 2018-07-09 15:17:20 +0200 | [diff] [blame] | 78 | if (!drv) { |
| 79 | dev_err(dev, "Cannot find driver stm32_rcc_reset'\n"); |
| 80 | return -ENOENT; |
| 81 | } |
| 82 | |
Gabriel Fernandez | afdc1ae | 2025-05-27 15:27:53 +0200 | [diff] [blame] | 83 | return device_bind(dev, drv, dev->name, NULL, dev_ofnode(dev), &child); |
Christophe Kerello | 275f706 | 2017-09-13 18:00:08 +0200 | [diff] [blame] | 84 | } |
| 85 | |
Christophe Kerello | 275f706 | 2017-09-13 18:00:08 +0200 | [diff] [blame] | 86 | static const struct udevice_id stm32_rcc_ids[] = { |
Gabriel Fernandez | afdc1ae | 2025-05-27 15:27:53 +0200 | [diff] [blame] | 87 | {.compatible = "st,stm32f42xx-rcc", .data = (ulong)&stm32_rcc_f42x }, |
| 88 | {.compatible = "st,stm32f469-rcc", .data = (ulong)&stm32_rcc_f469 }, |
| 89 | {.compatible = "st,stm32f746-rcc", .data = (ulong)&stm32_rcc_f7 }, |
| 90 | {.compatible = "st,stm32h743-rcc", .data = (ulong)&stm32_rcc_h7 }, |
| 91 | {.compatible = "st,stm32mp1-rcc", .data = (ulong)&stm32_rcc_mp15 }, |
| 92 | {.compatible = "st,stm32mp1-rcc-secure", .data = (ulong)&stm32_rcc_mp15 }, |
| 93 | {.compatible = "st,stm32mp13-rcc", .data = (ulong)&stm32_rcc_mp13 }, |
| 94 | {.compatible = "st,stm32mp25-rcc", .data = (ulong)&stm32_rcc_mp25 }, |
Christophe Kerello | 275f706 | 2017-09-13 18:00:08 +0200 | [diff] [blame] | 95 | { } |
| 96 | }; |
| 97 | |
| 98 | U_BOOT_DRIVER(stm32_rcc) = { |
| 99 | .name = "stm32-rcc", |
Patrick Delaunay | d79f8ee | 2019-08-02 13:08:08 +0200 | [diff] [blame] | 100 | .id = UCLASS_NOP, |
Christophe Kerello | 275f706 | 2017-09-13 18:00:08 +0200 | [diff] [blame] | 101 | .of_match = stm32_rcc_ids, |
| 102 | .bind = stm32_rcc_bind, |
Christophe Kerello | 275f706 | 2017-09-13 18:00:08 +0200 | [diff] [blame] | 103 | }; |