blob: 1efb7fe9f3e305c7114e77709a2515e9ba1dcc81 [file] [log] [blame]
Lukasz Majewski1d7993d2019-06-24 15:50:45 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2019 DENX Software Engineering
4 * Lukasz Majewski, DENX Software Engineering, lukma@denx.de
5 */
6
7#include <common.h>
8#include <clk-uclass.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020010#include <dm/device.h>
11#include <dm/uclass.h>
12#include <dm/lists.h>
13#include <dm/device-internal.h>
14#include <clk.h>
15
16int clk_register(struct clk *clk, const char *drv_name,
17 const char *name, const char *parent_name)
18{
19 struct udevice *parent;
20 struct driver *drv;
21 int ret;
22
23 ret = uclass_get_device_by_name(UCLASS_CLK, parent_name, &parent);
Peng Fan5dcac2b2019-10-22 03:31:08 +000024 if (ret) {
Dario Binacchi7b0830d2020-05-02 17:38:11 +020025 printf("%s: failed to get %s device (parent of %s)\n",
26 __func__, parent_name, name);
27 } else {
28 debug("%s: name: %s parent: %s [0x%p]\n", __func__, name,
29 parent->name, parent);
Peng Fan5dcac2b2019-10-22 03:31:08 +000030 }
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020031
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020032 drv = lists_driver_lookup_name(drv_name);
33 if (!drv) {
34 printf("%s: %s is not a valid driver name\n",
35 __func__, drv_name);
36 return -ENOENT;
37 }
38
Simon Glassa2703ce2020-11-28 17:50:03 -070039 ret = device_bind(parent, drv, name, NULL, ofnode_null(), &clk->dev);
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020040 if (ret) {
41 printf("%s: CLK: %s driver bind error [%d]!\n", __func__, name,
42 ret);
43 return ret;
44 }
45
Peng Fane6849e22019-08-21 13:35:03 +000046 clk->enable_count = 0;
Simon Glass0fd3d912020-12-22 19:30:28 -070047
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020048 /* Store back pointer to clk from udevice */
Simon Glass0fd3d912020-12-22 19:30:28 -070049 /* FIXME: This is not allowed...should be allocated by driver model */
50 dev_set_uclass_priv(clk->dev, clk);
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020051
52 return 0;
53}
54
55ulong clk_generic_get_rate(struct clk *clk)
56{
57 return clk_get_parent_rate(clk);
58}
59
60const char *clk_hw_get_name(const struct clk *hw)
61{
Claudiu Bezneab04da9f2020-09-07 17:46:32 +030062 assert(hw);
63 assert(hw->dev);
64
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020065 return hw->dev->name;
66}
Peng Fan24576122019-07-31 07:01:23 +000067
68bool clk_dev_binded(struct clk *clk)
69{
Simon Glass73466df2020-12-19 10:40:10 -070070 if (clk->dev && (dev_get_flags(clk->dev) & DM_FLAG_BOUND))
Peng Fan24576122019-07-31 07:01:23 +000071 return true;
72
73 return false;
74}