2014-03-19 22:31:23 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
2014-05-16 02:14:12 +02:00
|
|
|
* Copyright 2014 Google Inc.
|
2014-03-19 22:31:23 +01:00
|
|
|
*
|
|
|
|
* 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; version 2 of the License.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2014-05-16 02:14:12 +02:00
|
|
|
#include <arch/cache.h>
|
2014-08-08 00:20:21 +02:00
|
|
|
#include <boardid.h>
|
2014-03-19 22:31:23 +01:00
|
|
|
#include <boot/coreboot_tables.h>
|
2014-08-02 02:36:45 +02:00
|
|
|
#include <console/console.h>
|
|
|
|
#include <delay.h>
|
2014-08-08 00:20:21 +02:00
|
|
|
#include <device/device.h>
|
|
|
|
#include <gpiolib.h>
|
2014-08-02 02:36:45 +02:00
|
|
|
#include <string.h>
|
New mechanism to define SRAM/memory map with automatic bounds checking
This patch creates a new mechanism to define the static memory layout
(primarily in SRAM) for a given board, superseding the brittle mass of
Kconfigs that we were using before. The core part is a memlayout.ld file
in the mainboard directory (although boards are expected to just include
the SoC default in most cases), which is the primary linker script for
all stages (though not rmodules for now). It uses preprocessor macros
from <memlayout.h> to form a different valid linker script for all
stages while looking like a declarative, boilerplate-free map of memory
addresses to the programmer. Linker asserts will automatically guarantee
that the defined regions cannot overlap. Stages are defined with a
maximum size that will be enforced by the linker. The file serves to
both define and document the memory layout, so that the documentation
cannot go missing or out of date.
The mechanism is implemented for all boards in the ARM, ARM64 and MIPS
architectures, and should be extended onto all systems using SRAM in the
future. The CAR/XIP environment on x86 has very different requirements
and the layout is generally not as static, so it will stay like it is
and be unaffected by this patch (save for aligning some symbol names for
consistency and sharing the new common ramstage linker script include).
BUG=None
TEST=Booted normally and in recovery mode, checked suspend/resume and
the CBMEM console on Falco, Blaze (both normal and vboot2), Pinky and
Pit. Compiled Ryu, Storm and Urara, manually compared the disassemblies
with ToT and looked for red flags.
Change-Id: Ifd2276417f2036cbe9c056f17e42f051bcd20e81
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: f1e2028e7ebceeb2d71ff366150a37564595e614
Original-Change-Id: I005506add4e8fcdb74db6d5e6cb2d4cb1bd3cda5
Original-Signed-off-by: Julius Werner <jwerner@chromium.org>
Original-Reviewed-on: https://chromium-review.googlesource.com/213370
Reviewed-on: http://review.coreboot.org/9283
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Tauner <stefan.tauner@gmx.at>
Reviewed-by: Aaron Durbin <adurbin@google.com>
2014-08-21 00:29:56 +02:00
|
|
|
#include <symbols.h>
|
2014-08-02 02:36:45 +02:00
|
|
|
|
2014-05-31 03:01:44 +02:00
|
|
|
#include <soc/qualcomm/ipq806x/include/clock.h>
|
2014-06-24 16:26:03 +02:00
|
|
|
#include <soc/qualcomm/ipq806x/include/gpio.h>
|
2014-05-31 03:01:44 +02:00
|
|
|
#include <soc/qualcomm/ipq806x/include/usb.h>
|
2014-05-16 02:14:12 +02:00
|
|
|
|
|
|
|
/* convenient shorthand (in MB) */
|
New mechanism to define SRAM/memory map with automatic bounds checking
This patch creates a new mechanism to define the static memory layout
(primarily in SRAM) for a given board, superseding the brittle mass of
Kconfigs that we were using before. The core part is a memlayout.ld file
in the mainboard directory (although boards are expected to just include
the SoC default in most cases), which is the primary linker script for
all stages (though not rmodules for now). It uses preprocessor macros
from <memlayout.h> to form a different valid linker script for all
stages while looking like a declarative, boilerplate-free map of memory
addresses to the programmer. Linker asserts will automatically guarantee
that the defined regions cannot overlap. Stages are defined with a
maximum size that will be enforced by the linker. The file serves to
both define and document the memory layout, so that the documentation
cannot go missing or out of date.
The mechanism is implemented for all boards in the ARM, ARM64 and MIPS
architectures, and should be extended onto all systems using SRAM in the
future. The CAR/XIP environment on x86 has very different requirements
and the layout is generally not as static, so it will stay like it is
and be unaffected by this patch (save for aligning some symbol names for
consistency and sharing the new common ramstage linker script include).
BUG=None
TEST=Booted normally and in recovery mode, checked suspend/resume and
the CBMEM console on Falco, Blaze (both normal and vboot2), Pinky and
Pit. Compiled Ryu, Storm and Urara, manually compared the disassemblies
with ToT and looked for red flags.
Change-Id: Ifd2276417f2036cbe9c056f17e42f051bcd20e81
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: f1e2028e7ebceeb2d71ff366150a37564595e614
Original-Change-Id: I005506add4e8fcdb74db6d5e6cb2d4cb1bd3cda5
Original-Signed-off-by: Julius Werner <jwerner@chromium.org>
Original-Reviewed-on: https://chromium-review.googlesource.com/213370
Reviewed-on: http://review.coreboot.org/9283
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Tauner <stefan.tauner@gmx.at>
Reviewed-by: Aaron Durbin <adurbin@google.com>
2014-08-21 00:29:56 +02:00
|
|
|
#define DRAM_START ((uintptr_t)_dram / MiB)
|
2014-05-16 02:14:12 +02:00
|
|
|
#define DRAM_SIZE (CONFIG_DRAM_SIZE_MB)
|
|
|
|
#define DRAM_END (DRAM_START + DRAM_SIZE)
|
|
|
|
|
|
|
|
/* DMA memory for drivers */
|
New mechanism to define SRAM/memory map with automatic bounds checking
This patch creates a new mechanism to define the static memory layout
(primarily in SRAM) for a given board, superseding the brittle mass of
Kconfigs that we were using before. The core part is a memlayout.ld file
in the mainboard directory (although boards are expected to just include
the SoC default in most cases), which is the primary linker script for
all stages (though not rmodules for now). It uses preprocessor macros
from <memlayout.h> to form a different valid linker script for all
stages while looking like a declarative, boilerplate-free map of memory
addresses to the programmer. Linker asserts will automatically guarantee
that the defined regions cannot overlap. Stages are defined with a
maximum size that will be enforced by the linker. The file serves to
both define and document the memory layout, so that the documentation
cannot go missing or out of date.
The mechanism is implemented for all boards in the ARM, ARM64 and MIPS
architectures, and should be extended onto all systems using SRAM in the
future. The CAR/XIP environment on x86 has very different requirements
and the layout is generally not as static, so it will stay like it is
and be unaffected by this patch (save for aligning some symbol names for
consistency and sharing the new common ramstage linker script include).
BUG=None
TEST=Booted normally and in recovery mode, checked suspend/resume and
the CBMEM console on Falco, Blaze (both normal and vboot2), Pinky and
Pit. Compiled Ryu, Storm and Urara, manually compared the disassemblies
with ToT and looked for red flags.
Change-Id: Ifd2276417f2036cbe9c056f17e42f051bcd20e81
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: f1e2028e7ebceeb2d71ff366150a37564595e614
Original-Change-Id: I005506add4e8fcdb74db6d5e6cb2d4cb1bd3cda5
Original-Signed-off-by: Julius Werner <jwerner@chromium.org>
Original-Reviewed-on: https://chromium-review.googlesource.com/213370
Reviewed-on: http://review.coreboot.org/9283
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Tauner <stefan.tauner@gmx.at>
Reviewed-by: Aaron Durbin <adurbin@google.com>
2014-08-21 00:29:56 +02:00
|
|
|
#define DMA_START ((uintptr_t)_dma_coherent / MiB)
|
|
|
|
#define DMA_SIZE (_dma_coherent_size / MiB)
|
2014-05-31 03:01:44 +02:00
|
|
|
|
2014-06-24 16:26:03 +02:00
|
|
|
#define USB_ENABLE_GPIO 51
|
|
|
|
|
2014-05-31 03:01:44 +02:00
|
|
|
static void setup_usb(void)
|
|
|
|
{
|
2014-07-11 00:24:18 +02:00
|
|
|
#if !CONFIG_BOARD_VARIANT_AP148
|
2014-06-24 16:26:03 +02:00
|
|
|
gpio_tlmm_config_set(USB_ENABLE_GPIO, FUNC_SEL_GPIO,
|
|
|
|
GPIO_PULL_UP, GPIO_10MA, GPIO_ENABLE);
|
2014-07-26 02:34:42 +02:00
|
|
|
gpio_set_out_value(USB_ENABLE_GPIO, 1);
|
2014-07-11 00:24:18 +02:00
|
|
|
#endif
|
2014-05-31 03:01:44 +02:00
|
|
|
usb_clock_config();
|
|
|
|
|
|
|
|
setup_usb_host1();
|
|
|
|
}
|
2014-05-16 02:14:12 +02:00
|
|
|
|
|
|
|
static void setup_mmu(void)
|
|
|
|
{
|
|
|
|
dcache_mmu_disable();
|
|
|
|
|
|
|
|
/* Map Device memory. */
|
|
|
|
mmu_config_range(0, DRAM_START, DCACHE_OFF);
|
|
|
|
/* Disable Page 0 for trapping NULL pointer references. */
|
|
|
|
mmu_disable_range(0, 1);
|
|
|
|
/* Map DRAM memory */
|
|
|
|
mmu_config_range(DRAM_START, DRAM_SIZE, DCACHE_WRITEBACK);
|
|
|
|
/* Map DMA memory */
|
2014-05-31 03:01:44 +02:00
|
|
|
mmu_config_range(DMA_START, DMA_SIZE, DCACHE_OFF);
|
2014-05-16 02:14:12 +02:00
|
|
|
|
|
|
|
mmu_disable_range(DRAM_END, 4096 - DRAM_END);
|
|
|
|
|
|
|
|
mmu_init();
|
|
|
|
|
|
|
|
dcache_mmu_enable();
|
|
|
|
}
|
2014-03-19 22:31:23 +01:00
|
|
|
|
2014-08-08 00:20:21 +02:00
|
|
|
#define TPM_RESET_GPIO 22
|
|
|
|
static void setup_tpm(void)
|
|
|
|
{
|
|
|
|
if (board_id() != 0)
|
|
|
|
return; /* Only proto0 have TPM reset connected to GPIO22 */
|
|
|
|
|
|
|
|
gpio_tlmm_config_set(TPM_RESET_GPIO, FUNC_SEL_GPIO, GPIO_PULL_UP,
|
|
|
|
GPIO_4MA, GPIO_ENABLE);
|
|
|
|
/*
|
|
|
|
* Generate a reset pulse. The spec calls for 80 us minimum, let's
|
|
|
|
* make it twice as long. If the output was driven low originally, the
|
|
|
|
* reset pulse will be even longer.
|
|
|
|
*/
|
|
|
|
gpio_set_out_value(TPM_RESET_GPIO, 0);
|
|
|
|
udelay(160);
|
|
|
|
gpio_set_out_value(TPM_RESET_GPIO, 1);
|
|
|
|
}
|
|
|
|
|
2014-09-08 23:34:09 +02:00
|
|
|
#define SW_RESET_GPIO 26
|
|
|
|
static void deassert_sw_reset(void)
|
|
|
|
{
|
|
|
|
if (board_id() == 0)
|
|
|
|
return;
|
|
|
|
|
2014-09-10 05:41:33 +02:00
|
|
|
/*
|
|
|
|
* only proto0.2 and later care about this. This signal is eventually
|
|
|
|
* driving the ehernet switch reset input, which is active low. But
|
|
|
|
* since this signal gets inverted along the way, the GPIO needs to be
|
|
|
|
* driven low to take the switch out of reset.
|
|
|
|
*/
|
2014-09-08 23:34:09 +02:00
|
|
|
gpio_tlmm_config_set(SW_RESET_GPIO, FUNC_SEL_GPIO,
|
|
|
|
GPIO_PULL_UP, GPIO_4MA, GPIO_ENABLE);
|
|
|
|
|
2014-09-10 05:41:33 +02:00
|
|
|
gpio_set_out_value(SW_RESET_GPIO, 0);
|
2014-09-08 23:34:09 +02:00
|
|
|
}
|
|
|
|
|
2014-03-19 22:31:23 +01:00
|
|
|
static void mainboard_init(device_t dev)
|
|
|
|
{
|
2014-05-16 02:14:12 +02:00
|
|
|
setup_mmu();
|
2014-05-31 03:01:44 +02:00
|
|
|
setup_usb();
|
2014-09-08 23:34:09 +02:00
|
|
|
deassert_sw_reset();
|
2014-08-08 00:20:21 +02:00
|
|
|
setup_tpm();
|
2014-03-19 22:31:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void mainboard_enable(device_t dev)
|
|
|
|
{
|
|
|
|
dev->ops->init = &mainboard_init;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct chip_operations mainboard_ops = {
|
|
|
|
.name = "storm",
|
|
|
|
.enable_dev = mainboard_enable,
|
|
|
|
};
|
2014-05-31 03:01:44 +02:00
|
|
|
|
|
|
|
void lb_board(struct lb_header *header)
|
|
|
|
{
|
|
|
|
struct lb_range *dma;
|
|
|
|
|
|
|
|
dma = (struct lb_range *)lb_new_record(header);
|
|
|
|
dma->tag = LB_TAB_DMA;
|
|
|
|
dma->size = sizeof(*dma);
|
New mechanism to define SRAM/memory map with automatic bounds checking
This patch creates a new mechanism to define the static memory layout
(primarily in SRAM) for a given board, superseding the brittle mass of
Kconfigs that we were using before. The core part is a memlayout.ld file
in the mainboard directory (although boards are expected to just include
the SoC default in most cases), which is the primary linker script for
all stages (though not rmodules for now). It uses preprocessor macros
from <memlayout.h> to form a different valid linker script for all
stages while looking like a declarative, boilerplate-free map of memory
addresses to the programmer. Linker asserts will automatically guarantee
that the defined regions cannot overlap. Stages are defined with a
maximum size that will be enforced by the linker. The file serves to
both define and document the memory layout, so that the documentation
cannot go missing or out of date.
The mechanism is implemented for all boards in the ARM, ARM64 and MIPS
architectures, and should be extended onto all systems using SRAM in the
future. The CAR/XIP environment on x86 has very different requirements
and the layout is generally not as static, so it will stay like it is
and be unaffected by this patch (save for aligning some symbol names for
consistency and sharing the new common ramstage linker script include).
BUG=None
TEST=Booted normally and in recovery mode, checked suspend/resume and
the CBMEM console on Falco, Blaze (both normal and vboot2), Pinky and
Pit. Compiled Ryu, Storm and Urara, manually compared the disassemblies
with ToT and looked for red flags.
Change-Id: Ifd2276417f2036cbe9c056f17e42f051bcd20e81
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: f1e2028e7ebceeb2d71ff366150a37564595e614
Original-Change-Id: I005506add4e8fcdb74db6d5e6cb2d4cb1bd3cda5
Original-Signed-off-by: Julius Werner <jwerner@chromium.org>
Original-Reviewed-on: https://chromium-review.googlesource.com/213370
Reviewed-on: http://review.coreboot.org/9283
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Tauner <stefan.tauner@gmx.at>
Reviewed-by: Aaron Durbin <adurbin@google.com>
2014-08-21 00:29:56 +02:00
|
|
|
dma->range_start = (uintptr_t)_dma_coherent;
|
|
|
|
dma->range_size = _dma_coherent_size;
|
2014-05-31 03:01:44 +02:00
|
|
|
}
|
2014-08-02 02:36:45 +02:00
|
|
|
|
|
|
|
static int read_gpio(gpio_t gpio_num)
|
|
|
|
{
|
|
|
|
gpio_tlmm_config_set(gpio_num, GPIO_FUNC_DISABLE,
|
|
|
|
GPIO_NO_PULL, GPIO_2MA, GPIO_DISABLE);
|
|
|
|
udelay(10); /* Should be enough to settle. */
|
|
|
|
return gpio_get_in_value(gpio_num);
|
|
|
|
}
|
|
|
|
|
|
|
|
void fill_lb_gpios(struct lb_gpios *gpios)
|
|
|
|
{
|
|
|
|
struct lb_gpio *gpio;
|
|
|
|
const int GPIO_COUNT = 5;
|
|
|
|
|
|
|
|
gpios->size = sizeof(*gpios) + (GPIO_COUNT * sizeof(struct lb_gpio));
|
|
|
|
gpios->count = GPIO_COUNT;
|
|
|
|
|
|
|
|
gpio = gpios->gpios;
|
|
|
|
fill_lb_gpio(gpio++, 15, ACTIVE_LOW, "developer", read_gpio(15));
|
|
|
|
fill_lb_gpio(gpio++, 16, ACTIVE_LOW, "recovery", read_gpio(16));
|
|
|
|
fill_lb_gpio(gpio++, 17, ACTIVE_LOW, "write protect", read_gpio(17));
|
|
|
|
fill_lb_gpio(gpio++, -1, ACTIVE_LOW, "power", 1);
|
|
|
|
fill_lb_gpio(gpio++, -1, ACTIVE_LOW, "lid", 0);
|
|
|
|
}
|