Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 349135
b: refs/heads/master
c: 5266629
h: refs/heads/master
i:
  349133: d1ba76f
  349131: e0a9ccf
  349127: 8b36d83
  349119: 4d54a36
v: v3
  • Loading branch information
Pawel Moll committed Jan 24, 2013
1 parent 00fde9c commit 9683aef
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ab838bc9c2b9b3afc64d92928dfae9e09fa5b467
refs/heads/master: 52666298aebe5e9ab28a773ee61d2ce81fa097bb
32 changes: 20 additions & 12 deletions trunk/drivers/mfd/vexpress-sysreg.c
Original file line number Diff line number Diff line change
Expand Up @@ -313,19 +313,11 @@ static void vexpress_sysreg_config_complete(unsigned long data)
}


void __init vexpress_sysreg_early_init(void __iomem *base)
void __init vexpress_sysreg_setup(struct device_node *node)
{
struct device_node *node = of_find_compatible_node(NULL, NULL,
"arm,vexpress-sysreg");

if (node)
base = of_iomap(node, 0);

if (WARN_ON(!base))
if (WARN_ON(!vexpress_sysreg_base))
return;

vexpress_sysreg_base = base;

if (readl(vexpress_sysreg_base + SYS_MISC) & SYS_MISC_MASTERSITE)
vexpress_master_site = VEXPRESS_SITE_DB2;
else
Expand All @@ -336,9 +328,23 @@ void __init vexpress_sysreg_early_init(void __iomem *base)
WARN_ON(!vexpress_sysreg_config_bridge);
}

void __init vexpress_sysreg_early_init(void __iomem *base)
{
vexpress_sysreg_base = base;
vexpress_sysreg_setup(NULL);
}

void __init vexpress_sysreg_of_early_init(void)
{
vexpress_sysreg_early_init(NULL);
struct device_node *node = of_find_compatible_node(NULL, NULL,
"arm,vexpress-sysreg");

if (node) {
vexpress_sysreg_base = of_iomap(node, 0);
vexpress_sysreg_setup(node);
} else {
pr_info("vexpress-sysreg: No Device Tree node found.");
}
}


Expand Down Expand Up @@ -426,9 +432,11 @@ static int vexpress_sysreg_probe(struct platform_device *pdev)
return -EBUSY;
}

if (!vexpress_sysreg_base)
if (!vexpress_sysreg_base) {
vexpress_sysreg_base = devm_ioremap(&pdev->dev, res->start,
resource_size(res));
vexpress_sysreg_setup(pdev->dev.of_node);
}

if (!vexpress_sysreg_base) {
dev_err(&pdev->dev, "Failed to obtain base address!\n");
Expand Down

0 comments on commit 9683aef

Please sign in to comment.