source: mainline/kernel/arch/arm32/src/mach/integratorcp/integratorcp.c@ e2650d3

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since e2650d3 was d7ef14b, checked in by Jiri Svoboda <jiri@…>, 16 years ago

Link kernel to the proper base address for gta02. Change machine_get_memory_size() to machine_get_memory_extents() and trivially implement for gta02.

  • Property mode set to 100644
File size: 8.8 KB
Line 
1/*
2 * Copyright (c) 2009 Vineeth Pillai
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup arm32integratorcp
30 * @{
31 */
32/** @file
33 * @brief ICP drivers.
34 */
35
36#include <interrupt.h>
37#include <ipc/irq.h>
38#include <console/chardev.h>
39#include <genarch/drivers/pl050/pl050.h>
40#include <genarch/kbrd/kbrd.h>
41#include <console/console.h>
42#include <sysinfo/sysinfo.h>
43#include <print.h>
44#include <ddi/device.h>
45#include <mm/page.h>
46#include <mm/frame.h>
47#include <arch/mm/frame.h>
48#include <arch/mach/integratorcp/integratorcp.h>
49#include <genarch/fb/fb.h>
50#include <genarch/fb/visuals.h>
51#include <ddi/ddi.h>
52#include <print.h>
53
54#define SDRAM_SIZE (sdram[((*(uint32_t *)(ICP_CMCR+ICP_SDRAMCR_OFFSET) & ICP_SDRAM_MASK) >> 2)])
55static parea_t fb_parea;
56static icp_hw_map_t icp_hw_map;
57static irq_t icp_timer_irq;
58struct arm_machine_ops icp_machine_ops = {
59 icp_init,
60 icp_timer_irq_start,
61 icp_cpu_halt,
62 icp_get_memory_extents,
63 icp_irq_exception,
64 icp_frame_init,
65 icp_output_init,
66 icp_input_init
67};
68
69static bool hw_map_init_called = false;
70static bool vga_init = false;
71uint32_t sdram[8] = {
72 16777216, /* 16mb */
73 33554432, /* 32mb */
74 67108864, /* 64mb */
75 134217728, /* 128mb */
76 268435456, /* 256mb */
77 0, /* Reserverd */
78 0, /* Reserverd */
79 0 /* Reserverd */
80 };
81
82void icp_vga_init(void);
83
84/** Initializes the vga
85 *
86 */
87void icp_vga_init(void)
88{
89 *(uint32_t*)((char *)(icp_hw_map.cmcr)+0x14) = 0xA05F0000;
90 *(uint32_t*)((char *)(icp_hw_map.cmcr)+0x1C) = 0x12C11000;
91 *(uint32_t*)icp_hw_map.vga = 0x3F1F3F9C;
92 *(uint32_t*)((char *)(icp_hw_map.vga) + 0x4) = 0x080B61DF;
93 *(uint32_t*)((char *)(icp_hw_map.vga) + 0x8) = 0x067F3800;
94 *(uint32_t*)((char *)(icp_hw_map.vga) + 0x10) = ICP_FB;
95 *(uint32_t *)((char *)(icp_hw_map.vga) + 0x1C) = 0x182B;
96 *(uint32_t*)((char *)(icp_hw_map.cmcr)+0xC) = 0x33805000;
97
98}
99
100/** Returns the mask of active interrupts. */
101static inline uint32_t icp_irqc_get_sources(void)
102{
103 return *((uint32_t *) icp_hw_map.irqc);
104}
105
106
107/** Masks interrupt.
108 *
109 * @param irq interrupt number
110 */
111static inline void icp_irqc_mask(uint32_t irq)
112{
113 *((uint32_t *) icp_hw_map.irqc_mask) = (1 << irq);
114}
115
116
117/** Unmasks interrupt.
118 *
119 * @param irq interrupt number
120 */
121static inline void icp_irqc_unmask(uint32_t irq)
122{
123 *((uint32_t *) icp_hw_map.irqc_unmask) |= (1 << irq);
124}
125
126/** Initializes icp_hw_map. */
127void icp_init(void)
128{
129 icp_hw_map.uart = hw_map(ICP_UART, PAGE_SIZE);
130 icp_hw_map.kbd_ctrl = hw_map(ICP_KBD, PAGE_SIZE);
131 icp_hw_map.kbd_stat = icp_hw_map.kbd_ctrl + ICP_KBD_STAT;
132 icp_hw_map.kbd_data = icp_hw_map.kbd_ctrl + ICP_KBD_DATA;
133 icp_hw_map.kbd_intstat = icp_hw_map.kbd_ctrl + ICP_KBD_INTR_STAT;
134 icp_hw_map.rtc = hw_map(ICP_RTC, PAGE_SIZE);
135 icp_hw_map.rtc1_load = icp_hw_map.rtc + ICP_RTC1_LOAD_OFFSET;
136 icp_hw_map.rtc1_read = icp_hw_map.rtc + ICP_RTC1_READ_OFFSET;
137 icp_hw_map.rtc1_ctl = icp_hw_map.rtc + ICP_RTC1_CTL_OFFSET;
138 icp_hw_map.rtc1_intrclr = icp_hw_map.rtc + ICP_RTC1_INTRCLR_OFFSET;
139 icp_hw_map.rtc1_bgload = icp_hw_map.rtc + ICP_RTC1_BGLOAD_OFFSET;
140 icp_hw_map.rtc1_intrstat = icp_hw_map.rtc + ICP_RTC1_INTRSTAT_OFFSET;
141
142 icp_hw_map.irqc = hw_map(ICP_IRQC, PAGE_SIZE);
143 icp_hw_map.irqc_mask = icp_hw_map.irqc + ICP_IRQC_MASK_OFFSET;
144 icp_hw_map.irqc_unmask = icp_hw_map.irqc + ICP_IRQC_UNMASK_OFFSET;
145 icp_hw_map.cmcr = hw_map(ICP_CMCR, PAGE_SIZE);
146 icp_hw_map.sdramcr = icp_hw_map.cmcr + ICP_SDRAMCR_OFFSET;
147 icp_hw_map.vga = hw_map(ICP_VGA, PAGE_SIZE);
148
149 hw_map_init_called = true;
150}
151
152/** Starts icp Real Time Clock device, which asserts regular interrupts.
153 *
154 * @param frequency Interrupts frequency (0 disables RTC).
155 */
156static void icp_timer_start(uint32_t frequency)
157{
158 icp_irqc_mask(ICP_TIMER_IRQ);
159 *((uint32_t*) icp_hw_map.rtc1_load) = frequency;
160 *((uint32_t*) icp_hw_map.rtc1_bgload) = frequency;
161 *((uint32_t*) icp_hw_map.rtc1_ctl) = ICP_RTC_CTL_VALUE;
162 icp_irqc_unmask(ICP_TIMER_IRQ);
163}
164
165static irq_ownership_t icp_timer_claim(irq_t *irq)
166{
167 if (icp_hw_map.rtc1_intrstat) {
168 *((uint32_t*) icp_hw_map.rtc1_intrclr) = 1;
169 return IRQ_ACCEPT;
170 } else
171 return IRQ_DECLINE;
172}
173
174/** Timer interrupt handler.
175 *
176 * @param irq Interrupt information.
177 * @param arg Not used.
178 */
179static void icp_timer_irq_handler(irq_t *irq)
180{
181 /*
182 * We are holding a lock which prevents preemption.
183 * Release the lock, call clock() and reacquire the lock again.
184 */
185
186 spinlock_unlock(&irq->lock);
187 clock();
188 spinlock_lock(&irq->lock);
189
190}
191
192/** Initializes and registers timer interrupt handler. */
193static void icp_timer_irq_init(void)
194{
195 irq_initialize(&icp_timer_irq);
196 icp_timer_irq.devno = device_assign_devno();
197 icp_timer_irq.inr = ICP_TIMER_IRQ;
198 icp_timer_irq.claim = icp_timer_claim;
199 icp_timer_irq.handler = icp_timer_irq_handler;
200
201 irq_register(&icp_timer_irq);
202}
203
204
205/** Starts timer.
206 *
207 * Initiates regular timer interrupts after initializing
208 * corresponding interrupt handler.
209 */
210void icp_timer_irq_start(void)
211{
212 icp_timer_irq_init();
213 icp_timer_start(ICP_TIMER_FREQ);
214}
215
216/** Get extents of available memory.
217 *
218 * @param start Place to store memory start address.
219 * @param size Place to store memory size.
220 */
221void icp_get_memory_extents(uintptr_t *start, uintptr_t *size)
222{
223 *start = 0;
224
225 if (hw_map_init_called) {
226 *size = (sdram[((*(uint32_t *)icp_hw_map.sdramcr &
227 ICP_SDRAM_MASK) >> 2)]);
228 } else {
229 *size = SDRAM_SIZE;
230 }
231}
232
233/** Stops icp. */
234void icp_cpu_halt(void)
235{
236 while (1);
237}
238
239/** interrupt exception handler.
240 *
241 * Determines sources of the interrupt from interrupt controller and
242 * calls high-level handlers for them.
243 *
244 * @param exc_no Interrupt exception number.
245 * @param istate Saved processor state.
246 */
247void icp_irq_exception(unsigned int exc_no, istate_t *istate)
248{
249 uint32_t sources = icp_irqc_get_sources();
250 unsigned int i;
251
252 for (i = 0; i < ICP_IRQC_MAX_IRQ; i++) {
253 if (sources & (1 << i)) {
254 irq_t *irq = irq_dispatch_and_lock(i);
255 if (irq) {
256 /* The IRQ handler was found. */
257 irq->handler(irq);
258 spinlock_unlock(&irq->lock);
259 } else {
260 /* Spurious interrupt.*/
261 printf("cpu%d: spurious interrupt (inum=%d)\n",
262 CPU->id, i);
263 }
264 }
265 }
266}
267
268/*
269 * Integrator specific frame initialization
270 */
271void
272icp_frame_init(void)
273{
274 frame_mark_unavailable(ICP_FB_FRAME, ICP_FB_NUM_FRAME);
275 frame_mark_unavailable(0, 256);
276}
277
278void icp_output_init(void)
279{
280#ifdef CONFIG_FB
281 if (!vga_init) {
282 icp_vga_init();
283 vga_init = true;
284 }
285
286 fb_properties_t prop = {
287 .addr = ICP_FB,
288 .offset = 0,
289 .x = 640,
290 .y = 480,
291 .scan = 2560,
292 .visual = VISUAL_BGR_0_8_8_8,
293 };
294
295 outdev_t *fbdev = fb_init(&prop);
296 if (fbdev) {
297 stdout_wire(fbdev);
298 fb_parea.pbase = ICP_FB;
299 fb_parea.frames = 300;
300 ddi_parea_register(&fb_parea);
301 }
302#endif
303}
304
305void icp_input_init(void)
306{
307
308 pl050_t *pl050 = malloc(sizeof(pl050_t), FRAME_ATOMIC);
309 pl050->status = (ioport8_t *)icp_hw_map.kbd_stat;
310 pl050->data = (ioport8_t *)icp_hw_map.kbd_data;
311 pl050->ctrl = (ioport8_t *)icp_hw_map.kbd_ctrl;
312
313 pl050_instance_t *pl050_instance = pl050_init(pl050, ICP_KBD_IRQ);
314 if (pl050_instance) {
315 kbrd_instance_t *kbrd_instance = kbrd_init();
316 if (kbrd_instance) {
317 icp_irqc_mask(ICP_KBD_IRQ);
318 indev_t *sink = stdin_wire();
319 indev_t *kbrd = kbrd_wire(kbrd_instance, sink);
320 pl050_wire(pl050_instance, kbrd);
321 icp_irqc_unmask(ICP_KBD_IRQ);
322 }
323 }
324
325 /*
326 * This is the necessary evil until the userspace driver is entirely
327 * self-sufficient.
328 */
329 sysinfo_set_item_val("kbd", NULL, true);
330 sysinfo_set_item_val("kbd.inr", NULL, ICP_KBD_IRQ);
331 sysinfo_set_item_val("kbd.address.status", NULL,
332 (uintptr_t) icp_hw_map.kbd_stat);
333 sysinfo_set_item_val("kbd.address.data", NULL,
334 (uintptr_t) icp_hw_map.kbd_data);
335
336}
337
338
339/** @}
340 */
Note: See TracBrowser for help on using the repository browser.