The structure members of cs_ddi_info_t are:
|
uint32_t Socket; /* socket number */
char* driver_name; /* unique driver name */
dev_info_t *dip; /* dip */
int32_t instance; /* instance */
|
The fields are defined as follows:
-
Socket
- This field must be set to the physical socket number that the client is interested in getting
information about.
-
driver_name
- This field must be set to a string containing the name of the client driver to get information about.
If csx_CS_DDI_Info() is used in a client's xx_getinfo function, then the client will typically extract the Socket value from the *arg argument and it must set the driver_name field to the same string used with csx_RegisterClient(9F).
If the driver_name is found on the Socket, the csx_CS_DDI_Info() function returns both the dev_info pointer and the instance fields for the requested driver instance.
|