aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/apollolake/include
diff options
context:
space:
mode:
authorBarnali Sarkar <barnali.sarkar@intel.com>2017-03-28 16:32:33 +0530
committerFurquan Shaikh <furquan@google.com>2017-05-02 18:26:19 +0200
commite70142c9c2e2b7b4fbf8883790df72b6d5536c19 (patch)
treec5454fa0596e22b2e625a42c920793ac7664c117 /src/soc/intel/apollolake/include
parent7146445be9618eb47895782912af28fb627c009d (diff)
soc/intel/apollolake: Clean up code by using common FAST_SPI module
This patch currently contains the following - 1. Use SOC_INTEL_COMMON_BLOCK_FAST_SPI kconfig for common FAST_SPI code. 2. Perform FAST_SPI programming by calling APIs from common FAST_SPI library. 3. Use common FAST_SPI header file. Change-Id: Ifd72734dadda541fe4c828e4f1716e532ec69c27 Signed-off-by: Barnali Sarkar <barnali.sarkar@intel.com> Reviewed-on: https://review.coreboot.org/19080 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Subrata Banik <subrata.banik@intel.com> Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/soc/intel/apollolake/include')
-rw-r--r--src/soc/intel/apollolake/include/soc/flash_ctrlr.h94
1 files changed, 0 insertions, 94 deletions
diff --git a/src/soc/intel/apollolake/include/soc/flash_ctrlr.h b/src/soc/intel/apollolake/include/soc/flash_ctrlr.h
deleted file mode 100644
index 336ce5266f..0000000000
--- a/src/soc/intel/apollolake/include/soc/flash_ctrlr.h
+++ /dev/null
@@ -1,94 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * Copyright (C) 2016 Intel Corp.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
-
-#ifndef _SOC_APOLLOLAKE_SPI_H_
-#define _SOC_APOLLOLAKE_SPI_H_
-
-/* PCI configuration registers */
-#define SPIBAR_BIOS_CONTROL 0xdc
-/* Bit definitions for BIOS_CONTROL */
-#define SPIBAR_BIOS_CONTROL_WPD (1 << 0)
-#define SPIBAR_BIOS_CONTROL_CACHE_DISABLE (1 << 2)
-#define SPIBAR_BIOS_CONTROL_PREFETCH_ENABLE (1 << 3)
-#define SPIBAR_BIOS_CONTROL_EISS (1 << 5)
-
-/* Maximum bytes of data that can fit in FDATAn registers */
-#define SPIBAR_FDATA_FIFO_SIZE 0x40
-
-/* Register offsets from the MMIO region base (PCI_BASE_ADDRESS_0) */
-#define SPIBAR_BIOS_BFPREG 0x00
-#define SPIBAR_HSFSTS_CTL 0x04
-#define SPIBAR_FADDR 0x08
-#define SPIBAR_FDATA(n) (0x10 + ((n) & 0xf) * 4)
-#define SPIBAR_FPR_BASE 0x84
-#define SPIBAR_PTINX 0xcc
-#define SPIBAR_PTDATA 0xd0
-
-#define SPIBAR_FPR_MAX 5
-
-/* Bit definitions and masks for BIOS_BFPREG register. */
-#define SPIBAR_BFPREG_PRB_MASK (0x7fff)
-#define SPIBAR_BFPREG_PRL_SHIFT (16)
-#define SPIBAR_BFPREG_PRL_MASK (0x7fff << SPIBAR_BFPREG_PRL_SHIFT)
-#define SPIBAR_BFPREG_SBRS (1 << 31)
-
-/* Bit definitions for HSFSTS_CTL register */
-#define SPIBAR_HSFSTS_FBDC_MASK (0x3f << 24)
-#define SPIBAR_HSFSTS_FBDC(n) (((n) << 24) & SPIBAR_HSFSTS_FBDC_MASK)
-#define SPIBAR_HSFSTS_WET (1 << 21)
-#define SPIBAR_HSFSTS_FCYCLE_MASK (0xf << 17)
-#define SPIBAR_HSFSTS_FCYCLE(cyc) (((cyc) << 17) \
- & SPIBAR_HSFSTS_FCYCLE_MASK)
-#define SPIBAR_HSFSTS_FGO (1 << 16)
-#define SPIBAR_HSFSTS_FLOCKDN (1 << 15)
-#define SPIBAR_HSFSTS_FDV (1 << 14)
-#define SPIBAR_HSFSTS_FDOPSS (1 << 13)
-#define SPIBAR_HSFSTS_SAF_CE (1 << 8)
-#define SPIBAR_HSFSTS_SAF_ACTIVE (1 << 7)
-#define SPIBAR_HSFSTS_SAF_LE (1 << 6)
-#define SPIBAR_HSFSTS_SCIP (1 << 5)
-#define SPIBAR_HSFSTS_SAF_DLE (1 << 4)
-#define SPIBAR_HSFSTS_SAF_ERROR (1 << 3)
-#define SPIBAR_HSFSTS_AEL (1 << 2)
-#define SPIBAR_HSFSTS_FCERR (1 << 1)
-#define SPIBAR_HSFSTS_FDONE (1 << 0)
-#define SPIBAR_HSFSTS_W1C_BITS (0xff)
-/* Supported flash cycle types */
-#define SPIBAR_HSFSTS_CYCLE_READ SPIBAR_HSFSTS_FCYCLE(0)
-#define SPIBAR_HSFSTS_CYCLE_WRITE SPIBAR_HSFSTS_FCYCLE(2)
-#define SPIBAR_HSFSTS_CYCLE_4K_ERASE SPIBAR_HSFSTS_FCYCLE(3)
-#define SPIBAR_HSFSTS_CYCLE_64K_ERASE SPIBAR_HSFSTS_FCYCLE(4)
-#define SPIBAR_HSFSTS_CYCLE_RD_STATUS SPIBAR_HSFSTS_FCYCLE(8)
-
-/* Bit definitions for PTINX register */
-#define SPIBAR_PTINX_COMP_0 (0 << 14)
-#define SPIBAR_PTINX_COMP_1 (1 << 14)
-#define SPIBAR_PTINX_HORD_SFDP (0 << 12)
-#define SPIBAR_PTINX_HORD_PARAM (1 << 12)
-#define SPIBAR_PTINX_HORD_JEDEC (2 << 12)
-#define SPIBAR_PTINX_IDX_MASK 0xffc
-
-/*
- * Reads status register. On success returns 0 and status contains the value
- * read from the status register. On error returns -1.
- */
-int spi_flash_read_status(uint8_t *status);
-
-/* Read SPI controller register. */
-uint32_t spi_flash_ctrlr_reg_read(uint16_t reg);
-
-void spi_flash_init(void);
-#endif