blob: 5f4d0ae80a6679cdaf7ed544b5f2eeecd5640cc8 [file] [log] [blame]
/*
* Copyright 2014 Google Inc.
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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.
*
* 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., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*/
#include <assert.h>
#include <libpayload.h>
#include "base/init_funcs.h"
#include "board/rush_ryu/power_ops.h"
#include "boot/fit.h"
#include "boot/commandline.h"
#include "config.h"
#include "drivers/bus/spi/tegra.h"
#include "drivers/bus/i2c/tegra.h"
#include "drivers/bus/usb/usb.h"
#include "drivers/gpio/gpio.h"
#include "drivers/gpio/sysinfo.h"
#include "drivers/gpio/tegra.h"
#include "drivers/dma/tegra_apb.h"
#include "drivers/flash/spi.h"
#include "drivers/tpm/slb9635_i2c.h"
#include "drivers/tpm/tpm.h"
#include "drivers/storage/tegra_mmc.h"
#include "drivers/ec/cros/i2c.h"
#include "vboot/util/flag.h"
#include "vboot/util/display.h"
enum {
CLK_RST_BASE = 0x60006000,
CLK_RST_L_RST_SET = CLK_RST_BASE + 0x300,
CLK_RST_L_RST_CLR = CLK_RST_BASE + 0x304,
CLK_RST_H_RST_SET = CLK_RST_BASE + 0x308,
CLK_RST_H_RST_CLR = CLK_RST_BASE + 0x30c,
CLK_RST_U_RST_SET = CLK_RST_BASE + 0x310,
CLK_RST_U_RST_CLR = CLK_RST_BASE + 0x314,
CLK_RST_X_RST_SET = CLK_RST_BASE + 0x290,
CLK_RST_X_RST_CLR = CLK_RST_BASE + 0x294
};
enum {
CLK_L_I2C1 = 0x1 << 12,
CLK_H_I2C2 = 0x1 << 22,
CLK_U_I2C3 = 0x1 << 3,
CLK_H_I2C5 = 0x1 << 15,
CLK_X_I2C6 = 0x1 << 6
};
static int lid_get_always_open (struct GpioOps *me)
{
return 1;
}
static GpioOps always_open_lid = {
.get = lid_get_always_open,
};
const char *mainboard_commandline(void)
{
return NULL;
}
static void choose_devicetree_by_boardid(void)
{
fit_set_compat_by_rev("google,ryu-rev%d", lib_sysinfo.board_id);
}
static int board_setup(void)
{
sysinfo_install_flags();
choose_devicetree_by_boardid();
void *dma_channel_bases[32];
for (int i = 0; i < ARRAY_SIZE(dma_channel_bases); i++)
dma_channel_bases[i] = (void *)((unsigned long)0x60021000 + 0x40 * i);
TegraApbDmaController *dma_controller =
new_tegra_apb_dma((void *)0x60020000, dma_channel_bases,
ARRAY_SIZE(dma_channel_bases));
TegraSpi *spi4 = new_tegra_spi(0x7000da00, dma_controller,
APBDMA_SLAVE_SL2B4);
flash_set_ops(&new_spi_flash(&spi4->ops, 0x400000)->ops);
TegraI2c *cam_i2c = new_tegra_i2c((void *)0x7000c500, 3,
(void *)CLK_RST_U_RST_SET,
(void *)CLK_RST_U_RST_CLR,
CLK_U_I2C3);
tpm_set_ops(&new_slb9635_i2c(&cam_i2c->ops, 0x20)->base.ops);
TegraI2c *ec_i2c = new_tegra_i2c((void *)0x7000c400, 2,
(void *)CLK_RST_H_RST_SET,
(void *)CLK_RST_H_RST_CLR,
CLK_H_I2C2);
CrosEcI2cBus *cros_ec_i2c_bus = new_cros_ec_i2c_bus(&ec_i2c->ops, 0x1E);
cros_ec_set_bus(&cros_ec_i2c_bus->ops);
TegraI2c *pwr_i2c = new_tegra_i2c((void *)0x7000d000, 5,
(void *)CLK_RST_H_RST_SET,
(void *)CLK_RST_H_RST_CLR,
CLK_H_I2C5);
Tps65913Pmic *pmic = new_tps65913_pmic(&pwr_i2c->ops, 0x58);
TegraGpio *reboot_gpio = new_tegra_gpio_output(GPIO(I, 5));
RyuPowerOps *power = new_ryu_power_ops(&pmic->ops, &reboot_gpio->ops,
0);
power_set_ops(&power->ops);
/* sdmmc4 */
TegraMmcHost *emmc = new_tegra_mmc_host(0x700b0600, 8, 0, NULL, NULL);
list_insert_after(&emmc->mmc.ctrlr.list_node,
&fixed_block_dev_controllers);
/* Careful: the EHCI base is at offset 0x100 from the SoC's IP base */
UsbHostController *usbd = new_usb_hc(EHCI, 0x7d000100);
list_insert_after(&usbd->list_node, &usb_host_controllers);
/* Lid always open for now. */
flag_replace(FLAG_LIDSW, &always_open_lid);
/* Install flag for GPIO EC_IN_RW */
TegraGpio *ec_in_rw = new_tegra_gpio_input(GPIO(U, 4));
flag_install(FLAG_ECINRW, &ec_in_rw->ops);
return 0;
}
INIT_FUNC(board_setup);
static TegraI2c *get_backlight_i2c(void)
{
static TegraI2c *backlight_i2c;
if (backlight_i2c == NULL)
backlight_i2c = new_tegra_i2c((void *)0x7000d100, 6,
(void *)CLK_RST_X_RST_SET,
(void *)CLK_RST_X_RST_CLR,
CLK_X_I2C6);
return backlight_i2c;
}
/* Turn on or turn off the backlight */
static VbError_t backlight_update(uint8_t enable)
{
struct bl_reg {
uint8_t reg;
uint8_t val;
};
static const struct bl_reg bl_on_list[] = {
{0x10, 0x01}, /* Brightness mode: BRTHI/BRTLO */
{0x11, 0x05}, /* maxcurrent: 20ma */
{0x14, 0x7f}, /* ov: 2v, all 6 current sinks enabled */
{0x00, 0x01}, /* backlight on */
{0x04, 0x55}, /* brightness: BRT[11:4] */
/* 0x000: 0%, 0xFFF: 100% */
};
static const struct bl_reg bl_off_list[] = {
{0x00, 0x00}, /* backlight off */
};
TegraI2c *backlight_i2c = get_backlight_i2c();
const struct bl_reg *current;
size_t size, i;
if (enable) {
current = bl_on_list;
size = ARRAY_SIZE(bl_on_list);
} else {
current = bl_off_list;
size = ARRAY_SIZE(bl_off_list);
}
for (i = 0; i < size; ++i) {
i2c_writeb(&backlight_i2c->ops, 0x2c, current->reg,
current->val);
++current;
}
return VBERROR_SUCCESS;
}
/* Coreboot currently sets up the T window for display support. */
#define WIN_ENABLE (1 << 30)
static void * const winbuf_t_start_addr = (void *)(uintptr_t)0x54202000;
static void * const win_t_win_options = (void *)(uintptr_t)0x54201c00;
static VbError_t ryu_display_init(void)
{
uintptr_t phys_addr = lib_sysinfo.framebuffer->physical_address;
/* Set the framebuffer address and enable the T window. */
writel(phys_addr, winbuf_t_start_addr);
writel(readl(win_t_win_options) | WIN_ENABLE, win_t_win_options);
return VBERROR_SUCCESS;
}
static int display_stop(void)
{
/* Disable the T Window. */
writel(readl(win_t_win_options) & ~WIN_ENABLE, win_t_win_options);
return 0;
}
static VbootDisplayOps ryu_display_ops = {
.init = &ryu_display_init,
.backlight_update = &backlight_update,
.stop = &display_stop,
};
static int display_setup(void)
{
if (lib_sysinfo.framebuffer == NULL ||
lib_sysinfo.framebuffer->physical_address == 0)
return 0;
display_set_ops(&ryu_display_ops);
return 0;
}
INIT_FUNC(display_setup);