blob: 04cd14732141e71e25f837611d41b27f9fa4f509 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Eran Liberty9095d4a2005-07-28 10:08:46 -05002/*
3 * (C) Copyright 2000-2002
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
6 * Copyright 2004 Freescale Semiconductor, Inc.
Eran Liberty9095d4a2005-07-28 10:08:46 -05007 */
8
9#include <common.h>
10#include <command.h>
11#include <mpc83xx.h>
12#include <asm/processor.h>
13
Wolfgang Denk6405a152006-03-31 18:32:53 +020014DECLARE_GLOBAL_DATA_PTR;
15
Eran Liberty9095d4a2005-07-28 10:08:46 -050016struct irq_action {
17 interrupt_handler_t *handler;
18 void *arg;
19 ulong count;
20};
21
Tom Rinice103982017-08-13 22:44:37 -040022void interrupt_init_cpu (unsigned *decrementer_count)
Eran Liberty9095d4a2005-07-28 10:08:46 -050023{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020024 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
Kumar Gala3b16c282006-01-11 11:19:12 -060025
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020026 *decrementer_count = (gd->bus_clk / 4) / CONFIG_SYS_HZ;
Kumar Gala3b16c282006-01-11 11:19:12 -060027
28 /* Enable e300 time base */
29
30 immr->sysconf.spcr |= 0x00400000;
Eran Liberty9095d4a2005-07-28 10:08:46 -050031}
32
33
34/*
35 * Handle external interrupts
36 */
37
Simon Glassf87959b2019-11-14 12:57:40 -070038void external_interrupt(struct pt_regs *regs)
Eran Liberty9095d4a2005-07-28 10:08:46 -050039{
40}
41
42
43/*
44 * Install and free an interrupt handler.
45 */
46
47void
Simon Glassf87959b2019-11-14 12:57:40 -070048irq_install_handler(int irq, interrupt_handler_t * handler, void *arg)
Eran Liberty9095d4a2005-07-28 10:08:46 -050049{
50}
51
52
Simon Glassf87959b2019-11-14 12:57:40 -070053void irq_free_handler(int irq)
Eran Liberty9095d4a2005-07-28 10:08:46 -050054{
55}
56
57
58void timer_interrupt_cpu (struct pt_regs *regs)
59{
60 /* nothing to do here */
61 return;
62}
63
64
Jon Loeliger526e5ce2007-07-09 19:06:00 -050065#if defined(CONFIG_CMD_IRQ)
Eran Liberty9095d4a2005-07-28 10:08:46 -050066
67/* ripped this out of ppc4xx/interrupts.c */
68
69/*
70 * irqinfo - print information about PCI devices
71 */
72
73void
Wolfgang Denk6262d0212010-06-28 22:00:46 +020074do_irqinfo(cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char * const argv[])
Eran Liberty9095d4a2005-07-28 10:08:46 -050075{
76}
77
Jon Loeliger526e5ce2007-07-09 19:06:00 -050078#endif