blob: 4ad762683fb9d5f8331691a63f7cb3837e767b38 [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>
Simon Glass9b61c7c2019-11-14 12:57:41 -070014#include <irq_func.h>
Simon Glass0f2af882020-05-10 11:40:05 -060015#include <log.h>
Simon Glassa9dc0682019-12-28 10:44:59 -070016#include <time.h>
wdenk9c53f402003-10-15 23:53:47 +000017#include <watchdog.h>
18#include <command.h>
19#include <asm/processor.h>
Timur Tabic5abd7a2009-08-20 17:41:11 -050020#include <asm/io.h>
John Schmollera9cecd52011-03-10 16:09:26 -060021#ifdef CONFIG_POST
22#include <post.h>
23#endif
Simon Glass6b9f0102020-05-10 11:40:06 -060024#include <asm/ptrace.h>
wdenk9c53f402003-10-15 23:53:47 +000025
Tom Rinice103982017-08-13 22:44:37 -040026void interrupt_init_cpu(unsigned *decrementer_count)
wdenk9c53f402003-10-15 23:53:47 +000027{
Kim Phillips2ecbfeb2010-08-09 18:39:57 -050028 ccsr_pic_t __iomem *pic = (void *)CONFIG_SYS_MPC8xxx_PIC_ADDR;
wdenkf3da7cc2005-05-13 22:49:36 +000029
John Schmollera9cecd52011-03-10 16:09:26 -060030#ifdef CONFIG_POST
31 /*
32 * The POST word is stored in the PIC's TFRR register which gets
33 * cleared when the PIC is reset. Save it off so we can restore it
34 * later.
35 */
36 ulong post_word = post_word_load();
37#endif
38
Timur Tabic5abd7a2009-08-20 17:41:11 -050039 out_be32(&pic->gcr, MPC85xx_PICGCR_RST);
40 while (in_be32(&pic->gcr) & MPC85xx_PICGCR_RST)
Kumar Gala4f6280e2008-08-19 14:46:36 -050041 ;
Timur Tabic5abd7a2009-08-20 17:41:11 -050042 out_be32(&pic->gcr, MPC85xx_PICGCR_M);
43 in_be32(&pic->gcr);
Kumar Gala4f6280e2008-08-19 14:46:36 -050044
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020045 *decrementer_count = get_tbclk() / CONFIG_SYS_HZ;
Kumar Gala4f6280e2008-08-19 14:46:36 -050046
47 /* PIE is same as DIE, dec interrupt enable */
Boschung, Rainer4728fcf2014-06-03 09:05:12 +020048 mtspr(SPRN_TCR, mfspr(SPRN_TCR) | TCR_PIE);
Andy Flemingf08233c2007-08-14 01:34:21 -050049
50#ifdef CONFIG_INTERRUPTS
Andy Fleming9ae360f2008-02-27 15:50:50 -060051 pic->iivpr1 = 0x810001; /* 50220 enable ecm interrupts */
Andrew Klossner7ddfafc2008-08-21 07:12:26 -070052 debug("iivpr1@%x = %x\n", (uint)&pic->iivpr1, pic->iivpr1);
Andy Flemingf08233c2007-08-14 01:34:21 -050053
54 pic->iivpr2 = 0x810002; /* 50240 enable ddr interrupts */
Andrew Klossner7ddfafc2008-08-21 07:12:26 -070055 debug("iivpr2@%x = %x\n", (uint)&pic->iivpr2, pic->iivpr2);
Andy Flemingf08233c2007-08-14 01:34:21 -050056
57 pic->iivpr3 = 0x810003; /* 50260 enable lbc interrupts */
Andrew Klossner7ddfafc2008-08-21 07:12:26 -070058 debug("iivpr3@%x = %x\n", (uint)&pic->iivpr3, pic->iivpr3);
Andy Flemingf08233c2007-08-14 01:34:21 -050059
60#ifdef CONFIG_PCI1
61 pic->iivpr8 = 0x810008; /* enable pci1 interrupts */
Andrew Klossner7ddfafc2008-08-21 07:12:26 -070062 debug("iivpr8@%x = %x\n", (uint)&pic->iivpr8, pic->iivpr8);
Andy Flemingf08233c2007-08-14 01:34:21 -050063#endif
64#if defined(CONFIG_PCI2) || defined(CONFIG_PCIE2)
65 pic->iivpr9 = 0x810009; /* enable pci1 interrupts */
Andrew Klossner7ddfafc2008-08-21 07:12:26 -070066 debug("iivpr9@%x = %x\n", (uint)&pic->iivpr9, pic->iivpr9);
Andy Flemingf08233c2007-08-14 01:34:21 -050067#endif
68#ifdef CONFIG_PCIE1
69 pic->iivpr10 = 0x81000a; /* enable pcie1 interrupts */
Andrew Klossner7ddfafc2008-08-21 07:12:26 -070070 debug("iivpr10@%x = %x\n", (uint)&pic->iivpr10, pic->iivpr10);
Andy Flemingf08233c2007-08-14 01:34:21 -050071#endif
72#ifdef CONFIG_PCIE3
73 pic->iivpr11 = 0x81000b; /* enable pcie3 interrupts */
Andrew Klossner7ddfafc2008-08-21 07:12:26 -070074 debug("iivpr11@%x = %x\n", (uint)&pic->iivpr11, pic->iivpr11);
Andy Flemingf08233c2007-08-14 01:34:21 -050075#endif
76
77 pic->ctpr=0; /* 40080 clear current task priority register */
78#endif
79
John Schmollera9cecd52011-03-10 16:09:26 -060080#ifdef CONFIG_POST
81 post_word_store(post_word);
82#endif
wdenk9c53f402003-10-15 23:53:47 +000083}
84
Kumar Gala4f6280e2008-08-19 14:46:36 -050085/* Install and free a interrupt handler. Not implemented yet. */
wdenk9c53f402003-10-15 23:53:47 +000086
87void
88irq_install_handler(int vec, interrupt_handler_t *handler, void *arg)
89{
90 return;
91}
92
93void
94irq_free_handler(int vec)
95{
96 return;
97}
98
Kumar Gala4f6280e2008-08-19 14:46:36 -050099void timer_interrupt_cpu(struct pt_regs *regs)
wdenk9c53f402003-10-15 23:53:47 +0000100{
Kumar Gala4f6280e2008-08-19 14:46:36 -0500101 /* PIS is same as DIS, dec interrupt status */
wdenkf3da7cc2005-05-13 22:49:36 +0000102 mtspr(SPRN_TSR, TSR_PIS);
wdenk9c53f402003-10-15 23:53:47 +0000103}
104
Jon Loeliger526e5ce2007-07-09 19:06:00 -0500105#if defined(CONFIG_CMD_IRQ)
Kumar Gala4f6280e2008-08-19 14:46:36 -0500106/* irqinfo - print information about PCI devices,not implemented. */
Simon Glassed38aef2020-05-10 11:40:03 -0600107int do_irqinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
wdenk9c53f402003-10-15 23:53:47 +0000108{
wdenk9c53f402003-10-15 23:53:47 +0000109 return 0;
110}
Jon Loeliger526e5ce2007-07-09 19:06:00 -0500111#endif