1 /* This file is part of the program psim.
3 Copyright (C) 1994-1996, Andrew Cagney <cagney@highland.com.au>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 #ifndef _HW_REGISTER_C_
23 #define _HW_REGISTER_C_
25 #include "device_table.h"
31 register - dummy device to initialize processor registers
35 The properties of this device are used, during initialization, to
36 specify the initial value of various processor registers. The
37 property name specifying the register to be initialized with the
38 special form <cpu-nr>.<register> being used to initialize a
39 specific processor's register (eg 0.pc).
41 Because, when the device tree is created, overriding properties are
42 entered into the tree before any default values, this device must
43 initialize registers in newest (default) to oldest (overriding)
46 The actual registers (for a given target) are defined in the file
49 This device is normally a child of the /openprom/init node.
53 Given a device tree containing the entry:
55 | /openprom/init/register/pc 0xfff00cf0
57 then specifying the command line option:
59 | -o '/openprom/init/register/pc 0x0'
61 would override the initial value of processor zero's program
62 counter. The resultant device tree tree containing:
64 | /openprom/init/register/0.pc 0x0
65 | /openprom/init/register/pc 0xfff00cf0
67 and would be processed last to first resulting in the sequence: set
68 all program counters to 0xfff00cf0; set processor zero's program
72 do_register_init(device *me,
73 const device_property *prop)
75 psim *system = device_system(me);
77 const char *name = prop->name;
78 unsigned32 value = device_find_integer_property(me, name);
81 do_register_init(me, device_next_property(prop));
83 if (strchr(name, '.') == NULL) {
85 DTRACE(register, ("%s=0x%lx\n", name, (unsigned long)value));
89 processor = strtoul(name, &end, 0);
90 ASSERT(end[0] == '.');
92 DTRACE(register, ("%d.%s=0x%lx\n", processor, name,
93 (unsigned long)value));
95 psim_write_register(system, processor, /* all processors */
104 register_init_data_callback(device *me)
106 const device_property *prop = device_find_property(me, NULL);
107 do_register_init(me, prop);
111 static device_callbacks const register_callbacks = {
112 { NULL, register_init_data_callback, },
113 { NULL, }, /* address */
116 { NULL, }, /* interrupt */
117 { NULL, }, /* unit */
120 const device_descriptor hw_register_device_descriptor[] = {
121 { "register", NULL, ®ister_callbacks },
125 #endif _HW_REGISTER_C_