Switch Rockchip RK3188 SoC to use the platform code.
Reviewed by: andrew, manu Differential Revision: https://reviews.freebsd.org/D8769
This commit is contained in:
parent
d1c38239e8
commit
a89938019a
@ -23,8 +23,13 @@ ident RK3188
|
||||
include "std.armv6"
|
||||
include "../rockchip/std.rk30xx"
|
||||
|
||||
options SOC_ROCKCHIP_RK3188
|
||||
|
||||
options SCHED_ULE # ULE scheduler
|
||||
options SMP # Enable multiple cores
|
||||
options PLATFORM
|
||||
options PLATFORM_SMP
|
||||
options MULTIDELAY
|
||||
|
||||
# Root mount from MMC/SD card
|
||||
options ROOTDEVNAME=\"ufs:/dev/mmcsd0\"
|
||||
|
@ -42,33 +42,25 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm.h>
|
||||
#include <vm/pmap.h>
|
||||
|
||||
#include <machine/armreg.h>
|
||||
#include <machine/bus.h>
|
||||
#include <machine/machdep.h>
|
||||
#include <machine/platform.h>
|
||||
#include <machine/platform.h>
|
||||
#include <machine/platformvar.h>
|
||||
|
||||
#include <arm/rockchip/rk30xx_wdog.h>
|
||||
#include <arm/rockchip/rk30xx_mp.h>
|
||||
|
||||
vm_offset_t
|
||||
platform_lastaddr(void)
|
||||
#include "platform_if.h"
|
||||
|
||||
static vm_offset_t
|
||||
rk30xx_lastaddr(platform_t plat)
|
||||
{
|
||||
|
||||
return (devmap_lastaddr());
|
||||
}
|
||||
|
||||
void
|
||||
platform_probe_and_attach(void)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void
|
||||
platform_gpio_init(void)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
platform_late_init(void)
|
||||
static void
|
||||
rk30xx_late_init(platform_t plat)
|
||||
{
|
||||
|
||||
/* Enable cache */
|
||||
@ -79,8 +71,8 @@ platform_late_init(void)
|
||||
/*
|
||||
* Set up static device mappings.
|
||||
*/
|
||||
int
|
||||
platform_devmap_init(void)
|
||||
static int
|
||||
rk30xx_devmap_init(platform_t plat)
|
||||
{
|
||||
|
||||
devmap_add_entry(0x10000000, 0x00200000);
|
||||
@ -89,11 +81,27 @@ platform_devmap_init(void)
|
||||
return (0);
|
||||
}
|
||||
|
||||
void
|
||||
cpu_reset()
|
||||
static void
|
||||
rk30xx_cpu_reset()
|
||||
{
|
||||
|
||||
rk30_wd_watchdog_reset();
|
||||
printf("Reset failed!\n");
|
||||
while (1);
|
||||
}
|
||||
|
||||
#if defined(SOC_ROCKCHIP_RK3188)
|
||||
static platform_method_t rk30xx_methods[] = {
|
||||
PLATFORMMETHOD(platform_lastaddr, rk30xx_lastaddr),
|
||||
PLATFORMMETHOD(platform_devmap_init, rk30xx_devmap_init),
|
||||
PLATFORMMETHOD(platform_late_init, rk30xx_late_init),
|
||||
PLATFORMMETHOD(platform_cpu_reset, rk30xx_cpu_reset),
|
||||
|
||||
#ifdef SMP
|
||||
PLATFORMMETHOD(platform_mp_start_ap, rk30xx_mp_start_ap),
|
||||
PLATFORMMETHOD(platform_mp_setmaxid, rk30xx_mp_setmaxid),
|
||||
#endif
|
||||
PLATFORMMETHOD_END,
|
||||
};
|
||||
FDT_PLATFORM_DEF(rk30xx, "RK3188", 0, "rockchip,rk3188", 200);
|
||||
#endif
|
||||
|
@ -37,9 +37,13 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/pmap.h>
|
||||
|
||||
#include <machine/cpu.h>
|
||||
#include <machine/cpu-v6.h>
|
||||
#include <machine/smp.h>
|
||||
#include <machine/fdt.h>
|
||||
#include <machine/intr.h>
|
||||
#include <machine/platformvar.h>
|
||||
|
||||
#include <arm/rockchip/rk30xx_mp.h>
|
||||
|
||||
#define SCU_PHYSBASE 0x1013c000
|
||||
#define SCU_SIZE 0x100
|
||||
@ -80,7 +84,7 @@ rk30xx_boot2(void)
|
||||
}
|
||||
|
||||
void
|
||||
platform_mp_setmaxid(void)
|
||||
rk30xx_mp_setmaxid(platform_t plat)
|
||||
{
|
||||
bus_space_handle_t scu;
|
||||
int ncpu;
|
||||
@ -101,7 +105,7 @@ platform_mp_setmaxid(void)
|
||||
}
|
||||
|
||||
void
|
||||
platform_mp_start_ap(void)
|
||||
rk30xx_mp_start_ap(platform_t plat)
|
||||
{
|
||||
bus_space_handle_t scu;
|
||||
bus_space_handle_t imem;
|
||||
|
38
sys/arm/rockchip/rk30xx_mp.h
Normal file
38
sys/arm/rockchip/rk30xx_mp.h
Normal file
@ -0,0 +1,38 @@
|
||||
/*-
|
||||
* Copyright (C) 2016 Ganbold Tsagaankhuu <ganbold@freebsd.org>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#ifndef _RK30XX_MP_H_
|
||||
#define _RK30XX_MP_H_
|
||||
|
||||
void rk30xx_mp_setmaxid(platform_t plat);
|
||||
void rk30xx_mp_start_ap(platform_t plat);
|
||||
|
||||
#endif /* _RK30XX_MP_H_ */
|
@ -64,6 +64,7 @@ SOC_MV_LOKIPLUS opt_global.h
|
||||
SOC_MV_ORION opt_global.h
|
||||
SOC_OMAP3 opt_global.h
|
||||
SOC_OMAP4 opt_global.h
|
||||
SOC_ROCKCHIP_RK3188 opt_global.h
|
||||
SOC_TI_AM335X opt_global.h
|
||||
SOC_TEGRA2 opt_global.h
|
||||
XSCALE_CACHE_READ_WRITE_ALLOCATE opt_global.h
|
||||
|
Loading…
x
Reference in New Issue
Block a user