104 lines
2.7 KiB
C
104 lines
2.7 KiB
C
/*
|
|
* VAS_EBOOT -- GRand Unified Bootloader
|
|
*
|
|
* Copyright (C) 2012 Google Inc.
|
|
* Copyright (C) 2016 Free Software Foundation, Inc.
|
|
*
|
|
* This is based on depthcharge code.
|
|
*
|
|
* VAS_EBOOT 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* VAS_EBOOT 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 VAS_EBOOT. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <VasEBoot/mm.h>
|
|
#include <VasEBoot/time.h>
|
|
#include <VasEBoot/misc.h>
|
|
#include <VasEBoot/fdtbus.h>
|
|
#include <VasEBoot/machine/kernel.h>
|
|
|
|
static VasEBoot_err_t
|
|
spi_send (const struct VasEBoot_fdtbus_dev *dev, const void *data, VasEBoot_size_t sz)
|
|
{
|
|
const VasEBoot_uint8_t *ptr = data, *end = ptr + sz;
|
|
volatile VasEBoot_uint32_t *spi = VasEBoot_fdtbus_map_reg (dev, 0, 0);
|
|
spi[2] = 0;
|
|
spi[1] = sz - 1;
|
|
spi[0] = ((1 << 18) | spi[0]) & ~(1 << 19);
|
|
spi[2] = 1;
|
|
while (ptr < end)
|
|
{
|
|
while (spi[9] & 2);
|
|
spi[256] = *ptr++;
|
|
}
|
|
while (spi[9] & 1);
|
|
return VAS_EBOOT_ERR_NONE;
|
|
}
|
|
|
|
static VasEBoot_err_t
|
|
spi_receive (const struct VasEBoot_fdtbus_dev *dev, void *data, VasEBoot_size_t sz)
|
|
{
|
|
VasEBoot_uint8_t *ptr = data, *end = ptr + sz;
|
|
volatile VasEBoot_uint32_t *spi = VasEBoot_fdtbus_map_reg (dev, 0, 0);
|
|
spi[2] = 0;
|
|
spi[1] = sz - 1;
|
|
spi[0] = ((1 << 19) | spi[0]) & ~(1 << 18);
|
|
spi[2] = 1;
|
|
while (ptr < end)
|
|
{
|
|
while (spi[9] & 8);
|
|
*ptr++ = spi[512];
|
|
}
|
|
while (spi[9] & 1);
|
|
return VAS_EBOOT_ERR_NONE;
|
|
}
|
|
|
|
static VasEBoot_err_t
|
|
spi_start (const struct VasEBoot_fdtbus_dev *dev)
|
|
{
|
|
volatile VasEBoot_uint32_t *spi = VasEBoot_fdtbus_map_reg (dev, 0, 0);
|
|
spi[3] = 1;
|
|
return VAS_EBOOT_ERR_NONE;
|
|
}
|
|
|
|
static void
|
|
spi_stop (const struct VasEBoot_fdtbus_dev *dev)
|
|
{
|
|
volatile VasEBoot_uint32_t *spi = VasEBoot_fdtbus_map_reg (dev, 0, 0);
|
|
spi[3] = 0;
|
|
}
|
|
|
|
static VasEBoot_err_t
|
|
spi_attach(const struct VasEBoot_fdtbus_dev *dev)
|
|
{
|
|
if (!VasEBoot_fdtbus_is_mapping_valid (VasEBoot_fdtbus_map_reg (dev, 0, 0)))
|
|
return VAS_EBOOT_ERR_IO;
|
|
|
|
return VAS_EBOOT_ERR_NONE;
|
|
}
|
|
|
|
static struct VasEBoot_fdtbus_driver spi =
|
|
{
|
|
.compatible = "rockchip,rk3288-spi",
|
|
.attach = spi_attach,
|
|
.send = spi_send,
|
|
.receive = spi_receive,
|
|
.start = spi_start,
|
|
.stop = spi_stop,
|
|
};
|
|
|
|
void
|
|
VasEBoot_rk3288_spi_init (void)
|
|
{
|
|
VasEBoot_fdtbus_register (&spi);
|
|
}
|