3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-15 03:35:55 +00:00
Brooklyn/arch/powerpc/sysdev/mpc5xxx_clocks.c

35 lines
818 B
C
Raw Normal View History

2022-04-02 18:08:56 +05:00
// SPDX-License-Identifier: GPL-2.0
#include <linux/kernel.h>
#include <linux/export.h>
2022-09-13 23:14:27 +05:00
#include <linux/property.h>
2022-04-02 18:08:56 +05:00
#include <asm/mpc5xxx.h>
2022-09-13 23:14:27 +05:00
/**
* mpc5xxx_fwnode_get_bus_frequency - Find the bus frequency for a firmware node
* @fwnode: firmware node
*
* Returns bus frequency (IPS on MPC512x, IPB on MPC52xx),
* or 0 if the bus frequency cannot be found.
*/
unsigned long mpc5xxx_fwnode_get_bus_frequency(struct fwnode_handle *fwnode)
2022-04-02 18:08:56 +05:00
{
2022-09-13 23:14:27 +05:00
struct fwnode_handle *parent;
u32 bus_freq;
int ret;
2022-04-02 18:08:56 +05:00
2022-09-13 23:14:27 +05:00
ret = fwnode_property_read_u32(fwnode, "bus-frequency", &bus_freq);
if (!ret)
return bus_freq;
2022-04-02 18:08:56 +05:00
2022-09-13 23:14:27 +05:00
fwnode_for_each_parent_node(fwnode, parent) {
ret = fwnode_property_read_u32(parent, "bus-frequency", &bus_freq);
if (!ret)
return bus_freq;
2022-04-02 18:08:56 +05:00
}
2022-09-13 23:14:27 +05:00
return 0;
2022-04-02 18:08:56 +05:00
}
2022-09-13 23:14:27 +05:00
EXPORT_SYMBOL(mpc5xxx_fwnode_get_bus_frequency);