~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/firmware-guide/acpi/non-d0-probe.rst

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /Documentation/firmware-guide/acpi/non-d0-probe.rst (Version linux-6.12-rc7) and /Documentation/firmware-guide/acpi/non-d0-probe.rst (Version linux-6.1.116)


  1 .. SPDX-License-Identifier: GPL-2.0                 1 .. SPDX-License-Identifier: GPL-2.0
  2                                                     2 
  3 ========================================            3 ========================================
  4 Probing devices in other D states than 0            4 Probing devices in other D states than 0
  5 ========================================            5 ========================================
  6                                                     6 
  7 Introduction                                        7 Introduction
  8 ============                                        8 ============
  9                                                     9 
 10 In some cases it may be preferred to leave cer     10 In some cases it may be preferred to leave certain devices powered off for the
 11 entire system bootup if powering on these devi     11 entire system bootup if powering on these devices has adverse side effects,
 12 beyond just powering on the said device.           12 beyond just powering on the said device.
 13                                                    13 
 14 How it works                                       14 How it works
 15 ============                                       15 ============
 16                                                    16 
 17 The _DSC (Device State for Configuration) obje     17 The _DSC (Device State for Configuration) object that evaluates to an integer
 18 may be used to tell Linux the highest allowed      18 may be used to tell Linux the highest allowed D state for a device during
 19 probe. The support for _DSC requires support f     19 probe. The support for _DSC requires support from the kernel bus type if the
 20 bus driver normally sets the device in D0 stat     20 bus driver normally sets the device in D0 state for probe.
 21                                                    21 
 22 The downside of using _DSC is that as the devi     22 The downside of using _DSC is that as the device is not powered on, even if
 23 there's a problem with the device, the driver      23 there's a problem with the device, the driver likely probes just fine but the
 24 first user will find out the device doesn't wo     24 first user will find out the device doesn't work, instead of a failure at probe
 25 time. This feature should thus be used sparing     25 time. This feature should thus be used sparingly.
 26                                                    26 
 27 I²C                                               27 I²C
 28 ---                                                28 ---
 29                                                    29 
 30 If an I²C driver indicates its support for th     30 If an I²C driver indicates its support for this by setting the
 31 I2C_DRV_ACPI_WAIVE_D0_PROBE flag in struct i2c     31 I2C_DRV_ACPI_WAIVE_D0_PROBE flag in struct i2c_driver.flags field and the
 32 _DSC object evaluates to integer higher than t     32 _DSC object evaluates to integer higher than the D state of the device,
 33 the device will not be powered on (put in D0 s     33 the device will not be powered on (put in D0 state) for probe.
 34                                                    34 
 35 D states                                           35 D states
 36 --------                                           36 --------
 37                                                    37 
 38 The D states and thus also the allowed values      38 The D states and thus also the allowed values for _DSC are listed below. Refer
 39 to [1] for more information on device power st     39 to [1] for more information on device power states.
 40                                                    40 
 41 .. code-block:: text                               41 .. code-block:: text
 42                                                    42 
 43         Number  State   Description                43         Number  State   Description
 44         0       D0      Device fully powered o     44         0       D0      Device fully powered on
 45         1       D1                                 45         1       D1
 46         2       D2                                 46         2       D2
 47         3       D3hot                              47         3       D3hot
 48         4       D3cold  Off                        48         4       D3cold  Off
 49                                                    49 
 50 References                                         50 References
 51 ==========                                         51 ==========
 52                                                    52 
 53 [1] https://uefi.org/specifications/ACPI/6.4/0     53 [1] https://uefi.org/specifications/ACPI/6.4/02_Definition_of_Terms/Definition_of_Terms.html#device-power-state-definitions
 54                                                    54 
 55 Example                                            55 Example
 56 =======                                            56 =======
 57                                                    57 
 58 An ASL example describing an ACPI device using     58 An ASL example describing an ACPI device using _DSC object to tell Operating
 59 System the device should remain powered off du     59 System the device should remain powered off during probe looks like this. Some
 60 objects not relevant from the example point of     60 objects not relevant from the example point of view have been omitted.
 61                                                    61 
 62 .. code-block:: text                               62 .. code-block:: text
 63                                                    63 
 64         Device (CAM0)                              64         Device (CAM0)
 65         {                                          65         {
 66                 Name (_HID, "SONY319A")            66                 Name (_HID, "SONY319A")
 67                 Name (_UID, Zero)                  67                 Name (_UID, Zero)
 68                 Name (_CRS, ResourceTemplate (     68                 Name (_CRS, ResourceTemplate ()
 69                 {                                  69                 {
 70                         I2cSerialBus(0x0020, C     70                         I2cSerialBus(0x0020, ControllerInitiated, 0x00061A80,
 71                                      Addressin     71                                      AddressingMode7Bit, "\\_SB.PCI0.I2C0",
 72                                      0x00, Res     72                                      0x00, ResourceConsumer)
 73                 })                                 73                 })
 74                 Method (_DSC, 0, NotSerialized     74                 Method (_DSC, 0, NotSerialized)
 75                 {                                  75                 {
 76                         Return (0x4)               76                         Return (0x4)
 77                 }                                  77                 }
 78         }                                          78         }
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php