Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 34116
b: refs/heads/master
c: a4dc7ff
h: refs/heads/master
v: v3
  • Loading branch information
Paul Mackerras committed Sep 20, 2006
1 parent f9dad13 commit 19ab979
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 27 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: 19e59df4dc2e6f7b46190ee77ce7093769f597a7
refs/heads/master: a4dc7ff08915a2035aa6d6decc53fa1deaa410bb
19 changes: 2 additions & 17 deletions trunk/arch/powerpc/kernel/prom.c
Original file line number Diff line number Diff line change
Expand Up @@ -757,24 +757,9 @@ static int __init early_init_dt_scan_root(unsigned long node,
static unsigned long __init dt_mem_next_cell(int s, cell_t **cellp)
{
cell_t *p = *cellp;
unsigned long r;

/* Ignore more than 2 cells */
while (s > sizeof(unsigned long) / 4) {
p++;
s--;
}
r = *p++;
#ifdef CONFIG_PPC64
if (s > 1) {
r <<= 32;
r |= *(p++);
s--;
}
#endif

*cellp = p;
return r;
*cellp = p + s;
return of_read_ulong(p, s);
}


Expand Down
13 changes: 8 additions & 5 deletions trunk/arch/powerpc/kernel/setup-common.c
Original file line number Diff line number Diff line change
Expand Up @@ -304,18 +304,21 @@ struct seq_operations cpuinfo_op = {
void __init check_for_initrd(void)
{
#ifdef CONFIG_BLK_DEV_INITRD
const unsigned long *prop;
const unsigned int *prop;
int len;

DBG(" -> check_for_initrd()\n");

if (of_chosen) {
prop = get_property(of_chosen, "linux,initrd-start", NULL);
prop = get_property(of_chosen, "linux,initrd-start", &len);
if (prop != NULL) {
initrd_start = (unsigned long)__va(*prop);
initrd_start = (unsigned long)
__va(of_read_ulong(prop, len / 4));
prop = get_property(of_chosen,
"linux,initrd-end", NULL);
"linux,initrd-end", &len);
if (prop != NULL) {
initrd_end = (unsigned long)__va(*prop);
initrd_end = (unsigned long)
__va(of_read_ulong(prop, len / 4));
initrd_below_start_ok = 1;
} else
initrd_start = 0;
Expand Down
4 changes: 1 addition & 3 deletions trunk/arch/powerpc/kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -870,9 +870,7 @@ static int __init get_freq(char *name, int cells, unsigned long *val)
fp = get_property(cpu, name, NULL);
if (fp) {
found = 1;
*val = 0;
while (cells--)
*val = (*val << 32) | *fp++;
*val = of_read_ulong(fp, cells);
}

of_node_put(cpu);
Expand Down
12 changes: 11 additions & 1 deletion trunk/include/asm-powerpc/prom.h
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ extern int release_OF_resource(struct device_node* node, int index);
*/


/* Helper to read a big number */
/* Helper to read a big number; size is in cells (not bytes) */
static inline u64 of_read_number(const u32 *cell, int size)
{
u64 r = 0;
Expand All @@ -206,6 +206,16 @@ static inline u64 of_read_number(const u32 *cell, int size)
return r;
}

/* Like of_read_number, but we want an unsigned long result */
#ifdef CONFIG_PPC32
static inline unsigned long of_read_ulong(const u32 *cell, int size)
{
return cell[size-1];
}
#else
#define of_read_ulong(cell, size) of_read_number(cell, size)
#endif

/* Translate an OF address block into a CPU physical address
*/
#define OF_BAD_ADDR ((u64)-1)
Expand Down

0 comments on commit 19ab979

Please sign in to comment.