soc/intel/{cannonlake,skylake}: Add _soc_ prefix in spi soc routine
This ensures that function callback into the SoC code. Change-Id: Idc16d315ba25d17a2ab537fcdf0c2b51c8802a67 Signed-off-by: Subrata Banik <subrata.banik@intel.com> Reviewed-on: https://review.coreboot.org/22392 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
6c4b5916fc
commit
09564fce55
|
@ -17,6 +17,7 @@
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <device/device.h>
|
#include <device/device.h>
|
||||||
#include <intelblocks/gspi.h>
|
#include <intelblocks/gspi.h>
|
||||||
|
#include <intelblocks/spi.h>
|
||||||
#include <soc/iomap.h>
|
#include <soc/iomap.h>
|
||||||
#include <soc/pci_devs.h>
|
#include <soc/pci_devs.h>
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
@ -67,5 +68,5 @@ int gspi_soc_bus_to_devfn(unsigned int gspi_bus)
|
||||||
if (gspi_bus >= CONFIG_SOC_INTEL_COMMON_BLOCK_GSPI_MAX)
|
if (gspi_bus >= CONFIG_SOC_INTEL_COMMON_BLOCK_GSPI_MAX)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
return spi_bus_to_devfn(GSPI_TO_SPI_BUS(gspi_bus));
|
return spi_soc_bus_to_devfn(GSPI_TO_SPI_BUS(gspi_bus));
|
||||||
}
|
}
|
||||||
|
|
|
@ -175,26 +175,4 @@
|
||||||
#define PCH_DEV_GBE _PCH_DEV(LPC, 6)
|
#define PCH_DEV_GBE _PCH_DEV(LPC, 6)
|
||||||
#define PCH_DEV_TRACEHUB _PCH_DEV(LPC, 7)
|
#define PCH_DEV_TRACEHUB _PCH_DEV(LPC, 7)
|
||||||
|
|
||||||
static inline int spi_devfn_to_bus(unsigned int devfn)
|
|
||||||
{
|
|
||||||
switch (devfn) {
|
|
||||||
case PCH_DEVFN_SPI: return 0;
|
|
||||||
case PCH_DEVFN_GSPI0: return 1;
|
|
||||||
case PCH_DEVFN_GSPI1: return 2;
|
|
||||||
case PCH_DEVFN_GSPI2: return 3;
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline int spi_bus_to_devfn(unsigned int bus)
|
|
||||||
{
|
|
||||||
switch (bus) {
|
|
||||||
case 0: return PCH_DEVFN_SPI;
|
|
||||||
case 1: return PCH_DEVFN_GSPI0;
|
|
||||||
case 2: return PCH_DEVFN_GSPI1;
|
|
||||||
case 3: return PCH_DEVFN_GSPI2;
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -22,10 +22,41 @@
|
||||||
#include <device/spi.h>
|
#include <device/spi.h>
|
||||||
#include <intelblocks/fast_spi.h>
|
#include <intelblocks/fast_spi.h>
|
||||||
#include <intelblocks/gspi.h>
|
#include <intelblocks/gspi.h>
|
||||||
|
#include <intelblocks/spi.h>
|
||||||
#include <soc/ramstage.h>
|
#include <soc/ramstage.h>
|
||||||
#include <soc/pci_devs.h>
|
#include <soc/pci_devs.h>
|
||||||
#include <spi-generic.h>
|
#include <spi-generic.h>
|
||||||
|
|
||||||
|
int spi_soc_devfn_to_bus(unsigned int devfn)
|
||||||
|
{
|
||||||
|
switch (devfn) {
|
||||||
|
case PCH_DEVFN_SPI:
|
||||||
|
return 0;
|
||||||
|
case PCH_DEVFN_GSPI0:
|
||||||
|
return 1;
|
||||||
|
case PCH_DEVFN_GSPI1:
|
||||||
|
return 2;
|
||||||
|
case PCH_DEVFN_GSPI2:
|
||||||
|
return 3;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int spi_soc_bus_to_devfn(unsigned int bus)
|
||||||
|
{
|
||||||
|
switch (bus) {
|
||||||
|
case 0:
|
||||||
|
return PCH_DEVFN_SPI;
|
||||||
|
case 1:
|
||||||
|
return PCH_DEVFN_GSPI0;
|
||||||
|
case 2:
|
||||||
|
return PCH_DEVFN_GSPI1;
|
||||||
|
case 3:
|
||||||
|
return PCH_DEVFN_GSPI2;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
const struct spi_ctrlr_buses spi_ctrlr_bus_map[] = {
|
const struct spi_ctrlr_buses spi_ctrlr_bus_map[] = {
|
||||||
{ .ctrlr = &fast_spi_flash_ctrlr, .bus_start = 0, .bus_end = 0 },
|
{ .ctrlr = &fast_spi_flash_ctrlr, .bus_start = 0, .bus_end = 0 },
|
||||||
#if !ENV_SMM
|
#if !ENV_SMM
|
||||||
|
@ -40,7 +71,7 @@ const size_t spi_ctrlr_bus_map_count = ARRAY_SIZE(spi_ctrlr_bus_map);
|
||||||
|
|
||||||
static int spi_dev_to_bus(struct device *dev)
|
static int spi_dev_to_bus(struct device *dev)
|
||||||
{
|
{
|
||||||
return spi_devfn_to_bus(dev->path.pci.devfn);
|
return spi_soc_devfn_to_bus(dev->path.pci.devfn);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct spi_bus_operations spi_bus_ops = {
|
static struct spi_bus_operations spi_bus_ops = {
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <device/device.h>
|
#include <device/device.h>
|
||||||
#include <intelblocks/gspi.h>
|
#include <intelblocks/gspi.h>
|
||||||
|
#include <intelblocks/spi.h>
|
||||||
#include <soc/iomap.h>
|
#include <soc/iomap.h>
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
|
@ -66,5 +67,5 @@ int gspi_soc_bus_to_devfn(unsigned int gspi_bus)
|
||||||
if (gspi_bus >= CONFIG_SOC_INTEL_COMMON_BLOCK_GSPI_MAX)
|
if (gspi_bus >= CONFIG_SOC_INTEL_COMMON_BLOCK_GSPI_MAX)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
return spi_bus_to_devfn(GSPI_TO_SPI_BUS(gspi_bus));
|
return spi_soc_bus_to_devfn(GSPI_TO_SPI_BUS(gspi_bus));
|
||||||
}
|
}
|
||||||
|
|
|
@ -160,24 +160,4 @@
|
||||||
#define PCH_DEV_GBE _PCH_DEV(LPC, 6)
|
#define PCH_DEV_GBE _PCH_DEV(LPC, 6)
|
||||||
#define PCH_DEV_TRACEHUB _PCH_DEV(LPC, 7)
|
#define PCH_DEV_TRACEHUB _PCH_DEV(LPC, 7)
|
||||||
|
|
||||||
static inline int spi_devfn_to_bus(unsigned int devfn)
|
|
||||||
{
|
|
||||||
switch (devfn) {
|
|
||||||
case PCH_DEVFN_SPI: return 0;
|
|
||||||
case PCH_DEVFN_GSPI0: return 1;
|
|
||||||
case PCH_DEVFN_GSPI1: return 2;
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline int spi_bus_to_devfn(unsigned int bus)
|
|
||||||
{
|
|
||||||
switch (bus) {
|
|
||||||
case 0: return PCH_DEVFN_SPI;
|
|
||||||
case 1: return PCH_DEVFN_GSPI0;
|
|
||||||
case 2: return PCH_DEVFN_GSPI1;
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -22,9 +22,36 @@
|
||||||
#include <device/spi.h>
|
#include <device/spi.h>
|
||||||
#include <intelblocks/fast_spi.h>
|
#include <intelblocks/fast_spi.h>
|
||||||
#include <intelblocks/gspi.h>
|
#include <intelblocks/gspi.h>
|
||||||
|
#include <intelblocks/spi.h>
|
||||||
#include <soc/ramstage.h>
|
#include <soc/ramstage.h>
|
||||||
#include <spi-generic.h>
|
#include <spi-generic.h>
|
||||||
|
|
||||||
|
int spi_soc_devfn_to_bus(unsigned int devfn)
|
||||||
|
{
|
||||||
|
switch (devfn) {
|
||||||
|
case PCH_DEVFN_SPI:
|
||||||
|
return 0;
|
||||||
|
case PCH_DEVFN_GSPI0:
|
||||||
|
return 1;
|
||||||
|
case PCH_DEVFN_GSPI1:
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int spi_soc_bus_to_devfn(unsigned int bus)
|
||||||
|
{
|
||||||
|
switch (bus) {
|
||||||
|
case 0:
|
||||||
|
return PCH_DEVFN_SPI;
|
||||||
|
case 1:
|
||||||
|
return PCH_DEVFN_GSPI0;
|
||||||
|
case 2:
|
||||||
|
return PCH_DEVFN_GSPI1;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
const struct spi_ctrlr_buses spi_ctrlr_bus_map[] = {
|
const struct spi_ctrlr_buses spi_ctrlr_bus_map[] = {
|
||||||
{ .ctrlr = &fast_spi_flash_ctrlr, .bus_start = 0, .bus_end = 0 },
|
{ .ctrlr = &fast_spi_flash_ctrlr, .bus_start = 0, .bus_end = 0 },
|
||||||
#if !ENV_SMM
|
#if !ENV_SMM
|
||||||
|
@ -39,7 +66,7 @@ const size_t spi_ctrlr_bus_map_count = ARRAY_SIZE(spi_ctrlr_bus_map);
|
||||||
|
|
||||||
static int spi_dev_to_bus(struct device *dev)
|
static int spi_dev_to_bus(struct device *dev)
|
||||||
{
|
{
|
||||||
return spi_devfn_to_bus(dev->path.pci.devfn);
|
return spi_soc_devfn_to_bus(dev->path.pci.devfn);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct spi_bus_operations spi_bus_ops = {
|
static struct spi_bus_operations spi_bus_ops = {
|
||||||
|
|
Loading…
Reference in New Issue