blob: 668aa020889ebe9f22f5eaa5ad606f50d96ce027 [file] [log] [blame]
Eran Libertyf046ccd2005-07-28 10:08:46 -05001/*
2 * (C) Copyright 2000-2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * Copyright 2004 Freescale Semiconductor, Inc.
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Eran Libertyf046ccd2005-07-28 10:08:46 -05008 */
9
10#include <common.h>
11#include <command.h>
12#include <mpc83xx.h>
13#include <asm/processor.h>
14
Wolfgang Denkd87080b2006-03-31 18:32:53 +020015DECLARE_GLOBAL_DATA_PTR;
16
Eran Libertyf046ccd2005-07-28 10:08:46 -050017struct irq_action {
18 interrupt_handler_t *handler;
19 void *arg;
20 ulong count;
21};
22
23int interrupt_init_cpu (unsigned *decrementer_count)
24{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020025 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
Kumar Galace574ff2006-01-11 11:19:12 -060026
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020027 *decrementer_count = (gd->bus_clk / 4) / CONFIG_SYS_HZ;
Kumar Galace574ff2006-01-11 11:19:12 -060028
29 /* Enable e300 time base */
30
31 immr->sysconf.spcr |= 0x00400000;
32
Eran Libertyf046ccd2005-07-28 10:08:46 -050033 return 0;
34}
35
36
37/*
38 * Handle external interrupts
39 */
40
41void external_interrupt (struct pt_regs *regs)
42{
43}
44
45
46/*
47 * Install and free an interrupt handler.
48 */
49
50void
51irq_install_handler (int irq, interrupt_handler_t * handler, void *arg)
52{
53}
54
55
56void irq_free_handler (int irq)
57{
58}
59
60
61void timer_interrupt_cpu (struct pt_regs *regs)
62{
63 /* nothing to do here */
64 return;
65}
66
67
Jon Loeliger44312832007-07-09 19:06:00 -050068#if defined(CONFIG_CMD_IRQ)
Eran Libertyf046ccd2005-07-28 10:08:46 -050069
70/* ripped this out of ppc4xx/interrupts.c */
71
72/*
73 * irqinfo - print information about PCI devices
74 */
75
76void
Wolfgang Denk54841ab2010-06-28 22:00:46 +020077do_irqinfo(cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char * const argv[])
Eran Libertyf046ccd2005-07-28 10:08:46 -050078{
79}
80
Jon Loeliger44312832007-07-09 19:06:00 -050081#endif