blob: b5a6ead8bde6bff5716ac3d9525126e59d61158c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk9c53f402003-10-15 23:53:47 +00002/*
3 * (C) Copyright 2000-2002
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
6 * (C) Copyright 2002 (440 port)
7 * Scott McNutt, Artesyn Communication Producs, smcnutt@artsyncp.com
8 *
9 * (C) Copyright 2003 Motorola Inc. (MPC85xx port)
10 * Xianghua Xiao (X.Xiao@motorola.com)
wdenk9c53f402003-10-15 23:53:47 +000011 */
12
13#include <common.h>
14#include <watchdog.h>
15#include <command.h>
16#include <asm/processor.h>
Timur Tabic5abd7a2009-08-20 17:41:11 -050017#include <asm/io.h>
John Schmollera9cecd52011-03-10 16:09:26 -060018#ifdef CONFIG_POST
19#include <post.h>
20#endif
wdenk9c53f402003-10-15 23:53:47 +000021
Tom Rinice103982017-08-13 22:44:37 -040022void interrupt_init_cpu(unsigned *decrementer_count)
wdenk9c53f402003-10-15 23:53:47 +000023{
Kim Phillips2ecbfeb2010-08-09 18:39:57 -050024 ccsr_pic_t __iomem *pic = (void *)CONFIG_SYS_MPC8xxx_PIC_ADDR;
wdenkf3da7cc2005-05-13 22:49:36 +000025
John Schmollera9cecd52011-03-10 16:09:26 -060026#ifdef CONFIG_POST
27 /*
28 * The POST word is stored in the PIC's TFRR register which gets
29 * cleared when the PIC is reset. Save it off so we can restore it
30 * later.
31 */
32 ulong post_word = post_word_load();
33#endif
34
Timur Tabic5abd7a2009-08-20 17:41:11 -050035 out_be32(&pic->gcr, MPC85xx_PICGCR_RST);
36 while (in_be32(&pic->gcr) & MPC85xx_PICGCR_RST)
Kumar Gala4f6280e2008-08-19 14:46:36 -050037 ;
Timur Tabic5abd7a2009-08-20 17:41:11 -050038 out_be32(&pic->gcr, MPC85xx_PICGCR_M);
39 in_be32(&pic->gcr);
Kumar Gala4f6280e2008-08-19 14:46:36 -050040
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020041 *decrementer_count = get_tbclk() / CONFIG_SYS_HZ;
Kumar Gala4f6280e2008-08-19 14:46:36 -050042
43 /* PIE is same as DIE, dec interrupt enable */
Boschung, Rainer4728fcf2014-06-03 09:05:12 +020044 mtspr(SPRN_TCR, mfspr(SPRN_TCR) | TCR_PIE);
Andy Flemingf08233c2007-08-14 01:34:21 -050045
46#ifdef CONFIG_INTERRUPTS
Andy Fleming9ae360f2008-02-27 15:50:50 -060047 pic->iivpr1 = 0x810001; /* 50220 enable ecm interrupts */
Andrew Klossner7ddfafc2008-08-21 07:12:26 -070048 debug("iivpr1@%x = %x\n", (uint)&pic->iivpr1, pic->iivpr1);
Andy Flemingf08233c2007-08-14 01:34:21 -050049
50 pic->iivpr2 = 0x810002; /* 50240 enable ddr interrupts */
Andrew Klossner7ddfafc2008-08-21 07:12:26 -070051 debug("iivpr2@%x = %x\n", (uint)&pic->iivpr2, pic->iivpr2);
Andy Flemingf08233c2007-08-14 01:34:21 -050052
53 pic->iivpr3 = 0x810003; /* 50260 enable lbc interrupts */
Andrew Klossner7ddfafc2008-08-21 07:12:26 -070054 debug("iivpr3@%x = %x\n", (uint)&pic->iivpr3, pic->iivpr3);
Andy Flemingf08233c2007-08-14 01:34:21 -050055
56#ifdef CONFIG_PCI1
57 pic->iivpr8 = 0x810008; /* enable pci1 interrupts */
Andrew Klossner7ddfafc2008-08-21 07:12:26 -070058 debug("iivpr8@%x = %x\n", (uint)&pic->iivpr8, pic->iivpr8);
Andy Flemingf08233c2007-08-14 01:34:21 -050059#endif
60#if defined(CONFIG_PCI2) || defined(CONFIG_PCIE2)
61 pic->iivpr9 = 0x810009; /* enable pci1 interrupts */
Andrew Klossner7ddfafc2008-08-21 07:12:26 -070062 debug("iivpr9@%x = %x\n", (uint)&pic->iivpr9, pic->iivpr9);
Andy Flemingf08233c2007-08-14 01:34:21 -050063#endif
64#ifdef CONFIG_PCIE1
65 pic->iivpr10 = 0x81000a; /* enable pcie1 interrupts */
Andrew Klossner7ddfafc2008-08-21 07:12:26 -070066 debug("iivpr10@%x = %x\n", (uint)&pic->iivpr10, pic->iivpr10);
Andy Flemingf08233c2007-08-14 01:34:21 -050067#endif
68#ifdef CONFIG_PCIE3
69 pic->iivpr11 = 0x81000b; /* enable pcie3 interrupts */
Andrew Klossner7ddfafc2008-08-21 07:12:26 -070070 debug("iivpr11@%x = %x\n", (uint)&pic->iivpr11, pic->iivpr11);
Andy Flemingf08233c2007-08-14 01:34:21 -050071#endif
72
73 pic->ctpr=0; /* 40080 clear current task priority register */
74#endif
75
John Schmollera9cecd52011-03-10 16:09:26 -060076#ifdef CONFIG_POST
77 post_word_store(post_word);
78#endif
wdenk9c53f402003-10-15 23:53:47 +000079}
80
Kumar Gala4f6280e2008-08-19 14:46:36 -050081/* Install and free a interrupt handler. Not implemented yet. */
wdenk9c53f402003-10-15 23:53:47 +000082
83void
84irq_install_handler(int vec, interrupt_handler_t *handler, void *arg)
85{
86 return;
87}
88
89void
90irq_free_handler(int vec)
91{
92 return;
93}
94
Kumar Gala4f6280e2008-08-19 14:46:36 -050095void timer_interrupt_cpu(struct pt_regs *regs)
wdenk9c53f402003-10-15 23:53:47 +000096{
Kumar Gala4f6280e2008-08-19 14:46:36 -050097 /* PIS is same as DIS, dec interrupt status */
wdenkf3da7cc2005-05-13 22:49:36 +000098 mtspr(SPRN_TSR, TSR_PIS);
wdenk9c53f402003-10-15 23:53:47 +000099}
100
Jon Loeliger526e5ce2007-07-09 19:06:00 -0500101#if defined(CONFIG_CMD_IRQ)
Kumar Gala4f6280e2008-08-19 14:46:36 -0500102/* irqinfo - print information about PCI devices,not implemented. */
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200103int do_irqinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk9c53f402003-10-15 23:53:47 +0000104{
wdenk9c53f402003-10-15 23:53:47 +0000105 return 0;
106}
Jon Loeliger526e5ce2007-07-09 19:06:00 -0500107#endif