blob: db4ec3db478235dca5224f547b580f6d40f62c8b [file] [log] [blame]
huang linc14b54d2016-03-02 18:38:40 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2016 Rockchip Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 */
16
17#include <soc/clock.h>
Lin Huangf5702e72016-03-19 22:45:19 +080018#include <soc/grf.h>
19
20struct rk3399_grf_regs * const rk3399_grf = (void *)GRF_BASE;
21struct rk3399_pmugrf_regs * const rk3399_pmugrf = (void *)PMUGRF_BASE;
22struct rk3399_pmusgrf_regs * const rk3399_pmusgrf = (void *)PMUSGRF_BASE;
huang linc14b54d2016-03-02 18:38:40 +080023
24void rkclk_configure_spi(unsigned int bus, unsigned int hz)
25{
26}