Home
last modified time | relevance | path

Searched full:package (Results 1 – 25 of 1088) sorted by relevance

12345678910>>...44

/linux-6.12.1/drivers/acpi/acpica/
Dnsprepkg.c4 * 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 …]
Ddspkginit.c4 * 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 …]
Dnsrepair.c39 * 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 …]
Dutcopy.c90 * 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 …]
/linux-6.12.1/Documentation/firmware-guide/acpi/dsd/
Dgraph.rst47 "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 …]
Ddata-node-references.rst45 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 …]
Dleds.rst29 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 …]
Dphy.rst61 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-6.12.1/drivers/acpi/
Dpfr_update.c133 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 …]
Dpfr_telemetry.c90 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 …]
Dproperty.c95 dn->name = link->package.elements[0].string.pointer; in acpi_nondev_subnode_extract()
110 * returned the package. That is, it's the scope of that in acpi_nondev_subnode_extract()
167 status = acpi_get_handle(scope, link->package.elements[1].string.pointer, in acpi_nondev_subnode_ok()
183 for (i = 0; i < links->package.count; i++) { in acpi_add_nondev_subnodes()
188 link = &links->package.elements[i]; in acpi_add_nondev_subnodes()
190 if (link->package.count != 2) in acpi_add_nondev_subnodes()
194 if (link->package.elements[0].type != ACPI_TYPE_STRING) in acpi_add_nondev_subnodes()
197 /* The second one may be a string, a reference or a package. */ in acpi_add_nondev_subnodes()
198 switch (link->package.elements[1].type) { in acpi_add_nondev_subnodes()
204 handle = link->package.elements[1].reference.handle; in acpi_add_nondev_subnodes()
[all …]
/linux-6.12.1/Documentation/arch/x86/
Dtopology.rst28 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 threads in a package.
56 The number of cores in a package.
60 The maximum number of dies in a package.
68 The physical ID of the package. This information is retrieved via CPUID
[all …]
/linux-6.12.1/Documentation/wmi/devices/
Dmsi-wmi-platform.rst23 Description("This class contains the definition of the package used in other classes"),
25 class Package {
30 Description("This class contains the definition of the package used in other classes"),
37 Description("Class used to operate methods on a package"),
43 [WmiMethodId(1), Implemented, read, write, Description("Return the contents of a package")]
44 void GetPackage([out, id(0)] Package Data);
46 [WmiMethodId(2), Implemented, read, write, Description("Set the contents of a package")]
47 void SetPackage([in, id(0)] Package Data);
49 [WmiMethodId(3), Implemented, read, write, Description("Return the contents of a package")]
52 [WmiMethodId(4), Implemented, read, write, Description("Set the contents of a package")]
[all …]
/linux-6.12.1/Documentation/firmware-guide/acpi/
Dintel-pmc-mux.rst82 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 …]
/linux-6.12.1/tools/usb/usbip/
DINSTALL14 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-6.12.1/drivers/net/ethernet/intel/ice/
Dice_ddp.c16 /* To support tunneling entries by PF, the package will append the PF number to
27 * ice_verify_pkg - verify package
28 * @pkg: pointer to the package buffer
29 * @len: size of the package buffer
31 * Verifies various attributes of the package file, including length, format
53 /* make sure segment array fits in package length */ in ice_verify_pkg()
77 * ice_free_seg - free package segment pointer
80 * Frees the package segment pointer in the proper manner, depending on if the
94 * ice_chk_pkg_version - check package version for compatibility with driver
97 * Check to make sure that the package about to be downloaded is compatible with
[all …]
Dice_ddp.h9 /* 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-6.12.1/net/ncsi/
Dncsi-netlink.c71 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-6.12.1/Documentation/hwmon/
Dpeci-cputemp.rst37 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-6.12.1/drivers/hwtracing/coresight/
Dcoresight-platform.c369 obj->package.count < 3) in is_acpi_coresight_graph()
372 graphid = &obj->package.elements[0]; in is_acpi_coresight_graph()
373 guid = &obj->package.elements[1]; in is_acpi_coresight_graph()
374 links = &obj->package.elements[2]; in is_acpi_coresight_graph()
424 * Name (_DSD, Package() {
425 * // DSD Package contains tuples of { Proeprty_Type_UUID, Package() }
427 * Package() {
428 * Package(2) { "property-name", <property-value> }
432 * Package() {
435 * Package() { // Graph[0] Package
[all …]
/linux-6.12.1/drivers/net/wireless/intel/iwlwifi/fw/
Dacpi.c203 * We need at least one entry in the wifi package that in iwl_acpi_get_wifi_pkg_range()
217 data->package.count < 2 || in iwl_acpi_get_wifi_pkg_range()
218 data->package.elements[0].type != ACPI_TYPE_INTEGER) { in iwl_acpi_get_wifi_pkg_range()
223 *tbl_rev = data->package.elements[0].integer.value; in iwl_acpi_get_wifi_pkg_range()
226 for (i = 1; i < data->package.count; i++) { in iwl_acpi_get_wifi_pkg_range()
229 wifi_pkg = &data->package.elements[i]; in iwl_acpi_get_wifi_pkg_range()
231 /* skip entries that are not a package with the right size */ in iwl_acpi_get_wifi_pkg_range()
233 wifi_pkg->package.count < min_data_size || in iwl_acpi_get_wifi_pkg_range()
234 wifi_pkg->package.count > max_data_size) in iwl_acpi_get_wifi_pkg_range()
237 domain = &wifi_pkg->package.elements[0]; in iwl_acpi_get_wifi_pkg_range()
[all …]
/linux-6.12.1/Documentation/devicetree/bindings/net/
Dethernet-phy-package.yaml4 $id: http://devicetree.org/schemas/net/ethernet-phy-package.yaml#
7 title: Ethernet PHY Package Common Properties
15 of the PHY package.
17 Each reg of the PHYs defined in the PHY package node is
23 pattern: "^ethernet-phy-package@[a-f0-9]+$"
29 The base ID number for the PHY package.
30 Commonly the ID of the first PHY in the PHY package.
32 Some PHY in the PHY package might be not defined but
34 anything) hence the PHY package reg might correspond
/linux-6.12.1/drivers/acpi/x86/
Ds2idle.c68 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 …]
/linux-6.12.1/Documentation/trace/coresight/
Dultrasoc-smb.rst62 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-6.12.1/drivers/platform/x86/intel/int1092/
Dintel_sar.c63 * 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 …]

12345678910>>...44