* [U-Boot] [PATCH] watchdog: bcm6345: convert to use live dt
@ 2018-03-17 11:23 Álvaro Fernández Rojas
2018-03-17 18:39 ` Daniel Schwierzeck
0 siblings, 1 reply; 3+ messages in thread
From: Álvaro Fernández Rojas @ 2018-03-17 11:23 UTC (permalink / raw)
To: u-boot
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
---
drivers/watchdog/bcm6345_wdt.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/watchdog/bcm6345_wdt.c b/drivers/watchdog/bcm6345_wdt.c
index 3ef7d438a6..90b33aadf1 100644
--- a/drivers/watchdog/bcm6345_wdt.c
+++ b/drivers/watchdog/bcm6345_wdt.c
@@ -87,13 +87,12 @@ static int bcm6345_wdt_probe(struct udevice *dev)
{
struct bcm6345_wdt_priv *priv = dev_get_priv(dev);
fdt_addr_t addr;
- fdt_size_t size;
- addr = devfdt_get_addr_size_index(dev, 0, &size);
+ addr = dev_read_addr(dev);
if (addr == FDT_ADDR_T_NONE)
return -EINVAL;
- priv->regs = ioremap(addr, size);
+ priv->regs = ioremap(addr, 0);
bcm6345_wdt_stop(dev);
--
2.11.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] watchdog: bcm6345: convert to use live dt
2018-03-17 11:23 [U-Boot] [PATCH] watchdog: bcm6345: convert to use live dt Álvaro Fernández Rojas
@ 2018-03-17 18:39 ` Daniel Schwierzeck
2018-03-19 17:59 ` Simon Glass
0 siblings, 1 reply; 3+ messages in thread
From: Daniel Schwierzeck @ 2018-03-17 18:39 UTC (permalink / raw)
To: u-boot
On 17.03.2018 12:23, Álvaro Fernández Rojas wrote:
> Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
> ---
> drivers/watchdog/bcm6345_wdt.c | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/watchdog/bcm6345_wdt.c b/drivers/watchdog/bcm6345_wdt.c
> index 3ef7d438a6..90b33aadf1 100644
> --- a/drivers/watchdog/bcm6345_wdt.c
> +++ b/drivers/watchdog/bcm6345_wdt.c
> @@ -87,13 +87,12 @@ static int bcm6345_wdt_probe(struct udevice *dev)
> {
> struct bcm6345_wdt_priv *priv = dev_get_priv(dev);
> fdt_addr_t addr;
> - fdt_size_t size;
>
> - addr = devfdt_get_addr_size_index(dev, 0, &size);
> + addr = dev_read_addr(dev);
> if (addr == FDT_ADDR_T_NONE)
> return -EINVAL;
>
> - priv->regs = ioremap(addr, size);
> + priv->regs = ioremap(addr, 0);
as this pattern is repeated in each driver which have to do such
remapping on archs like MIPS, I suggest to add generic wrapper functions
for this like:
void *dev_read_addr_and_remap_index(struct udevice *dev, int index)
void *dev_read_addr_and_remap(struct udevice *dev)
>
> bcm6345_wdt_stop(dev);
>
>
--
- Daniel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180317/86c0777d/attachment.sig>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] watchdog: bcm6345: convert to use live dt
2018-03-17 18:39 ` Daniel Schwierzeck
@ 2018-03-19 17:59 ` Simon Glass
0 siblings, 0 replies; 3+ messages in thread
From: Simon Glass @ 2018-03-19 17:59 UTC (permalink / raw)
To: u-boot
Hi.
On 17 March 2018 at 12:39, Daniel Schwierzeck
<daniel.schwierzeck@gmail.com> wrote:
>
>
> On 17.03.2018 12:23, Álvaro Fernández Rojas wrote:
>> Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
>> ---
>> drivers/watchdog/bcm6345_wdt.c | 5 ++---
>> 1 file changed, 2 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/watchdog/bcm6345_wdt.c b/drivers/watchdog/bcm6345_wdt.c
>> index 3ef7d438a6..90b33aadf1 100644
>> --- a/drivers/watchdog/bcm6345_wdt.c
>> +++ b/drivers/watchdog/bcm6345_wdt.c
>> @@ -87,13 +87,12 @@ static int bcm6345_wdt_probe(struct udevice *dev)
>> {
>> struct bcm6345_wdt_priv *priv = dev_get_priv(dev);
>> fdt_addr_t addr;
>> - fdt_size_t size;
>>
>> - addr = devfdt_get_addr_size_index(dev, 0, &size);
>> + addr = dev_read_addr(dev);
>> if (addr == FDT_ADDR_T_NONE)
>> return -EINVAL;
>>
>> - priv->regs = ioremap(addr, size);
>> + priv->regs = ioremap(addr, 0);
>
> as this pattern is repeated in each driver which have to do such
> remapping on archs like MIPS, I suggest to add generic wrapper functions
> for this like:
>
> void *dev_read_addr_and_remap_index(struct udevice *dev, int index)
>
> void *dev_read_addr_and_remap(struct udevice *dev)
Sounds like a good idea to me.
Regards,
Simon
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-03-19 17:59 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-17 11:23 [U-Boot] [PATCH] watchdog: bcm6345: convert to use live dt Álvaro Fernández Rojas
2018-03-17 18:39 ` Daniel Schwierzeck
2018-03-19 17:59 ` Simon Glass
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox