ata: Use of_property_read_reg() to parse "reg"

Use the recently added of_property_read_reg() helper to get the
untranslated "reg" address value.

Signed-off-by: Rob Herring <robh@kernel.org>
Reviewed-by: Sergey Shtylyov <s.shtylyov@omp.ru>
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
This commit is contained in:
Rob Herring 2023-06-09 12:31:25 -06:00 committed by Damien Le Moal
parent 43cff7d943
commit d0b2461678
2 changed files with 14 additions and 20 deletions

View File

@ -804,9 +804,7 @@ static int octeon_cf_probe(struct platform_device *pdev)
struct resource *res_cs0, *res_cs1; struct resource *res_cs0, *res_cs1;
bool is_16bit; bool is_16bit;
const __be32 *cs_num; u64 reg;
struct property *reg_prop;
int n_addr, n_size, reg_len;
struct device_node *node; struct device_node *node;
void __iomem *cs0; void __iomem *cs0;
void __iomem *cs1 = NULL; void __iomem *cs1 = NULL;
@ -834,15 +832,10 @@ static int octeon_cf_probe(struct platform_device *pdev)
else else
is_16bit = false; is_16bit = false;
n_addr = of_n_addr_cells(node); rv = of_property_read_reg(node, 0, &reg, NULL);
n_size = of_n_size_cells(node); if (rv < 0)
return rv;
reg_prop = of_find_property(node, "reg", &reg_len); cf_port->cs0 = upper_32_bits(reg);
if (!reg_prop || reg_len < sizeof(__be32))
return -EINVAL;
cs_num = reg_prop->value;
cf_port->cs0 = be32_to_cpup(cs_num);
if (cf_port->is_true_ide) { if (cf_port->is_true_ide) {
struct device_node *dma_node; struct device_node *dma_node;
@ -884,13 +877,12 @@ static int octeon_cf_probe(struct platform_device *pdev)
cs1 = devm_ioremap(&pdev->dev, res_cs1->start, cs1 = devm_ioremap(&pdev->dev, res_cs1->start,
resource_size(res_cs1)); resource_size(res_cs1));
if (!cs1) if (!cs1)
return rv;
if (reg_len < (n_addr + n_size + 1) * sizeof(__be32))
return -EINVAL; return -EINVAL;
cs_num += n_addr + n_size; rv = of_property_read_reg(node, 1, &reg, NULL);
cf_port->cs1 = be32_to_cpup(cs_num); if (rv < 0)
return rv;
cf_port->cs1 = upper_32_bits(reg);
} }
res_cs0 = platform_get_resource(pdev, IORESOURCE_MEM, 0); res_cs0 = platform_get_resource(pdev, IORESOURCE_MEM, 0);

View File

@ -32,6 +32,7 @@
#include <scsi/scsi.h> #include <scsi/scsi.h>
#include <linux/libata.h> #include <linux/libata.h>
#include <linux/of.h> #include <linux/of.h>
#include <linux/of_address.h>
#define DRV_NAME "sata_svw" #define DRV_NAME "sata_svw"
#define DRV_VERSION "2.3" #define DRV_VERSION "2.3"
@ -319,10 +320,11 @@ static int k2_sata_show_info(struct seq_file *m, struct Scsi_Host *shost)
/* Match it to a port node */ /* Match it to a port node */
index = (ap == ap->host->ports[0]) ? 0 : 1; index = (ap == ap->host->ports[0]) ? 0 : 1;
for (np = np->child; np != NULL; np = np->sibling) { for (np = np->child; np != NULL; np = np->sibling) {
const u32 *reg = of_get_property(np, "reg", NULL); u64 reg;
if (!reg)
if (of_property_read_reg(np, 0, &reg, NULL))
continue; continue;
if (index == *reg) { if (index == reg) {
seq_printf(m, "devspec: %pOF\n", np); seq_printf(m, "devspec: %pOF\n", np);
break; break;
} }