Chameleon

Chameleon Svn Source Tree

Root/branches/cparm/i386/libsaio/device_inject.h

1/*
2 *Copyright 2009 Jasmin Fazlic All rights reserved.
3 */
4/*
5 *Cleaned and merged by iNDi
6 */
7
8#ifndef __LIBSAIO_DEVICE_INJECT_H
9#define __LIBSAIO_DEVICE_INJECT_H
10
11#define DP_ADD_TEMP_VAL(dev, val) devprop_add_value(dev, (char*)val[0], (uint8_t*)val[1], strlen(val[1]) + 1)
12#define DP_ADD_TEMP_VAL_DATA(dev, val) devprop_add_value(dev, (char*)val.name, (uint8_t*)val.data, val.size)
13#define MAX_PCI_DEV_PATHS 4
14
15extern struct DevPropString *string;
16extern uint8_t *stringdata;
17extern uint32_t stringlength;
18extern uint32_t devices_number;
19extern void setupDeviceProperties(Node *node);
20
21#define DEV_PATH_HEADER\
22uint8_ttype;\
23uint8_tsubtype;\
24uint16_tlength;
25
26struct ACPIDevPath {
27//uint8_ttype;// = 2 ACPI device-path
28//uint8_tsubtype;// = 1 ACPI Device-path
29//uint16_t length;// = 0x0c
30DEV_PATH_HEADER
31uint32_t_HID;// = 0xD041030A ?
32uint32_t_UID;// = 0x00000000 PCI ROOT
33};
34
35struct PCIDevPath {
36//uint8_ttype;// = 1 Hardware device-path
37//uint8_tsubtype;// = 1 PCI
38//uint16_t length;// = 6
39DEV_PATH_HEADER
40uint8_tfunction;// pci func number
41uint8_tdevice;// pci dev number
42};
43
44struct DevicePathEnd {
45//uint8_ttype;// = 0x7f
46//uint8_tsubtype;// = 0xff
47//uint16_tlength;// = 4;
48DEV_PATH_HEADER
49};
50
51struct DevPropDevice {
52uint32_t length;
53uint16_t numentries;
54uint16_t WHAT2;// 0x0000 ?
55struct ACPIDevPath acpi_dev_path;// = 0x02010c00 0xd041030a
56struct PCIDevPath pci_dev_path[MAX_PCI_DEV_PATHS]; // = 0x01010600 func dev
57struct DevicePathEnd path_end;// = 0x7fff0400
58uint8_t *data;
59
60// ------------------------
61uint8_t num_pci_devpaths;
62struct DevPropString *string;
63// ------------------------
64};
65
66struct DevPropString {
67uint32_t length;
68uint32_t WHAT2;// 0x01000000 ?
69uint16_t numentries;
70uint16_t WHAT3;// 0x0000 ?
71struct DevPropDevice **entries;
72};
73
74char*efi_inject_get_devprop_string(uint32_t *len);
75//intdevprop_add_network_template(struct DevPropDevice *device, uint16_t vendor_id);
76struct DevPropString*devprop_create_string(void);
77struct DevPropDevice*devprop_add_device(struct DevPropString *string, char *path);
78intdevprop_add_value(struct DevPropDevice *device, char *nm, uint8_t *vl, uint32_t len);
79char*devprop_generate_string(struct DevPropString *string);
80voiddevprop_free_string(struct DevPropString *string);
81
82#endif /* !__LIBSAIO_DEVICE_INJECT_H */
83

Archive Download this file

Revision: 1804