Commit 187b8115 authored by Bjorn Helgaas's avatar Bjorn Helgaas

Merge branch 'pci/controller/rcar-gen4'

- Make the read-only const array 'check_addr' static (Colin Ian King)

- Add R-Car V4M (R8A779H0) PCIe host and endpoint to DT binding (Yoshihiro
  Shimoda)

* pci/controller/rcar-gen4:
  dt-bindings: PCI: rcar-gen4-pci-ep: Add R-Car V4M compatible
  dt-bindings: PCI: rcar-gen4-pci-host: Add R-Car V4M compatible
  PCI: rcar-gen4: Make read-only const array check_addr static
parents 45e981b8 05a01639
...@@ -19,6 +19,7 @@ properties: ...@@ -19,6 +19,7 @@ properties:
- enum: - enum:
- renesas,r8a779f0-pcie-ep # R-Car S4-8 - renesas,r8a779f0-pcie-ep # R-Car S4-8
- renesas,r8a779g0-pcie-ep # R-Car V4H - renesas,r8a779g0-pcie-ep # R-Car V4H
- renesas,r8a779h0-pcie-ep # R-Car V4M
- const: renesas,rcar-gen4-pcie-ep # R-Car Gen4 - const: renesas,rcar-gen4-pcie-ep # R-Car Gen4
reg: reg:
......
...@@ -19,6 +19,7 @@ properties: ...@@ -19,6 +19,7 @@ properties:
- enum: - enum:
- renesas,r8a779f0-pcie # R-Car S4-8 - renesas,r8a779f0-pcie # R-Car S4-8
- renesas,r8a779g0-pcie # R-Car V4H - renesas,r8a779g0-pcie # R-Car V4H
- renesas,r8a779h0-pcie # R-Car V4M
- const: renesas,rcar-gen4-pcie # R-Car Gen4 - const: renesas,rcar-gen4-pcie # R-Car Gen4
reg: reg:
......
...@@ -606,7 +606,12 @@ static int rcar_gen4_pcie_reg_test_bit(struct rcar_gen4_pcie *rcar, ...@@ -606,7 +606,12 @@ static int rcar_gen4_pcie_reg_test_bit(struct rcar_gen4_pcie *rcar,
static int rcar_gen4_pcie_download_phy_firmware(struct rcar_gen4_pcie *rcar) static int rcar_gen4_pcie_download_phy_firmware(struct rcar_gen4_pcie *rcar)
{ {
/* The check_addr values are magical numbers in the datasheet */ /* The check_addr values are magical numbers in the datasheet */
const u32 check_addr[] = { 0x00101018, 0x00101118, 0x00101021, 0x00101121}; static const u32 check_addr[] = {
0x00101018,
0x00101118,
0x00101021,
0x00101121,
};
struct dw_pcie *dw = &rcar->dw; struct dw_pcie *dw = &rcar->dw;
const struct firmware *fw; const struct firmware *fw;
unsigned int i, timeout; unsigned int i, timeout;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment