Re: OF properties access ?
From: Sven Luther <hidden>
Date: 2004-01-18 15:05:02
On Sun, Jan 18, 2004 at 03:51:58PM +0100, Sven Luther wrote:
void pegasos_set_l2cr(void)
{
struct device_node *root = find_path_device("/");
char *machine;
struct device_node *np;
int l2cr_value;
/* On Pegasos, enable the l2 cache if needed, as the OF forgets * it */
if (root == NULL) return;
machine = get_property(root, "model", NULL);
if (machine == NULL) return;
if (strncmp(machine, "Pegasos", 7) == 0) {
/* Enable L2 cache if needed */
np = find_devices ("cpus");
if (np == NULL)
np = find_type_devices("cpu");
if (np != NULL) {
unsigned int *l2cr = (unsigned int *)
get_property (np, "l2cr", NULL);
if (l2cr == NULL) return;
l2cr_value = *l2cr;
if (!(l2cr_value & 0x80000000)) {
_set_L2CR(0);
_set_L2CR(l2cr_value | 0x80000000);
}
}
}
}Further tests show me that it is the if (l2cr == NULL) return; tests which aborts the test. Any idea what is going on here. Clearly we did read the right cpus, but it is not possible to read the "l2cr" property. Friendly, Sven Luther ** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/