2010-04-01 19:30:58 +08:00
|
|
|
/*
|
|
|
|
* arch/arm/mach-spear3xx/spear3xx.c
|
|
|
|
*
|
|
|
|
* SPEAr3XX machines common source file
|
|
|
|
*
|
2012-03-23 02:47:43 +08:00
|
|
|
* Copyright (C) 2009-2012 ST Microelectronics
|
2015-07-18 07:23:50 +08:00
|
|
|
* Viresh Kumar <vireshk@kernel.org>
|
2010-04-01 19:30:58 +08:00
|
|
|
*
|
|
|
|
* This file is licensed under the terms of the GNU General Public
|
|
|
|
* License version 2. This program is licensed "as is" without any
|
|
|
|
* warranty of any kind, whether express or implied.
|
|
|
|
*/
|
|
|
|
|
2012-03-26 13:09:43 +08:00
|
|
|
#define pr_fmt(fmt) "SPEAr3xx: " fmt
|
|
|
|
|
2012-03-23 02:47:43 +08:00
|
|
|
#include <linux/amba/pl022.h>
|
2013-03-13 00:00:03 +08:00
|
|
|
#include <linux/amba/pl080.h>
|
|
|
|
#include <linux/clk.h>
|
2010-04-01 19:30:58 +08:00
|
|
|
#include <linux/io.h>
|
2013-03-13 00:00:03 +08:00
|
|
|
#include <asm/mach/map.h>
|
2012-12-02 22:49:04 +08:00
|
|
|
#include "pl080.h"
|
|
|
|
#include "generic.h"
|
2012-04-12 01:30:11 +08:00
|
|
|
#include <mach/spear.h>
|
2012-12-03 00:59:57 +08:00
|
|
|
#include <mach/misc_regs.h>
|
2010-04-01 19:30:58 +08:00
|
|
|
|
2012-03-23 02:47:43 +08:00
|
|
|
/* ssp device registration */
|
|
|
|
struct pl022_ssp_controller pl022_plat_data = {
|
|
|
|
.bus_id = 0,
|
|
|
|
.enable_dma = 1,
|
|
|
|
.dma_filter = pl08x_filter_id,
|
|
|
|
.dma_tx_param = "ssp0_tx",
|
|
|
|
.dma_rx_param = "ssp0_rx",
|
|
|
|
/*
|
|
|
|
* This is number of spi devices that can be connected to spi. There are
|
|
|
|
* two type of chipselects on which slave devices can work. One is chip
|
|
|
|
* select provided by spi masters other is controlled through external
|
|
|
|
* gpio's. We can't use chipselect provided from spi master (because as
|
|
|
|
* soon as FIFO becomes empty, CS is disabled and transfer ends). So
|
|
|
|
* this number now depends on number of gpios available for spi. each
|
|
|
|
* slave on each master requires a separate gpio pin.
|
|
|
|
*/
|
|
|
|
.num_chipselect = 2,
|
|
|
|
};
|
|
|
|
|
2012-03-26 12:59:23 +08:00
|
|
|
/* dmac device registration */
|
|
|
|
struct pl08x_platform_data pl080_plat_data = {
|
2017-05-21 05:42:50 +08:00
|
|
|
.memcpy_burst_size = PL08X_BURST_SZ_16,
|
|
|
|
.memcpy_bus_width = PL08X_BUS_WIDTH_32_BITS,
|
|
|
|
.memcpy_prot_buff = true,
|
|
|
|
.memcpy_prot_cache = true,
|
2012-03-26 12:59:23 +08:00
|
|
|
.lli_buses = PL08X_AHB1,
|
|
|
|
.mem_buses = PL08X_AHB1,
|
2013-06-20 03:38:28 +08:00
|
|
|
.get_xfer_signal = pl080_get_signal,
|
|
|
|
.put_xfer_signal = pl080_put_signal,
|
2010-04-01 19:30:58 +08:00
|
|
|
};
|
|
|
|
|
2012-03-23 02:47:43 +08:00
|
|
|
/*
|
|
|
|
* Following will create 16MB static virtual/physical mappings
|
|
|
|
* PHYSICAL VIRTUAL
|
|
|
|
* 0xD0000000 0xFD000000
|
|
|
|
* 0xFC000000 0xFC000000
|
|
|
|
*/
|
2010-04-01 19:30:58 +08:00
|
|
|
struct map_desc spear3xx_io_desc[] __initdata = {
|
|
|
|
{
|
2012-12-03 00:59:57 +08:00
|
|
|
.virtual = (unsigned long)VA_SPEAR_ICM1_2_BASE,
|
2012-12-02 21:45:27 +08:00
|
|
|
.pfn = __phys_to_pfn(SPEAR_ICM1_2_BASE),
|
2012-03-23 02:47:43 +08:00
|
|
|
.length = SZ_16M,
|
2010-04-01 19:30:58 +08:00
|
|
|
.type = MT_DEVICE
|
|
|
|
}, {
|
2012-12-03 00:59:57 +08:00
|
|
|
.virtual = (unsigned long)VA_SPEAR_ICM3_SMI_CTRL_BASE,
|
2012-12-02 21:45:27 +08:00
|
|
|
.pfn = __phys_to_pfn(SPEAR_ICM3_SMI_CTRL_BASE),
|
2012-03-23 02:47:43 +08:00
|
|
|
.length = SZ_16M,
|
2010-04-01 19:30:58 +08:00
|
|
|
.type = MT_DEVICE
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
/* This will create static memory mapping for selected devices */
|
|
|
|
void __init spear3xx_map_io(void)
|
|
|
|
{
|
|
|
|
iotable_init(spear3xx_io_desc, ARRAY_SIZE(spear3xx_io_desc));
|
|
|
|
}
|
2010-04-01 19:31:29 +08:00
|
|
|
|
2012-11-09 03:40:59 +08:00
|
|
|
void __init spear3xx_timer_init(void)
|
2011-02-16 14:40:32 +08:00
|
|
|
{
|
2012-07-10 19:42:45 +08:00
|
|
|
char pclk_name[] = "pll3_clk";
|
2011-02-16 14:40:32 +08:00
|
|
|
struct clk *gpt_clk, *pclk;
|
|
|
|
|
2012-12-03 00:59:57 +08:00
|
|
|
spear3xx_clk_init(MISC_BASE, VA_SPEAR320_SOC_CONFIG_BASE);
|
2012-04-10 11:32:35 +08:00
|
|
|
|
2011-02-16 14:40:32 +08:00
|
|
|
/* get the system timer clock */
|
|
|
|
gpt_clk = clk_get_sys("gpt0", NULL);
|
|
|
|
if (IS_ERR(gpt_clk)) {
|
|
|
|
pr_err("%s:couldn't get clk for gpt\n", __func__);
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get the suitable parent clock for timer*/
|
|
|
|
pclk = clk_get(NULL, pclk_name);
|
|
|
|
if (IS_ERR(pclk)) {
|
|
|
|
pr_err("%s:couldn't get %s as parent for gpt\n",
|
|
|
|
__func__, pclk_name);
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
|
|
|
|
clk_set_parent(gpt_clk, pclk);
|
|
|
|
clk_put(gpt_clk);
|
|
|
|
clk_put(pclk);
|
|
|
|
|
2012-04-21 15:45:37 +08:00
|
|
|
spear_setup_of_timer();
|
2011-02-16 14:40:32 +08:00
|
|
|
}
|