Commit 40583864 authored by Borislav Petkov (AMD)'s avatar Borislav Petkov (AMD)
Browse files

Merge tag 'x86_urgent_for_v6.18_rc3' into x86/microcode



Pick up the below urgent upstream change in order to base more work
ontop:

- Correct the last Zen1 microcode revision for which Entrysign sha256 check is
  needed

Signed-off-by: default avatarBorislav Petkov (AMD) <bp@alien8.de>
parents bffeb2fd 84dfce65
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -227,6 +227,7 @@ Dmitry Safonov <0x7f454c46@gmail.com> <dima@arista.com>
Dmitry Safonov <0x7f454c46@gmail.com> <d.safonov@partner.samsung.com>
Dmitry Safonov <0x7f454c46@gmail.com> <dsafonov@virtuozzo.com>
Domen Puncer <domen@coderock.org>
Dong Aisheng <aisheng.dong@nxp.com> <b29396@freescale.com>
Douglas Gilbert <dougg@torque.net>
Drew Fustini <fustini@kernel.org> <drew@pdp7.com>
<duje@dujemihanovic.xyz> <duje.mihanovic@skole.hr>
+36 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/i2c/apm,xgene-slimpro-i2c.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: APM X-Gene SLIMpro Mailbox I2C

maintainers:
  - Khuong Dinh <khuong@os.amperecomputing.com>

description:
  An I2C controller accessed over the "SLIMpro" mailbox.

allOf:
  - $ref: /schemas/i2c/i2c-controller.yaml#

properties:
  compatible:
    const: apm,xgene-slimpro-i2c

  mboxes:
    maxItems: 1

required:
  - compatible
  - mboxes

unevaluatedProperties: false

examples:
  - |
    i2c {
        compatible = "apm,xgene-slimpro-i2c";
        mboxes = <&mailbox 0>;
    };
+0 −15
Original line number Diff line number Diff line
APM X-Gene SLIMpro Mailbox I2C Driver

An I2C controller accessed over the "SLIMpro" mailbox.

Required properties :

 - compatible : should be "apm,xgene-slimpro-i2c"
 - mboxes : use the label reference for the mailbox as the first parameter.
	    The second parameter is the channel number.

Example :
	i2cslimpro {
		compatible = "apm,xgene-slimpro-i2c";
		mboxes = <&mailbox 0>;
	};
+1 −0
Original line number Diff line number Diff line
@@ -79,6 +79,7 @@ properties:
              - fsl,imx-audio-nau8822
              - fsl,imx-audio-sgtl5000
              - fsl,imx-audio-si476x
              - fsl,imx-audio-tlv320
              - fsl,imx-audio-tlv320aic31xx
              - fsl,imx-audio-tlv320aic32x4
              - fsl,imx-audio-wm8524
+1 −0
Original line number Diff line number Diff line
@@ -33,6 +33,7 @@ properties:
          - qcom,apq8096-sndcard
          - qcom,glymur-sndcard
          - qcom,qcm6490-idp-sndcard
          - qcom,qcs615-sndcard
          - qcom,qcs6490-rb3gen2-sndcard
          - qcom,qcs8275-sndcard
          - qcom,qcs9075-sndcard
Loading