Blame view

kernel/linux-imx6_3.14.28/arch/arm/mach-spear/spear3xx.c 3.13 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
  /*
   * arch/arm/mach-spear3xx/spear3xx.c
   *
   * SPEAr3XX machines common source file
   *
   * Copyright (C) 2009-2012 ST Microelectronics
   * Viresh Kumar <viresh.linux@gmail.com>
   *
   * 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.
   */
  
  #define pr_fmt(fmt) "SPEAr3xx: " fmt
  
  #include <linux/amba/pl022.h>
  #include <linux/amba/pl080.h>
  #include <linux/clk.h>
  #include <linux/io.h>
  #include <asm/mach/map.h>
  #include "pl080.h"
  #include "generic.h"
  #include <mach/spear.h>
  #include <mach/misc_regs.h>
  
  /* 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,
  };
  
  /* dmac device registration */
  struct pl08x_platform_data pl080_plat_data = {
  	.memcpy_channel = {
  		.bus_id = "memcpy",
  		.cctl_memcpy =
  			(PL080_BSIZE_16 << PL080_CONTROL_SB_SIZE_SHIFT | \
  			PL080_BSIZE_16 << PL080_CONTROL_DB_SIZE_SHIFT | \
  			PL080_WIDTH_32BIT << PL080_CONTROL_SWIDTH_SHIFT | \
  			PL080_WIDTH_32BIT << PL080_CONTROL_DWIDTH_SHIFT | \
  			PL080_CONTROL_PROT_BUFF | PL080_CONTROL_PROT_CACHE | \
  			PL080_CONTROL_PROT_SYS),
  	},
  	.lli_buses = PL08X_AHB1,
  	.mem_buses = PL08X_AHB1,
  	.get_xfer_signal = pl080_get_signal,
  	.put_xfer_signal = pl080_put_signal,
  };
  
  /*
   * Following will create 16MB static virtual/physical mappings
   * PHYSICAL		VIRTUAL
   * 0xD0000000		0xFD000000
   * 0xFC000000		0xFC000000
   */
  struct map_desc spear3xx_io_desc[] __initdata = {
  	{
  		.virtual	= (unsigned long)VA_SPEAR_ICM1_2_BASE,
  		.pfn		= __phys_to_pfn(SPEAR_ICM1_2_BASE),
  		.length		= SZ_16M,
  		.type		= MT_DEVICE
  	}, {
  		.virtual	= (unsigned long)VA_SPEAR_ICM3_SMI_CTRL_BASE,
  		.pfn		= __phys_to_pfn(SPEAR_ICM3_SMI_CTRL_BASE),
  		.length		= SZ_16M,
  		.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));
  }
  
  void __init spear3xx_timer_init(void)
  {
  	char pclk_name[] = "pll3_clk";
  	struct clk *gpt_clk, *pclk;
  
  	spear3xx_clk_init(MISC_BASE, VA_SPEAR320_SOC_CONFIG_BASE);
  
  	/* 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
  ", __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
  ",
  				__func__, pclk_name);
  		BUG();
  	}
  
  	clk_set_parent(gpt_clk, pclk);
  	clk_put(gpt_clk);
  	clk_put(pclk);
  
  	spear_setup_of_timer();
  }