2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-07-20 09:55:12 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Atmel Corporation
|
|
|
|
* Wenyou.Yang <wenyou.yang@atmel.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <clk-uclass.h>
|
2017-05-17 23:18:03 +00:00
|
|
|
#include <dm.h>
|
2016-07-20 09:55:12 +00:00
|
|
|
#include <dm/lists.h>
|
2017-02-18 18:46:21 +00:00
|
|
|
#include <dm/util.h>
|
2016-07-20 09:55:12 +00:00
|
|
|
#include "pmc.h"
|
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
static const struct udevice_id at91_pmc_match[] = {
|
2017-04-14 06:53:24 +00:00
|
|
|
{ .compatible = "atmel,at91rm9200-pmc" },
|
|
|
|
{ .compatible = "atmel,at91sam9260-pmc" },
|
|
|
|
{ .compatible = "atmel,at91sam9g45-pmc" },
|
|
|
|
{ .compatible = "atmel,at91sam9n12-pmc" },
|
|
|
|
{ .compatible = "atmel,at91sam9x5-pmc" },
|
|
|
|
{ .compatible = "atmel,sama5d3-pmc" },
|
2016-07-20 09:55:12 +00:00
|
|
|
{ .compatible = "atmel,sama5d2-pmc" },
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(at91_pmc) = {
|
2016-09-13 02:25:55 +00:00
|
|
|
.name = "at91-pmc",
|
|
|
|
.id = UCLASS_SIMPLE_BUS,
|
2016-07-20 09:55:12 +00:00
|
|
|
.of_match = at91_pmc_match,
|
|
|
|
};
|
|
|
|
|
2016-09-27 03:00:29 +00:00
|
|
|
/*---------------------------------------------------------*/
|
|
|
|
|
2016-07-20 09:55:12 +00:00
|
|
|
int at91_pmc_core_probe(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct pmc_platdata *plat = dev_get_platdata(dev);
|
|
|
|
|
|
|
|
dev = dev_get_parent(dev);
|
|
|
|
|
2017-05-17 23:18:05 +00:00
|
|
|
plat->reg_base = (struct at91_pmc *)devfdt_get_addr_ptr(dev);
|
2016-07-20 09:55:12 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-27 03:00:29 +00:00
|
|
|
/**
|
|
|
|
* at91_clk_sub_device_bind() - for the at91 clock driver
|
|
|
|
* Recursively bind its children as clk devices.
|
|
|
|
*
|
|
|
|
* @return: 0 on success, or negative error code on failure
|
|
|
|
*/
|
|
|
|
int at91_clk_sub_device_bind(struct udevice *dev, const char *drv_name)
|
2016-07-20 09:55:12 +00:00
|
|
|
{
|
|
|
|
const void *fdt = gd->fdt_blob;
|
2017-01-17 23:52:55 +00:00
|
|
|
int offset = dev_of_offset(dev);
|
2016-09-27 03:00:29 +00:00
|
|
|
bool pre_reloc_only = !(gd->flags & GD_FLG_RELOC);
|
2016-07-20 09:55:12 +00:00
|
|
|
const char *name;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
for (offset = fdt_first_subnode(fdt, offset);
|
|
|
|
offset > 0;
|
|
|
|
offset = fdt_next_subnode(fdt, offset)) {
|
2016-09-27 03:00:29 +00:00
|
|
|
if (pre_reloc_only &&
|
2020-04-03 09:39:18 +00:00
|
|
|
!ofnode_pre_reloc(offset_to_ofnode(offset)))
|
2016-09-27 03:00:29 +00:00
|
|
|
continue;
|
|
|
|
/*
|
|
|
|
* If this node has "compatible" property, this is not
|
|
|
|
* a clock sub-node, but a normal device. skip.
|
|
|
|
*/
|
|
|
|
fdt_get_property(fdt, offset, "compatible", &ret);
|
|
|
|
if (ret >= 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (ret != -FDT_ERR_NOTFOUND)
|
|
|
|
return ret;
|
|
|
|
|
2016-07-20 09:55:12 +00:00
|
|
|
name = fdt_get_name(fdt, offset, NULL);
|
|
|
|
if (!name)
|
|
|
|
return -EINVAL;
|
2016-09-27 03:00:29 +00:00
|
|
|
ret = device_bind_driver_to_node(dev, drv_name, name,
|
2017-05-19 02:09:07 +00:00
|
|
|
offset_to_ofnode(offset), NULL);
|
2016-07-20 09:55:12 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-05-19 02:09:40 +00:00
|
|
|
int at91_clk_of_xlate(struct clk *clk, struct ofnode_phandle_args *args)
|
2016-09-27 03:00:29 +00:00
|
|
|
{
|
|
|
|
int periph;
|
|
|
|
|
|
|
|
if (args->args_count) {
|
|
|
|
debug("Invalid args_count: %d\n", args->args_count);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2017-01-17 23:52:55 +00:00
|
|
|
periph = fdtdec_get_uint(gd->fdt_blob, dev_of_offset(clk->dev), "reg",
|
|
|
|
-1);
|
2016-09-27 03:00:29 +00:00
|
|
|
if (periph < 0)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
clk->id = periph;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int at91_clk_probe(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct udevice *dev_periph_container, *dev_pmc;
|
|
|
|
struct pmc_platdata *plat = dev_get_platdata(dev);
|
|
|
|
|
|
|
|
dev_periph_container = dev_get_parent(dev);
|
|
|
|
dev_pmc = dev_get_parent(dev_periph_container);
|
|
|
|
|
2017-05-17 23:18:05 +00:00
|
|
|
plat->reg_base = (struct at91_pmc *)devfdt_get_addr_ptr(dev_pmc);
|
2016-09-27 03:00:29 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|