public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: "Álvaro Fernández Rojas" <noltari@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/1] dm: core: add functions to get/remap I/O addresses by name
Date: Fri, 30 Nov 2018 18:10:19 +0100	[thread overview]
Message-ID: <d18d65bb-be35-42f4-00e9-00c43cfdc133@gmail.com> (raw)
In-Reply-To: <2599b07f-3f92-e9d1-c923-b04e4de8bf85@gmail.com>

Hi Daniel,

El 30/11/2018 a las 14:29, Daniel Schwierzeck escribió:
>
> Am 29.11.18 um 20:57 schrieb Álvaro Fernández Rojas:
>> Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
>> ---
>>   drivers/core/fdtaddr.c | 10 ++++++++++
>>   drivers/core/read.c    | 20 ++++++++++++++++++++
>>   include/dm/fdtaddr.h   | 13 +++++++++++++
>>   include/dm/read.h      | 36 ++++++++++++++++++++++++++++++++++++
>>   4 files changed, 79 insertions(+)
> nice, but I guess Simon will insist on some tests in test/dm/test-fdt.c.
>
> You could copy and adapt dm_test_fdt_remap_addr_flat() and
> dm_test_fdt_remap_addr_live().

Ok, I will send a new version with the suggested test.


>
>> diff --git a/drivers/core/fdtaddr.c b/drivers/core/fdtaddr.c
>> index bfd9580050..e113f1dd39 100644
>> --- a/drivers/core/fdtaddr.c
>> +++ b/drivers/core/fdtaddr.c
>> @@ -146,6 +146,16 @@ void *devfdt_remap_addr_index(struct udevice *dev, int index)
>>   	return map_physmem(addr, 0, MAP_NOCACHE);
>>   }
>>   
>> +void *devfdt_remap_addr_name(struct udevice *dev, const char *name)
>> +{
>> +	fdt_addr_t addr = devfdt_get_addr_name(dev, name);
>> +
>> +	if (addr == FDT_ADDR_T_NONE)
>> +		return NULL;
>> +
>> +	return map_physmem(addr, 0, MAP_NOCACHE);
>> +}
>> +
>>   void *devfdt_remap_addr(struct udevice *dev)
>>   {
>>   	return devfdt_remap_addr_index(dev, 0);
>> diff --git a/drivers/core/read.c b/drivers/core/read.c
>> index 96766c7876..cdd78be03e 100644
>> --- a/drivers/core/read.c
>> +++ b/drivers/core/read.c
>> @@ -69,6 +69,26 @@ void *dev_remap_addr_index(struct udevice *dev, int index)
>>   	return map_physmem(addr, 0, MAP_NOCACHE);
>>   }
>>   
>> +fdt_addr_t dev_read_addr_name(struct udevice *dev, const char *name)
>> +{
>> +	int index = dev_read_stringlist_search(dev, "reg-names", name);
>> +
>> +	if (index < 0)
>> +		return FDT_ADDR_T_NONE;
>> +	else
>> +		return dev_read_addr_index(dev, index);
>> +}
>> +
>> +void *dev_remap_addr_name(struct udevice *dev, const char *name)
>> +{
>> +	fdt_addr_t addr = dev_read_addr_name(dev, name);
>> +
>> +	if (addr == FDT_ADDR_T_NONE)
>> +		return NULL;
>> +
>> +	return map_physmem(addr, 0, MAP_NOCACHE);
>> +}
>> +
>>   fdt_addr_t dev_read_addr(struct udevice *dev)
>>   {
>>   	return dev_read_addr_index(dev, 0);
>> diff --git a/include/dm/fdtaddr.h b/include/dm/fdtaddr.h
>> index 49a6ffd5f8..c171d9bc2f 100644
>> --- a/include/dm/fdtaddr.h
>> +++ b/include/dm/fdtaddr.h
>> @@ -56,6 +56,19 @@ void *devfdt_remap_addr(struct udevice *dev);
>>   void *devfdt_remap_addr_index(struct udevice *dev, int index);
>>   
>>   /**
>> + * devfdt_remap_addr_name() - Get the reg property of a device, indexed by
>> + *                            name, as a memory-mapped I/O pointer
>> + * @name: the 'reg' property can hold a list of <addr, size> pairs, with the
>> + *	  'reg-names' property providing named-based identification. @index
>> + *	  indicates the value to search for in 'reg-names'.
>> + *
>> + * @dev: Pointer to a device
>> + *
>> + * @return Pointer to addr, or NULL if there is no such property
>> + */
>> +void *devfdt_remap_addr_name(struct udevice *dev, const char *name);
>> +
>> +/**
>>    * devfdt_map_physmem() - Read device address from reg property of the
>>    *                     device node and map the address into CPU address
>>    *                     space.
>> diff --git a/include/dm/read.h b/include/dm/read.h
>> index a27b8554fb..efcbee15ec 100644
>> --- a/include/dm/read.h
>> +++ b/include/dm/read.h
>> @@ -125,6 +125,31 @@ fdt_addr_t dev_read_addr_index(struct udevice *dev, int index);
>>   void *dev_remap_addr_index(struct udevice *dev, int index);
>>   
>>   /**
>> + * dev_read_addr_name() - Get the reg property of a device, indexed by name
>> + *
>> + * @dev: Device to read from
>> + * @name: the 'reg' property can hold a list of <addr, size> pairs, with the
>> + *	  'reg-names' property providing named-based identification. @index
>> + *	  indicates the value to search for in 'reg-names'.
>> + *
>> + * @return address or FDT_ADDR_T_NONE if not found
>> + */
>> +fdt_addr_t dev_read_addr_name(struct udevice *dev, const char* name);
>> +
>> +/**
>> + * dev_remap_addr_name() - Get the reg property of a device, indexed by name,
>> + *                         as a memory-mapped I/O pointer
>> + *
>> + * @dev: Device to read from
>> + * @name: the 'reg' property can hold a list of <addr, size> pairs, with the
>> + *	  'reg-names' property providing named-based identification. @index
>> + *	  indicates the value to search for in 'reg-names'.
>> + *
>> + * @return pointer or NULL if not found
>> + */
>> +void *dev_remap_addr_name(struct udevice *dev, const char* name);
>> +
>> +/**
>>    * dev_read_addr() - Get the reg property of a device
>>    *
>>    * @dev: Device to read from
>> @@ -494,6 +519,12 @@ static inline fdt_addr_t dev_read_addr_index(struct udevice *dev, int index)
>>   	return devfdt_get_addr_index(dev, index);
>>   }
>>   
>> +static inline fdt_addr_t dev_read_addr_name(struct udevice *dev,
>> +					    const char *name)
>> +{
>> +	return devfdt_get_addr_name(dev, name);
>> +}
>> +
>>   static inline fdt_addr_t dev_read_addr(struct udevice *dev)
>>   {
>>   	return devfdt_get_addr(dev);
>> @@ -514,6 +545,11 @@ static inline void *dev_remap_addr_index(struct udevice *dev, int index)
>>   	return devfdt_remap_addr_index(dev, index);
>>   }
>>   
>> +static inline void *dev_remap_addr_name(struct udevice *dev, const char *name)
>> +{
>> +	return devfdt_remap_addr_name(dev, name);
>> +}
>> +
>>   static inline fdt_addr_t dev_read_addr_size(struct udevice *dev,
>>   					    const char *propname,
>>   					    fdt_size_t *sizep)
>>

  reply	other threads:[~2018-11-30 17:10 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-29 19:57 [U-Boot] [PATCH 1/1] dm: core: add functions to get/remap I/O addresses by name Álvaro Fernández Rojas
2018-11-30 13:29 ` Daniel Schwierzeck
2018-11-30 17:10   ` Álvaro Fernández Rojas [this message]
2018-12-01 19:31 ` [U-Boot] [PATCH v2 " Álvaro Fernández Rojas
2018-12-03 18:20   ` Simon Glass
2018-12-03 18:37   ` [U-Boot] [PATCH v3 " Álvaro Fernández Rojas
2018-12-03 20:18     ` Daniel Schwierzeck
2018-12-03 23:44     ` Simon Glass
2018-12-05 23:10       ` sjg at google.com

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d18d65bb-be35-42f4-00e9-00c43cfdc133@gmail.com \
    --to=noltari@gmail.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox