/Linux-v6.6/drivers/acpi/acpica/ |
D | nsprepkg.c | 4 * Module Name: nsprepkg - Validation of package objects for predefined names 21 const union acpi_predefined_info *package, 45 * DESCRIPTION: Check a returned package object for the correct count and 55 const union acpi_predefined_info *package; in acpi_ns_check_package() local 64 /* The package info for this name is in the next table entry */ in acpi_ns_check_package() 66 package = info->predefined + 1; in acpi_ns_check_package() 69 "%s Validating return Package of Type %X, Count %X\n", in acpi_ns_check_package() 70 info->full_pathname, package->ret_info.type, in acpi_ns_check_package() 71 return_object->package.count)); in acpi_ns_check_package() 75 * and trailing NULL package elements in acpi_ns_check_package() [all …]
|
D | dspkginit.c | 4 * Module Name: dspkginit - Completion of deferred package initialization 31 * element_count - Number of elements in the package - this is 32 * the num_elements argument to Package() 37 * DESCRIPTION: Translate a parser Op package object to the equivalent 40 * NOTE: The number of elements in the package will be always be the num_elements 41 * count, regardless of the number of elements in the package list. If 42 * num_elements is smaller, only that many package list elements are used. 43 * if num_elements is larger, the Package object is padded out with 47 * than the Package list length (for the fixed length package opcode), some 77 /* Find the parent of a possibly nested package */ in acpi_ds_build_internal_package_obj() [all …]
|
D | nsrepair.c | 39 * Buffer -> Package of Integers 40 * Package -> Package of one Package 46 * An incorrect standalone object is wrapped with required outer package 49 * Required package elements that are NULL replaced by Integer/String/Buffer 106 * package_index - Index of object within parent package (if 190 "Found unexpected NULL package element")); in acpi_ns_simple_repair() 232 * A package is expected. We will wrap the existing object with a in acpi_ns_simple_repair() 233 * new package object. It is often the case that if a variable-length in acpi_ns_simple_repair() 234 * package is required, but there is only a single object needed, the in acpi_ns_simple_repair() 235 * BIOS will return that object instead of wrapping it with a Package in acpi_ns_simple_repair() [all …]
|
D | utcopy.c | 90 * package element) in acpi_ut_copy_isimple_to_esimple() 207 * DESCRIPTION: Copy one package element to another package element 228 package.elements[this_index]; in acpi_ut_copy_ielement_to_eelement() 246 * Build the package object in acpi_ut_copy_ielement_to_eelement() 249 target_object->package.count = source_object->package.count; in acpi_ut_copy_ielement_to_eelement() 250 target_object->package.elements = in acpi_ut_copy_ielement_to_eelement() 254 * Pass the new package object back to the package walk routine in acpi_ut_copy_ielement_to_eelement() 259 * Save space for the array of objects (Package elements) in acpi_ut_copy_ielement_to_eelement() 264 package.count * in acpi_ut_copy_ielement_to_eelement() 289 * DESCRIPTION: This function is called to place a package object in a user [all …]
|
D | nsrepair2.c | 109 * _BCL: Values are tied to the Package index where they appear, and cannot 112 * it to a Package of integers. 334 * If a Package, ensure same for all string elements. 358 /* Exit if not a Package */ in acpi_ns_repair_CID() 364 /* Examine each element of the _CID package */ in acpi_ns_repair_CID() 366 element_ptr = return_object->package.elements; in acpi_ns_repair_CID() 367 for (i = 0; i < return_object->package.count; i++) { in acpi_ns_repair_CID() 425 outer_element_count = return_object->package.count - 1; in acpi_ns_repair_CST() 428 outer_elements = &return_object->package.elements[i + 1]; in acpi_ns_repair_CST() 431 if ((*outer_elements)->package.count == 0) { in acpi_ns_repair_CST() [all …]
|
/Linux-v6.6/Documentation/firmware-guide/acpi/dsd/ |
D | graph.rst | 47 "X" is the number of the port. An example of such a package would be:: 49 Package() { "port@4", "PRT4" } 56 package would be:: 58 Package() { "endpoint@0", "EP40" } 69 name followed by a reference in the same package. Such references consist of 70 the remote device reference, the first package entry of the port data extension 71 reference under the device and finally the first package entry of the endpoint 74 Package() { device, "port@X", "endpoint@Y" } 88 Name (_DSD, Package () { 90 Package () { [all …]
|
D | data-node-references.rst | 45 Name (_DSD, Package () { 47 Package () { 48 Package () { "node@0", "NOD0" }, 49 Package () { "node@1", "NOD1" }, 52 Name (NOD0, Package() { 54 Package () { 55 Package () { "reg", 0 }, 56 Package () { "random-property", 3 }, 59 Name (NOD1, Package() { 61 Package () { [all …]
|
D | leds.rst | 29 Under the LED driver device, The first hierarchical data extension package list 43 Name (_DSD, Package () { 45 Package () { 46 Package () { "led@0", LED0 }, 47 Package () { "led@1", LED1 }, 50 Name (LED0, Package () { 52 Package () { 53 Package () { "reg", 0 }, 54 Package () { "flash-max-microamp", 1000000 }, 55 Package () { "flash-timeout-us", 200000 }, [all …]
|
D | phy.rst | 61 MAC port, which is linked in the _DSD package via 126 Name (_DSD, Package () { 128 Package () { 129 Package (2) {"phy-mode", "rgmii-id"}, 130 Package (2) {"phy-handle", \_SB.MDI0.PHY1} 137 Name (_DSD, Package () { 139 Package () { 140 Package (2) {"phy-mode", "rgmii-id"}, 141 Package (2) {"phy-handle", \_SB.MDI0.PHY2}} 153 Name (_DSD, Package () { [all …]
|
/Linux-v6.6/drivers/acpi/ |
D | pfr_update.c | 133 if (out_obj->package.count < CAP_NR_IDX || in query_capability() 134 out_obj->package.elements[CAP_STATUS_IDX].type != ACPI_TYPE_INTEGER || in query_capability() 135 out_obj->package.elements[CAP_UPDATE_IDX].type != ACPI_TYPE_INTEGER || in query_capability() 136 out_obj->package.elements[CAP_CODE_TYPE_IDX].type != ACPI_TYPE_BUFFER || in query_capability() 137 out_obj->package.elements[CAP_FW_VER_IDX].type != ACPI_TYPE_INTEGER || in query_capability() 138 out_obj->package.elements[CAP_CODE_RT_VER_IDX].type != ACPI_TYPE_INTEGER || in query_capability() 139 out_obj->package.elements[CAP_DRV_TYPE_IDX].type != ACPI_TYPE_BUFFER || in query_capability() 140 out_obj->package.elements[CAP_DRV_RT_VER_IDX].type != ACPI_TYPE_INTEGER || in query_capability() 141 out_obj->package.elements[CAP_DRV_SVN_IDX].type != ACPI_TYPE_INTEGER || in query_capability() 142 out_obj->package.elements[CAP_PLAT_ID_IDX].type != ACPI_TYPE_BUFFER || in query_capability() [all …]
|
D | pfr_telemetry.c | 90 in_obj.package.count = 1; in get_pfrt_log_data_info() 91 in_obj.package.elements = &in_buf; in get_pfrt_log_data_info() 101 if (out_obj->package.count < LOG_NR_IDX || in get_pfrt_log_data_info() 102 out_obj->package.elements[LOG_STATUS_IDX].type != ACPI_TYPE_INTEGER || in get_pfrt_log_data_info() 103 out_obj->package.elements[LOG_EXT_STATUS_IDX].type != ACPI_TYPE_INTEGER || in get_pfrt_log_data_info() 104 out_obj->package.elements[LOG_MAX_SZ_IDX].type != ACPI_TYPE_INTEGER || in get_pfrt_log_data_info() 105 out_obj->package.elements[LOG_CHUNK1_LO_IDX].type != ACPI_TYPE_INTEGER || in get_pfrt_log_data_info() 106 out_obj->package.elements[LOG_CHUNK1_HI_IDX].type != ACPI_TYPE_INTEGER || in get_pfrt_log_data_info() 107 out_obj->package.elements[LOG_CHUNK1_SZ_IDX].type != ACPI_TYPE_INTEGER || in get_pfrt_log_data_info() 108 out_obj->package.elements[LOG_CHUNK2_LO_IDX].type != ACPI_TYPE_INTEGER || in get_pfrt_log_data_info() [all …]
|
D | property.c | 83 dn->name = link->package.elements[0].string.pointer; in acpi_nondev_subnode_extract() 98 * returned the package. That is, it's the scope of that in acpi_nondev_subnode_extract() 155 status = acpi_get_handle(scope, link->package.elements[1].string.pointer, in acpi_nondev_subnode_ok() 171 for (i = 0; i < links->package.count; i++) { in acpi_add_nondev_subnodes() 176 link = &links->package.elements[i]; in acpi_add_nondev_subnodes() 178 if (link->package.count != 2) in acpi_add_nondev_subnodes() 182 if (link->package.elements[0].type != ACPI_TYPE_STRING) in acpi_add_nondev_subnodes() 185 /* The second one may be a string, a reference or a package. */ in acpi_add_nondev_subnodes() 186 switch (link->package.elements[1].type) { in acpi_add_nondev_subnodes() 192 handle = link->package.elements[1].reference.handle; in acpi_add_nondev_subnodes() [all …]
|
/Linux-v6.6/Documentation/arch/x86/ |
D | topology.rst | 28 the past a socket always contained a single package (see below), but with the 29 advent of Multi Chip Modules (MCM) a socket can hold more than one package. So 39 Package chapter 44 Modern systems may also use the term 'Die' for package. 46 AMD nomenclature for package is 'Node'. 48 Package-related topology information in the kernel: 52 The number of cores in a package. This information is retrieved via CPUID. 56 The number of dies in a package. This information is retrieved via CPUID. 64 The physical ID of the package. This information is retrieved via CPUID 65 and deduced from the APIC IDs of the cores in the package. [all …]
|
/Linux-v6.6/Documentation/firmware-guide/acpi/ |
D | intel-pmc-mux.rst | 82 Name (_DSD, Package () { 84 Package() { 85 Package () {"usb2-port-number", 6}, 86 Package () {"usb3-port-number", 3}, 103 Name (_DSD, Package () { 105 Package() { 106 Package () {"sbu-orientation", "normal"}, 107 Package () {"hsl-orientation", "normal"}, 127 Name (_DSD, Package () { 129 Package() { [all …]
|
D | enumeration.rst | 167 Name (_DSD, Package () { 169 Package () { 170 Package () { "interrupt-names", Package () { "default", "alert" } }, 195 Name (_CID, Package () { 231 Name (_DSD, Package () 234 Package () 236 Package () { "size", 1024 }, 237 Package () { "pagesize", 32 }, 238 Package () { "address-width", 16 }, 297 Name (_DSD, Package () [all …]
|
/Linux-v6.6/tools/usb/usbip/ |
D | INSTALL | 14 configure, build, and install this package. The following 16 instructions specific to this package. 20 those values to create a `Makefile' in each directory of the package. 33 If you need to do unusual things to compile the package, please try 45 The simplest way to compile this package is: 47 1. `cd' to the directory containing the package's source code and type 48 `./configure' to configure the package for your system. 53 2. Type `make' to compile the package. 56 the package. 63 files that `configure' created (so you can compile the package for [all …]
|
/Linux-v6.6/drivers/net/ethernet/intel/ice/ |
D | ice_ddp.c | 15 /* To support tunneling entries by PF, the package will append the PF number to 26 * ice_verify_pkg - verify package 27 * @pkg: pointer to the package buffer 28 * @len: size of the package buffer 30 * Verifies various attributes of the package file, including length, format 52 /* make sure segment array fits in package length */ in ice_verify_pkg() 76 * ice_free_seg - free package segment pointer 79 * Frees the package segment pointer in the proper manner, depending on if the 93 * ice_chk_pkg_version - check package version for compatibility with driver 96 * Check to make sure that the package about to be downloaded is compatible with [all …]
|
D | ice_ddp.h | 9 /* Package minimal version supported */ 13 /* Package format version */ 39 * successfully loaded the requested DDP package 48 /* Indicates that a DDP package of the same version has already been 53 /* The device has a DDP package that is not supported by the driver */ 56 /* The device has a compatible package 62 * the DDP package loaded 66 /* The DDP package file is invalid */ 69 /* The version of the DDP package provided is higher than 74 /* The version of the DDP package provided is lower than the [all …]
|
/Linux-v6.6/net/ncsi/ |
D | ncsi-netlink.c | 71 if (nc == nc->package->preferred_channel) in ncsi_write_channel_info() 104 netdev_info(ndp->ndev.dev, "NCSI: No package with id %u\n", id); in ncsi_write_package_info() 216 struct ncsi_package *np, *package; in ncsi_pkg_info_all_nl() local 238 package = NULL; in ncsi_pkg_info_all_nl() 241 package = np; in ncsi_pkg_info_all_nl() 243 if (!package) in ncsi_pkg_info_all_nl() 258 rc = ncsi_write_package_info(skb, ndp, package->id); in ncsi_pkg_info_all_nl() 277 struct ncsi_package *np, *package; in ncsi_set_interface_nl() local 298 package = NULL; in ncsi_set_interface_nl() 302 package = np; in ncsi_set_interface_nl() [all …]
|
/Linux-v6.6/Documentation/hwmon/ |
D | peci-cputemp.rst | 37 Thermal Sensor (DTS) thermal readings of the CPU package and CPU cores that are 48 temp1_input Provides current die temperature of the CPU package. 49 temp1_max Provides thermal control temperature of the CPU package 51 temp1_crit Provides shutdown temperature of the CPU package which 55 the CPU package. 58 temp2_input Provides current temperature of the CPU package scaled 60 temp2_max Provides thermal control temperature of the CPU package 62 temp2_crit Provides shutdown temperature of the CPU package which 66 the CPU package. 70 package which is also known as Fan Temperature target. [all …]
|
/Linux-v6.6/drivers/hwtracing/coresight/ |
D | coresight-platform.c | 367 obj->package.count < 3) in is_acpi_coresight_graph() 370 graphid = &obj->package.elements[0]; in is_acpi_coresight_graph() 371 guid = &obj->package.elements[1]; in is_acpi_coresight_graph() 372 links = &obj->package.elements[2]; in is_acpi_coresight_graph() 422 * Name (_DSD, Package() { 423 * // DSD Package contains tuples of { Proeprty_Type_UUID, Package() } 425 * Package() { 426 * Package(2) { "property-name", <property-value> } 430 * Package() { 433 * Package() { // Graph[0] Package [all …]
|
/Linux-v6.6/drivers/acpi/x86/ |
D | s2idle.c | 68 union acpi_object *package; member 71 /* Constraint package structure */ 83 /* AMD Constraint package structure */ 117 for (i = 0; i < out_obj->package.count; i++) { in lpi_device_get_constraints_amd() 118 union acpi_object *package = &out_obj->package.elements[i]; in lpi_device_get_constraints_amd() local 120 if (package->type == ACPI_TYPE_PACKAGE) { in lpi_device_get_constraints_amd() 127 lpi_constraints_table = kcalloc(package->package.count, in lpi_device_get_constraints_amd() 137 for (j = 0; j < package->package.count; j++) { in lpi_device_get_constraints_amd() 138 union acpi_object *info_obj = &package->package.elements[j]; in lpi_device_get_constraints_amd() 145 for (k = 0; k < info_obj->package.count; k++) { in lpi_device_get_constraints_amd() [all …]
|
D | apple.c | 23 * to retrieve the properties. They are marshalled up in a single package as 24 * alternating key/value elements, unlike _DSD which stores them as a package 59 numprops = props->package.count / 2; in acpi_extract_apple_properties() 69 union acpi_object *key = &props->package.elements[i * 2]; in acpi_extract_apple_properties() 70 union acpi_object *val = &props->package.elements[i * 2 + 1]; in acpi_extract_apple_properties() 94 /* newsize += top-level package + 3 objects for each key/value tuple */ in acpi_extract_apple_properties() 100 /* layout: top-level package | packages | key/value tuples | strings */ in acpi_extract_apple_properties() 102 newprops->package.count = numvalid; in acpi_extract_apple_properties() 103 newprops->package.elements = &newprops[1]; in acpi_extract_apple_properties() 107 union acpi_object *key = &props->package.elements[i * 2]; in acpi_extract_apple_properties() [all …]
|
/Linux-v6.6/Documentation/trace/coresight/ |
D | ultrasoc-smb.rst | 62 Name(_DSD, Package() { \ 65 Package() { \ 68 Package() { \ 72 Package() {0x8, 0, \_SB.S00.SL11.CL28.F008, 0}, \ 73 Package() {0x9, 0, \_SB.S00.SL11.CL29.F009, 0}, \ 74 Package() {0xa, 0, \_SB.S00.SL11.CL2A.F010, 0}, \ 75 Package() {0xb, 0, \_SB.S00.SL11.CL2B.F011, 0}, \ 76 Package() {0xc, 0, \_SB.S00.SL11.CL2C.F012, 0}, \ 77 Package() {0xd, 0, \_SB.S00.SL11.CL2D.F013, 0}, \ 78 Package() {0xe, 0, \_SB.S00.SL11.CL2E.F014, 0}, \ [all …]
|
/Linux-v6.6/drivers/platform/x86/intel/int1092/ |
D | intel_sar.c | 63 * parse_package: parse acpi package for retrieving SAR information 68 * If a given package corresponding to a specific device mode is faulty, it is 83 num = &item->package.elements[0]; in parse_package() 91 item->package.count <= data->total_dev_mode) in parse_package() 102 num = &item->package.elements[itr + 1]; in parse_package() 103 if (num->type != ACPI_TYPE_PACKAGE || num->package.count < TOTAL_DATA) in parse_package() 105 if (get_int_value(&num->package.elements[0], &temp.device_mode)) in parse_package() 107 if (get_int_value(&num->package.elements[1], &temp.bandtable_index)) in parse_package() 109 if (get_int_value(&num->package.elements[2], &temp.antennatable_index)) in parse_package() 111 if (get_int_value(&num->package.elements[3], &temp.sartable_index)) in parse_package() [all …]
|