Changeset daea4bf in mainline
- Timestamp:
- 2006-02-18T15:33:05Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8b80b72
- Parents:
- 052da81
- Location:
- arch/mips32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/include/drivers/arc.h
r052da81 rdaea4bf 37 37 /* Frame size used by ARC */ 38 38 #define ARC_FRAME 4096 39 40 typedef enum { 41 CmResourceTypeNull = 0, 42 CmResourceTypePort, 43 CmResourceTypeInterrupt, 44 CmResourceTypeMemory, 45 CmResourceTypeDma, 46 CmResourceTypeDeviceSpecific, 47 CmResourceTypeVendor, 48 CmResourceTypeProductName, 49 CmResourceTypeSerialNumber 50 }cm_resource_type; 51 52 typedef struct { 53 __u8 type; 54 __u8 sharedisposition; 55 __u16 flags; 56 union { 57 struct { 58 long long start; /* 64-bit phys address */ 59 unsigned long length; 60 }port; 61 struct { 62 unsigned long level; 63 unsigned long vector; 64 unsigned long reserved1; 65 }interrupt; 66 struct { 67 long long start; /* 64-bit phys address */ 68 unsigned long length; 69 }memory; 70 }u; 71 }__attribute__ ((packed)) cm_resource_descriptor; 72 73 typedef struct { 74 __u16 version; 75 __u16 revision; 76 unsigned long count; 77 cm_resource_descriptor descr[1]; 78 }__attribute__ ((packed)) cm_resource_list; 39 79 40 80 typedef enum { … … 212 252 213 253 extern int arc_init(void); 214 extern void arc_print_memory_map(void);215 254 extern int arc_enabled(void); 216 extern void arc_print_devices(void);217 255 void arc_frame_init(void); 218 256 void arc_console(void); -
arch/mips32/src/drivers/arc.c
r052da81 rdaea4bf 39 39 #include <console/kconsole.h> 40 40 #include <console/cmd.h> 41 #include <mm/slab.h> 41 42 42 43 /* This is a good joke, SGI HAS different types than NT bioses... */ … … 112 113 } 113 114 115 116 /** Print configuration data that ARC reports about component */ 117 static void arc_print_confdata(arc_component *c) 118 { 119 cm_resource_list *configdata; 120 int i; 121 122 if (!c->configdatasize) 123 return; /* No configuration data */ 124 125 configdata = malloc(c->configdatasize, 0); 126 127 if (arc_entry->getconfigurationdata(configdata, c)) { 128 free(configdata); 129 return; 130 } 131 /* Does not seem to return meaningful data, don't use now */ 132 free(configdata); 133 return; 134 135 for (i=0; i < configdata->count; i++) { 136 switch (configdata->descr[i].type) { 137 case CmResourceTypePort: 138 printf("Port: %P-size:%d ", 139 (__address)configdata->descr[i].u.port.start, 140 configdata->descr[i].u.port.length); 141 break; 142 case CmResourceTypeInterrupt: 143 printf("Irq: level(%d) vector(%d) ", 144 configdata->descr[i].u.interrupt.level, 145 configdata->descr[i].u.interrupt.vector); 146 break; 147 case CmResourceTypeMemory: 148 printf("Memory: %P-size:%d ", 149 (__address)configdata->descr[i].u.port.start, 150 configdata->descr[i].u.port.length); 151 break; 152 default: 153 break; 154 } 155 } 156 157 free(configdata); 158 } 159 160 /** Print information about component */ 114 161 static void arc_print_component(arc_component *c) 115 162 { … … 118 165 printf("%s: ",ctypes[c->type]); 119 166 for (i=0;i < c->identifier_len;i++) 120 arc_putchar(c->identifier[i]); 121 arc_putchar('\n'); 122 } 123 124 void arc_print_devices(void) 167 printf("%c",c->identifier[i]); 168 169 printf(" "); 170 arc_print_confdata(c); 171 printf("\n"); 172 } 173 174 /** 175 * Read from ARC bios configuration data and print it 176 */ 177 static int cmd_arc_print_devices(cmd_arg_t *argv) 125 178 { 126 179 arc_component *c,*next; 127 128 if (!arc_enabled())129 return;130 180 131 181 c = arc_entry->getchild(NULL); … … 138 188 c = arc_entry->getparent(c); 139 189 if (!c) 140 return ;190 return 0; 141 191 } 142 192 c = next; 143 193 } 144 } 145 146 void arc_print_memory_map(void) 194 return 1; 195 } 196 static cmd_info_t devlist_info = { 197 .name = "arcdevlist", 198 .description = "Print arc device list", 199 .func = cmd_arc_print_devices, 200 .argc = 0 201 }; 202 203 204 /** Read from arc bios memory map and print it 205 * 206 */ 207 static int cmd_arc_print_memmap(cmd_arg_t *argv) 147 208 { 148 209 arc_memdescriptor_t *desc; 149 150 if (!arc_enabled())151 return;152 210 153 211 printf("Memory map:\n"); … … 161 219 desc = arc_entry->getmemorydescriptor(desc); 162 220 } 163 } 221 return 1; 222 } 223 static cmd_info_t memmap_info = { 224 .name = "arcmemmap", 225 .description = "Print arc memory map", 226 .func = cmd_arc_print_memmap, 227 .argc = 0 228 }; 164 229 165 230 /** Print charactor to console */ … … 208 273 cmd_initialize(&reboot_info); 209 274 cmd_register(&reboot_info); 275 cmd_initialize(&memmap_info); 276 cmd_register(&memmap_info); 277 cmd_initialize(&devlist_info); 278 cmd_register(&devlist_info); 210 279 211 280 return 0; -
arch/mips32/src/mips32.c
r052da81 rdaea4bf 94 94 console_init(); 95 95 debugger_init(); 96 arc_print_memory_map();97 arc_print_devices();98 96 /* Setup usermode...*/ 99 97 config.init_addr = INIT_ADDRESS;
Note:
See TracChangeset
for help on using the changeset viewer.