diff options
author | ian <ian@FreeBSD.org> | 2014-05-16 00:14:50 +0000 |
---|---|---|
committer | ian <ian@FreeBSD.org> | 2014-05-16 00:14:50 +0000 |
commit | e58449eb7bc00b546bc709cb6348a17b98b8e5e6 (patch) | |
tree | 22b6c19e6005b89913582be3c50a3f7a2933415b /sys/arm/ti | |
parent | f083c46ffb97127283c21b8ede4df56856ff45d2 (diff) | |
download | FreeBSD-src-e58449eb7bc00b546bc709cb6348a17b98b8e5e6.zip FreeBSD-src-e58449eb7bc00b546bc709cb6348a17b98b8e5e6.tar.gz |
MFC r262409, r262411, r262413, r262420, r262426, r262427, r262440, r262456,
r262482, r262483, r262531,
Move the declaration for mpentry() into a header file instead of pasting
it into a bunch of different .c files.
If the L2 cache type is PIPT, pass a physical address for a flush.
Actually set the proper bit to indicate TTB shared memory.
Add a new cache maintenance function, idcache_inv_all, to the table, and
implementations for each of the chips we support.
Invalidate caches immediately upon entry to init_secondary(). Also set
the Bufferable bit in the PDE entries of the secondary processor startup
pagetables.
Add the bits needed to run SMP on imx6.
Invalidate the SCU cache tag ram on all 4 cores, not just 1-3.
Minor tweaks to the imx GPT timer
Vybrid enhancements...
- Pin configuration is a complete iomux register now and includes
drive strength, pull mode, mux mode, speed, etc.
- Add i2c devices to the tree
- Add IPG clock
- Add support for Quartz Module.
- Pin configuration is a complete iomux register now and includes
drive strength, pull mode, mux mode, speed, etc.
- Add i2c devices to the tree
- Add IPG clock
Diffstat (limited to 'sys/arm/ti')
-rw-r--r-- | sys/arm/ti/omap4/omap4_mp.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/arm/ti/omap4/omap4_mp.c b/sys/arm/ti/omap4/omap4_mp.c index c42cae5..178db20 100644 --- a/sys/arm/ti/omap4/omap4_mp.c +++ b/sys/arm/ti/omap4/omap4_mp.c @@ -38,9 +38,6 @@ __FBSDID("$FreeBSD$"); #include <arm/ti/ti_smc.h> #include <arm/ti/omap4/omap4_smc.h> -void mpentry(void); -void mptramp(void); - void platform_mp_init_secondary(void) { |