spi_flash: Move spi flash opcodes to spi_flash.h

BUG=chrome-os-partner:59832
BRANCH=None
TEST=Compiles successfully

Change-Id: I3b6656923bb312de470da43a23f66f350e1cebc7
Signed-off-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-on: https://review.coreboot.org/17680
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Furquan Shaikh 2016-11-22 11:43:58 -08:00 committed by Furquan Shaikh
parent 1d56eef728
commit 52896c6c33
7 changed files with 9 additions and 4 deletions

View File

@ -20,10 +20,6 @@
/* Controller-specific definitions: */ /* Controller-specific definitions: */
/* SPI opcodes */
#define SPI_OPCODE_WREN 0x06
#define SPI_OPCODE_FAST_READ 0x0b
/*----------------------------------------------------------------------- /*-----------------------------------------------------------------------
* Representation of a SPI slave, i.e. what we're communicating with. * Representation of a SPI slave, i.e. what we're communicating with.
* *

View File

@ -19,6 +19,10 @@
#include <stddef.h> #include <stddef.h>
#include <boot/coreboot_tables.h> #include <boot/coreboot_tables.h>
/* SPI Flash opcodes */
#define SPI_OPCODE_WREN 0x06
#define SPI_OPCODE_FAST_READ 0x0b
struct spi_flash { struct spi_flash {
struct spi_slave *spi; struct spi_slave *spi;
const char *name; const char *name;

View File

@ -21,6 +21,7 @@
#include <arch/io.h> #include <arch/io.h>
#include <console/console.h> #include <console/console.h>
#include <device/pci_ids.h> #include <device/pci_ids.h>
#include <spi_flash.h>
#include <spi-generic.h> #include <spi-generic.h>
#include <soc/lpc.h> #include <soc/lpc.h>

View File

@ -22,6 +22,7 @@
#include <rules.h> #include <rules.h>
#include <soc/lpc.h> #include <soc/lpc.h>
#include <soc/pci_devs.h> #include <soc/pci_devs.h>
#include <spi_flash.h>
#include <spi-generic.h> #include <spi-generic.h>
#include <stdint.h> #include <stdint.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -20,6 +20,7 @@
#include <arch/io.h> #include <arch/io.h>
#include <console/console.h> #include <console/console.h>
#include <device/pci_ids.h> #include <device/pci_ids.h>
#include <spi_flash.h>
#include <spi-generic.h> #include <spi-generic.h>
#include <soc/pci_devs.h> #include <soc/pci_devs.h>
#include <soc/rcba.h> #include <soc/rcba.h>

View File

@ -22,6 +22,7 @@
#include <arch/io.h> #include <arch/io.h>
#include <console/console.h> #include <console/console.h>
#include <device/pci_ids.h> #include <device/pci_ids.h>
#include <spi_flash.h>
#include <spi-generic.h> #include <spi-generic.h>
#include <soc/lpc.h> #include <soc/lpc.h>

View File

@ -22,6 +22,7 @@
#include <console/console.h> #include <console/console.h>
#include <device/pci_ids.h> #include <device/pci_ids.h>
#include <spi_flash.h>
#include <spi-generic.h> #include <spi-generic.h>
static int ich_status_poll(u16 bitmask, int wait_til_set); static int ich_status_poll(u16 bitmask, int wait_til_set);