upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
941 B
45 lines
941 B
/*
|
|
* Copyright (C) STMicroelectronics SA 2017
|
|
* Author(s): Patrice CHOTARD, <patrice.chotard@st.com> for STMicroelectronics.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <misc.h>
|
|
#include <dm/lists.h>
|
|
|
|
static int stm32_rcc_bind(struct udevice *dev)
|
|
{
|
|
int ret;
|
|
struct udevice *child;
|
|
|
|
debug("%s(dev=%p)\n", __func__, dev);
|
|
|
|
ret = device_bind_driver_to_node(dev, "stm32h7_rcc_clock",
|
|
"stm32h7_rcc_clock",
|
|
dev_ofnode(dev), &child);
|
|
if (ret)
|
|
return ret;
|
|
|
|
return device_bind_driver_to_node(dev, "stm32_rcc_reset",
|
|
"stm32_rcc_reset",
|
|
dev_ofnode(dev), &child);
|
|
}
|
|
|
|
static const struct misc_ops stm32_rcc_ops = {
|
|
};
|
|
|
|
static const struct udevice_id stm32_rcc_ids[] = {
|
|
{.compatible = "st,stm32h743-rcc"},
|
|
{ }
|
|
};
|
|
|
|
U_BOOT_DRIVER(stm32_rcc) = {
|
|
.name = "stm32-rcc",
|
|
.id = UCLASS_MISC,
|
|
.of_match = stm32_rcc_ids,
|
|
.bind = stm32_rcc_bind,
|
|
.ops = &stm32_rcc_ops,
|
|
};
|
|
|