Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 67472
b: refs/heads/master
c: a94b89a
h: refs/heads/master
v: v3
  • Loading branch information
Scott Wood authored and Kumar Gala committed Oct 4, 2007
1 parent 4734c75 commit 531ee77
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 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: bbc6fac387f09e46a372e4aadbc935cba5a6b463
refs/heads/master: a94b89a4813bddf85c052f8d04021688c5dfe0d7
10 changes: 4 additions & 6 deletions trunk/arch/powerpc/boot/cuboot-pq2.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include "stdio.h"
#include "cuboot.h"
#include "io.h"
#include "fsl-soc.h"

#define TARGET_CPM2
#define TARGET_HAS_ETH1
Expand Down Expand Up @@ -139,23 +140,20 @@ static void fixup_pci(void)
u32 *pci_regs[3];
u8 *soc_regs;
int i, len;
void *node, *parent_node, *soc_node;
void *node, *parent_node;
u32 naddr, nsize, mem_log2;

node = finddevice("/pci");
if (!node || !dt_is_compatible(node, "fsl,pq2-pci"))
return;

soc_node = finddevice("/soc");
if (!soc_node || !dt_is_compatible(soc_node, "fsl,pq2-soc"))
goto err;

for (i = 0; i < 3; i++)
if (!dt_xlate_reg(node, i,
(unsigned long *)&pci_regs[i], NULL))
goto err;

if (!dt_xlate_reg(soc_node, 0, (unsigned long *)&soc_regs, NULL))
soc_regs = (u8 *)fsl_get_immr();
if (!soc_regs)
goto err;

dt_get_reg_format(node, &naddr, &nsize);
Expand Down

0 comments on commit 531ee77

Please sign in to comment.