2023-08-30 17:31:07 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* Marvell Armada AP and CP110 helper
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018 Marvell
|
|
|
|
*
|
|
|
|
* Gregory Clement <gregory.clement@bootlin.com>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "armada_ap_cp_helper.h"
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/of_address.h>
|
|
|
|
|
|
|
|
char *ap_cp_unique_name(struct device *dev, struct device_node *np,
|
|
|
|
const char *name)
|
|
|
|
{
|
2023-10-24 12:59:35 +02:00
|
|
|
struct resource res;
|
2023-08-30 17:31:07 +02:00
|
|
|
|
|
|
|
/* Do not create a name if there is no clock */
|
|
|
|
if (!name)
|
|
|
|
return NULL;
|
|
|
|
|
2023-10-24 12:59:35 +02:00
|
|
|
of_address_to_resource(np, 0, &res);
|
2023-08-30 17:31:07 +02:00
|
|
|
return devm_kasprintf(dev, GFP_KERNEL, "%llx-%s",
|
2023-10-24 12:59:35 +02:00
|
|
|
(unsigned long long)res.start, name);
|
2023-08-30 17:31:07 +02:00
|
|
|
}
|