forked from Minki/linux
MIPS updates for v5.7:
- loongson64 irq rework - dmi support loongson - replace setup_irq() by request_irq() - jazz cleanups - minor cleanups and fixes -----BEGIN PGP SIGNATURE----- iQJOBAABCAA4FiEEbt46xwy6kEcDOXoUeZbBVTGwZHAFAl6B2ewaHHRzYm9nZW5k QGFscGhhLmZyYW5rZW4uZGUACgkQeZbBVTGwZHBNNRAAhaZWpw1eP/cUAqCMH2VU vrEFi6hmXJwSE5RFeq5ykLig45ObkkYJnTXbSH8SuOhwH3NBnjYSJuMxpGrsXt7p U3NPWCqCqo2Ff+qFJlLvmATYMtpKK58xL5nsY4eXgQwMrki28SMB8L7TYq6nme5q zbZeZxOo4k3MTw4fpy1BTMnnssYSyXwaSP5YFBEfRLgJ38ciu2fSmHIKj89z/fnK k/xPuBz8Mh8CwKOuaCsFFO27R8Dmj6s9N2YKimP8dt8h/rzDXXH9O9ZxYW5tWvxk f04nM3UvfAGdGQKhwR695DmGtXOBcKM/UaW+X2m0LRpV1qFvZ6D9P09zrYzJXHZV 5NfAzczra+qafuZDCHmq/B2Bv3ddoiiF91zHZ2e59IXAJAXr7bu5CsCy53avWkeG EFEXpicTXBWD6OpYOaG8K4SrJS6EZ6JRJJ3lHiqrAeqF/EmD6tmYXavMXHpScdl8 u0uCCm6Dh4/UxmwwYRTu3pgh6PmB7LAUemKZgMsSGeN4/BiwCrG6Vm/DouxJDMum HWSI0LpBzChHiBlT2ldN+AxeH09ovJ9EmYN8pti4ciGMNaLWKCbwcrlj0sZNmcof NEhRrdsrHcawVK0xabiDFihDAnWtKiFTz4IaK3i/I8lF+L18fm30SGafT+G2vNhp GItmmbmxPmA7qOJVDpwLEUs= =OuFQ -----END PGP SIGNATURE----- Merge tag 'mips_5.7' of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux Pull MIPS updates from Thomas Bogendoerfer: - loongson64 irq rework - dmi support loongson - replace setup_irq() by request_irq() - jazz cleanups - minor cleanups and fixes * tag 'mips_5.7' of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux: (44 commits) MIPS: ralink: mt7621: Fix soc_device introduction MIPS: Exclude more dsemul code when CONFIG_MIPS_FP_SUPPORT=n MIPS/tlbex: Fix LDDIR usage in setup_pw() for Loongson-3 MIPS: do not compile generic functions for CONFIG_CAVIUM_OCTEON_SOC MAINTAINERS: Update Loongson64 entry MIPS: Loongson64: Load built-in dtbs MIPS: Loongson64: Add generic dts dt-bindings: mips: Add loongson boards MIPS: Loongson64: Drop legacy IRQ code dt-bindings: interrupt-controller: Add Loongson-3 HTPIC irqchip: Add driver for Loongson-3 HyperTransport PIC controller dt-bindings: interrupt-controller: Add Loongson LIOINTC irqchip: loongson-liointc: Workaround LPC IRQ Errata irqchip: Add driver for Loongson I/O Local Interrupt Controller docs: mips: remove no longer needed au1xxx_ide.rst documentation MIPS: Alchemy: remove no longer used au1xxx_ide.h header ide: remove no longer used au1xxx-ide driver MIPS: Add support for Desktop Management Interface (DMI) firmware: dmi: Add macro SMBIOS_ENTRY_POINT_SCAN_START MIPS: ralink: mt7621: introduce 'soc_device' initialization ...
This commit is contained in:
commit
d71e064449
@ -0,0 +1,59 @@
|
||||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
||||
%YAML 1.2
|
||||
---
|
||||
$id: "http://devicetree.org/schemas/interrupt-controller/loongson,htpic.yaml#"
|
||||
$schema: "http://devicetree.org/meta-schemas/core.yaml#"
|
||||
|
||||
title: Loongson-3 HyperTransport Interrupt Controller
|
||||
|
||||
maintainers:
|
||||
- Jiaxun Yang <jiaxun.yang@flygoat.com>
|
||||
|
||||
allOf:
|
||||
- $ref: /schemas/interrupt-controller.yaml#
|
||||
|
||||
description: |
|
||||
This interrupt controller is found in the Loongson-3 family of chips to transmit
|
||||
interrupts from PCH PIC connected on HyperTransport bus.
|
||||
|
||||
properties:
|
||||
compatible:
|
||||
const: loongson,htpic-1.0
|
||||
|
||||
reg:
|
||||
maxItems: 1
|
||||
|
||||
interrupts:
|
||||
minItems: 1
|
||||
maxItems: 4
|
||||
description: |
|
||||
Four parent interrupts that receive chained interrupts.
|
||||
|
||||
interrupt-controller: true
|
||||
|
||||
'#interrupt-cells':
|
||||
const: 1
|
||||
|
||||
required:
|
||||
- compatible
|
||||
- reg
|
||||
- interrupts
|
||||
- interrupt-controller
|
||||
- '#interrupt-cells'
|
||||
|
||||
examples:
|
||||
- |
|
||||
#include <dt-bindings/interrupt-controller/irq.h>
|
||||
htintc: interrupt-controller@1fb000080 {
|
||||
compatible = "loongson,htintc-1.0";
|
||||
reg = <0xfb000080 0x40>;
|
||||
interrupt-controller;
|
||||
#interrupt-cells = <1>;
|
||||
|
||||
interrupt-parent = <&liointc>;
|
||||
interrupts = <24 IRQ_TYPE_LEVEL_HIGH>,
|
||||
<25 IRQ_TYPE_LEVEL_HIGH>,
|
||||
<26 IRQ_TYPE_LEVEL_HIGH>,
|
||||
<27 IRQ_TYPE_LEVEL_HIGH>;
|
||||
};
|
||||
...
|
@ -0,0 +1,93 @@
|
||||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
||||
%YAML 1.2
|
||||
---
|
||||
$id: "http://devicetree.org/schemas/interrupt-controller/loongson,liointc.yaml#"
|
||||
$schema: "http://devicetree.org/meta-schemas/core.yaml#"
|
||||
|
||||
title: Loongson Local I/O Interrupt Controller
|
||||
|
||||
maintainers:
|
||||
- Jiaxun Yang <jiaxun.yang@flygoat.com>
|
||||
|
||||
description: |
|
||||
This interrupt controller is found in the Loongson-3 family of chips as the primary
|
||||
package interrupt controller which can route local I/O interrupt to interrupt lines
|
||||
of cores.
|
||||
|
||||
allOf:
|
||||
- $ref: /schemas/interrupt-controller.yaml#
|
||||
|
||||
properties:
|
||||
compatible:
|
||||
oneOf:
|
||||
- const: loongson,liointc-1.0
|
||||
- const: loongson,liointc-1.0a
|
||||
|
||||
reg:
|
||||
maxItems: 1
|
||||
|
||||
interrupt-controller: true
|
||||
|
||||
interrupts:
|
||||
description:
|
||||
Interrupt source of the CPU interrupts.
|
||||
minItems: 1
|
||||
maxItems: 4
|
||||
|
||||
interrupt-names:
|
||||
description: List of names for the parent interrupts.
|
||||
items:
|
||||
- const: int0
|
||||
- const: int1
|
||||
- const: int2
|
||||
- const: int3
|
||||
minItems: 1
|
||||
maxItems: 4
|
||||
|
||||
'#interrupt-cells':
|
||||
const: 2
|
||||
|
||||
'loongson,parent_int_map':
|
||||
description: |
|
||||
This property points how the children interrupts will be mapped into CPU
|
||||
interrupt lines. Each cell refers to a parent interrupt line from 0 to 3
|
||||
and each bit in the cell refers to a children interrupt fron 0 to 31.
|
||||
If a CPU interrupt line didn't connected with liointc, then keep it's
|
||||
cell with zero.
|
||||
allOf:
|
||||
- $ref: /schemas/types.yaml#/definitions/uint32-array
|
||||
- items:
|
||||
minItems: 4
|
||||
maxItems: 4
|
||||
|
||||
|
||||
required:
|
||||
- compatible
|
||||
- reg
|
||||
- interrupts
|
||||
- interrupt-controller
|
||||
- '#interrupt-cells'
|
||||
- 'loongson,parent_int_map'
|
||||
|
||||
|
||||
examples:
|
||||
- |
|
||||
iointc: interrupt-controller@3ff01400 {
|
||||
compatible = "loongson,liointc-1.0";
|
||||
reg = <0x3ff01400 0x64>;
|
||||
|
||||
interrupt-controller;
|
||||
#interrupt-cells = <2>;
|
||||
|
||||
interrupt-parent = <&cpuintc>;
|
||||
interrupts = <2>, <3>;
|
||||
interrupt-names = "int0", "int1";
|
||||
|
||||
loongson,parent_int_map = <0xf0ffffff>, /* int0 */
|
||||
<0x0f000000>, /* int1 */
|
||||
<0x00000000>, /* int2 */
|
||||
<0x00000000>; /* int3 */
|
||||
|
||||
};
|
||||
|
||||
...
|
27
Documentation/devicetree/bindings/mips/loongson/devices.yaml
Normal file
27
Documentation/devicetree/bindings/mips/loongson/devices.yaml
Normal file
@ -0,0 +1,27 @@
|
||||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
||||
%YAML 1.2
|
||||
---
|
||||
$id: http://devicetree.org/schemas/mips/loongson/devices.yaml#
|
||||
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
||||
|
||||
title: Loongson based Platforms Device Tree Bindings
|
||||
|
||||
maintainers:
|
||||
- Jiaxun Yang <jiaxun.yang@flygoat.com>
|
||||
description: |
|
||||
Devices with a Loongson CPU shall have the following properties.
|
||||
|
||||
properties:
|
||||
$nodename:
|
||||
const: '/'
|
||||
compatible:
|
||||
oneOf:
|
||||
|
||||
- description: Generic Loongson3 Quad Core + RS780E
|
||||
items:
|
||||
- const: loongson,loongson3-4core-rs780e
|
||||
|
||||
- description: Generic Loongson3 Octa Core + RS780E
|
||||
items:
|
||||
- const: loongson,loongson3-8core-rs780e
|
||||
...
|
@ -1,130 +0,0 @@
|
||||
.. include:: <isonum.txt>
|
||||
|
||||
======================
|
||||
MIPS AU1XXX IDE driver
|
||||
======================
|
||||
|
||||
Released 2005-07-15
|
||||
|
||||
About
|
||||
=====
|
||||
|
||||
This file describes the 'drivers/ide/au1xxx-ide.c', related files and the
|
||||
services they provide.
|
||||
|
||||
If you are short in patience and just want to know how to add your hard disc to
|
||||
the white or black list, go to the 'ADD NEW HARD DISC TO WHITE OR BLACK LIST'
|
||||
section.
|
||||
|
||||
|
||||
License
|
||||
=======
|
||||
|
||||
:Copyright: |copy| 2003-2005 AMD, Personal Connectivity Solutions
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free Software
|
||||
Foundation; either version 2 of the License, or (at your option) any later
|
||||
version.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED ``AS IS`` AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR
|
||||
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with
|
||||
this program; if not, write to the Free Software Foundation, Inc.,
|
||||
675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
Note:
|
||||
for more information, please refer "AMD Alchemy Au1200/Au1550 IDE
|
||||
Interface and Linux Device Driver" Application Note.
|
||||
|
||||
|
||||
Files, Configs and Compatibility
|
||||
================================
|
||||
|
||||
Two files are introduced:
|
||||
|
||||
a) 'arch/mips/include/asm/mach-au1x00/au1xxx_ide.h'
|
||||
contains : struct _auide_hwif
|
||||
|
||||
- timing parameters for PIO mode 0/1/2/3/4
|
||||
- timing parameters for MWDMA 0/1/2
|
||||
|
||||
b) 'drivers/ide/mips/au1xxx-ide.c'
|
||||
contains the functionality of the AU1XXX IDE driver
|
||||
|
||||
Following extra configs variables are introduced:
|
||||
|
||||
CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
|
||||
- enable the PIO+DBDMA mode
|
||||
CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
|
||||
- enable the MWDMA mode
|
||||
|
||||
|
||||
Supported IDE Modes
|
||||
===================
|
||||
|
||||
The AU1XXX IDE driver supported all PIO modes - PIO mode 0/1/2/3/4 - and all
|
||||
MWDMA modes - MWDMA 0/1/2 -. There is no support for SWDMA and UDMA mode.
|
||||
|
||||
To change the PIO mode use the program hdparm with option -p, e.g.
|
||||
'hdparm -p0 [device]' for PIO mode 0. To enable the MWDMA mode use the option
|
||||
-X, e.g. 'hdparm -X32 [device]' for MWDMA mode 0.
|
||||
|
||||
|
||||
Performance Configurations
|
||||
==========================
|
||||
|
||||
If the used system doesn't need USB support enable the following kernel
|
||||
configs::
|
||||
|
||||
CONFIG_IDE=y
|
||||
CONFIG_BLK_DEV_IDE=y
|
||||
CONFIG_IDE_GENERIC=y
|
||||
CONFIG_BLK_DEV_IDEPCI=y
|
||||
CONFIG_BLK_DEV_GENERIC=y
|
||||
CONFIG_BLK_DEV_IDEDMA_PCI=y
|
||||
CONFIG_BLK_DEV_IDE_AU1XXX=y
|
||||
CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA=y
|
||||
CONFIG_BLK_DEV_IDEDMA=y
|
||||
|
||||
Also define 'IDE_AU1XXX_BURSTMODE' in 'drivers/ide/mips/au1xxx-ide.c' to enable
|
||||
the burst support on DBDMA controller.
|
||||
|
||||
If the used system need the USB support enable the following kernel configs for
|
||||
high IDE to USB throughput.
|
||||
|
||||
::
|
||||
|
||||
CONFIG_IDE_GENERIC=y
|
||||
CONFIG_BLK_DEV_IDEPCI=y
|
||||
CONFIG_BLK_DEV_GENERIC=y
|
||||
CONFIG_BLK_DEV_IDEDMA_PCI=y
|
||||
CONFIG_BLK_DEV_IDE_AU1XXX=y
|
||||
CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA=y
|
||||
CONFIG_BLK_DEV_IDEDMA=y
|
||||
|
||||
Also undefine 'IDE_AU1XXX_BURSTMODE' in 'drivers/ide/mips/au1xxx-ide.c' to
|
||||
disable the burst support on DBDMA controller.
|
||||
|
||||
|
||||
Acknowledgments
|
||||
===============
|
||||
|
||||
These drivers wouldn't have been done without the base of kernel 2.4.x AU1XXX
|
||||
IDE driver from AMD.
|
||||
|
||||
Additional input also from:
|
||||
Matthias Lenk <matthias.lenk@amd.com>
|
||||
|
||||
Happy hacking!
|
||||
|
||||
Enrico Walther <enrico.walther@amd.com>
|
@ -10,8 +10,6 @@ MIPS-specific Documentation
|
||||
|
||||
ingenic-tcu
|
||||
|
||||
au1xxx_ide
|
||||
|
||||
.. only:: subproject and html
|
||||
|
||||
Indices
|
||||
|
@ -11202,6 +11202,7 @@ S: Maintained
|
||||
F: arch/mips/loongson64/
|
||||
F: arch/mips/include/asm/mach-loongson64/
|
||||
F: drivers/platform/mips/cpu_hwmon.c
|
||||
F: drivers/irqchip/irq-loongson*
|
||||
F: drivers/*/*loongson3*
|
||||
F: drivers/*/*/*loongson3*
|
||||
|
||||
|
@ -486,9 +486,11 @@ config MACH_LOONGSON64
|
||||
select SYS_SUPPORTS_HIGHMEM
|
||||
select SYS_SUPPORTS_LITTLE_ENDIAN
|
||||
select SYS_SUPPORTS_ZBOOT
|
||||
select LOONGSON_MC146818
|
||||
select ZONE_DMA32
|
||||
select NUMA
|
||||
select COMMON_CLK
|
||||
select USE_OF
|
||||
select BUILTIN_DTB
|
||||
help
|
||||
This enables the support of Loongson-2/3 family of machines.
|
||||
|
||||
@ -973,6 +975,9 @@ config CAVIUM_OCTEON_SOC
|
||||
select SYS_HAS_EARLY_PRINTK
|
||||
select SYS_HAS_CPU_CAVIUM_OCTEON
|
||||
select HAVE_PCI
|
||||
select HAVE_PLAT_DELAY
|
||||
select HAVE_PLAT_FW_INIT_CMDLINE
|
||||
select HAVE_PLAT_MEMCPY
|
||||
select ZONE_DMA32
|
||||
select HOLES_IN_ZONE
|
||||
select GPIOLIB
|
||||
@ -1229,6 +1234,15 @@ config GENERIC_ISA_DMA_SUPPORT_BROKEN
|
||||
bool
|
||||
select GENERIC_ISA_DMA
|
||||
|
||||
config HAVE_PLAT_DELAY
|
||||
bool
|
||||
|
||||
config HAVE_PLAT_FW_INIT_CMDLINE
|
||||
bool
|
||||
|
||||
config HAVE_PLAT_MEMCPY
|
||||
bool
|
||||
|
||||
config ISA_DMA_API
|
||||
bool
|
||||
|
||||
@ -2676,7 +2690,7 @@ config NUMA
|
||||
Say Y to compile the kernel to support NUMA (Non-Uniform Memory
|
||||
Access). This option improves performance on systems with more
|
||||
than two nodes; on two node systems it is generally better to
|
||||
leave it disabled; on single node systems disable this option
|
||||
leave it disabled; on single node systems leave this option
|
||||
disabled.
|
||||
|
||||
config SYS_SUPPORTS_NUMA
|
||||
@ -2758,6 +2772,17 @@ config HW_PERF_EVENTS
|
||||
Enable hardware performance counter support for perf events. If
|
||||
disabled, perf events will use software events only.
|
||||
|
||||
config DMI
|
||||
bool "Enable DMI scanning"
|
||||
depends on MACH_LOONGSON64
|
||||
select DMI_SCAN_MACHINE_NON_EFI_FALLBACK
|
||||
default y
|
||||
help
|
||||
Enabled scanning of DMI to identify machine quirks. Say Y
|
||||
here unless you have verified that your setup is not
|
||||
affected by entries in the DMI blacklist. Required by PNP
|
||||
BIOS code.
|
||||
|
||||
config SMP
|
||||
bool "Multi-Processing support"
|
||||
depends on SYS_SUPPORTS_SMP
|
||||
@ -3070,7 +3095,7 @@ endchoice
|
||||
choice
|
||||
prompt "Kernel command line type" if !CMDLINE_OVERRIDE
|
||||
default MIPS_CMDLINE_FROM_DTB if USE_OF && !ATH79 && !MACH_INGENIC && \
|
||||
!MIPS_MALTA && \
|
||||
!MACH_LOONGSON64 && !MIPS_MALTA && \
|
||||
!CAVIUM_OCTEON_SOC
|
||||
default MIPS_CMDLINE_FROM_BOOTLOADER
|
||||
|
||||
|
@ -72,13 +72,6 @@ static struct clock_event_device au1x_rtcmatch2_clockdev = {
|
||||
.cpumask = cpu_possible_mask,
|
||||
};
|
||||
|
||||
static struct irqaction au1x_rtcmatch2_irqaction = {
|
||||
.handler = au1x_rtcmatch2_irq,
|
||||
.flags = IRQF_TIMER,
|
||||
.name = "timer",
|
||||
.dev_id = &au1x_rtcmatch2_clockdev,
|
||||
};
|
||||
|
||||
static int __init alchemy_time_init(unsigned int m2int)
|
||||
{
|
||||
struct clock_event_device *cd = &au1x_rtcmatch2_clockdev;
|
||||
@ -130,7 +123,9 @@ static int __init alchemy_time_init(unsigned int m2int)
|
||||
cd->min_delta_ns = clockevent_delta2ns(9, cd);
|
||||
cd->min_delta_ticks = 9; /* ~0.28ms */
|
||||
clockevents_register_device(cd);
|
||||
setup_irq(m2int, &au1x_rtcmatch2_irqaction);
|
||||
if (request_irq(m2int, au1x_rtcmatch2_irq, IRQF_TIMER, "timer",
|
||||
&au1x_rtcmatch2_clockdev))
|
||||
pr_err("Failed to register timer interrupt\n");
|
||||
|
||||
printk(KERN_INFO "Alchemy clocksource installed\n");
|
||||
|
||||
|
@ -83,12 +83,6 @@ static struct irq_chip ar7_sec_irq_type = {
|
||||
.irq_ack = ar7_ack_sec_irq,
|
||||
};
|
||||
|
||||
static struct irqaction ar7_cascade_action = {
|
||||
.handler = no_action,
|
||||
.name = "AR7 cascade interrupt",
|
||||
.flags = IRQF_NO_THREAD,
|
||||
};
|
||||
|
||||
static void __init ar7_irq_init(int base)
|
||||
{
|
||||
int i;
|
||||
@ -116,8 +110,14 @@ static void __init ar7_irq_init(int base)
|
||||
handle_level_irq);
|
||||
}
|
||||
|
||||
setup_irq(2, &ar7_cascade_action);
|
||||
setup_irq(ar7_irq_base, &ar7_cascade_action);
|
||||
if (request_irq(2, no_action, IRQF_NO_THREAD, "AR7 cascade interrupt",
|
||||
NULL))
|
||||
pr_err("Failed to request irq 2 (AR7 cascade interrupt)\n");
|
||||
if (request_irq(ar7_irq_base, no_action, IRQF_NO_THREAD,
|
||||
"AR7 cascade interrupt", NULL)) {
|
||||
pr_err("Failed to request irq %d (AR7 cascade interrupt)\n",
|
||||
ar7_irq_base);
|
||||
}
|
||||
set_c0_status(IE_IRQ0);
|
||||
}
|
||||
|
||||
|
@ -64,11 +64,6 @@ static irqreturn_t ar2315_ahb_err_handler(int cpl, void *dev_id)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static struct irqaction ar2315_ahb_err_interrupt = {
|
||||
.handler = ar2315_ahb_err_handler,
|
||||
.name = "ar2315-ahb-error",
|
||||
};
|
||||
|
||||
static void ar2315_misc_irq_handler(struct irq_desc *desc)
|
||||
{
|
||||
u32 pending = ar2315_rst_reg_read(AR2315_ISR) &
|
||||
@ -159,7 +154,9 @@ void __init ar2315_arch_init_irq(void)
|
||||
panic("Failed to add IRQ domain");
|
||||
|
||||
irq = irq_create_mapping(domain, AR2315_MISC_IRQ_AHB);
|
||||
setup_irq(irq, &ar2315_ahb_err_interrupt);
|
||||
if (request_irq(irq, ar2315_ahb_err_handler, 0, "ar2315-ahb-error",
|
||||
NULL))
|
||||
pr_err("Failed to register ar2315-ahb-error interrupt\n");
|
||||
|
||||
irq_set_chained_handler_and_data(AR2315_IRQ_MISC,
|
||||
ar2315_misc_irq_handler, domain);
|
||||
|
@ -68,11 +68,6 @@ static irqreturn_t ar5312_ahb_err_handler(int cpl, void *dev_id)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static struct irqaction ar5312_ahb_err_interrupt = {
|
||||
.handler = ar5312_ahb_err_handler,
|
||||
.name = "ar5312-ahb-error",
|
||||
};
|
||||
|
||||
static void ar5312_misc_irq_handler(struct irq_desc *desc)
|
||||
{
|
||||
u32 pending = ar5312_rst_reg_read(AR5312_ISR) &
|
||||
@ -154,7 +149,9 @@ void __init ar5312_arch_init_irq(void)
|
||||
panic("Failed to add IRQ domain");
|
||||
|
||||
irq = irq_create_mapping(domain, AR5312_MISC_IRQ_AHB_PROC);
|
||||
setup_irq(irq, &ar5312_ahb_err_interrupt);
|
||||
if (request_irq(irq, ar5312_ahb_err_handler, 0, "ar5312-ahb-error",
|
||||
NULL))
|
||||
pr_err("Failed to register ar5312-ahb-error interrupt\n");
|
||||
|
||||
irq_set_chained_handler_and_data(AR5312_IRQ_MISC,
|
||||
ar5312_misc_irq_handler, domain);
|
||||
|
@ -15,7 +15,7 @@
|
||||
#include <linux/memblock.h>
|
||||
#include <linux/err.h>
|
||||
#include <linux/clk.h>
|
||||
#include <linux/clk-provider.h>
|
||||
#include <linux/of_clk.h>
|
||||
#include <linux/of_fdt.h>
|
||||
#include <linux/irqchip.h>
|
||||
|
||||
|
@ -399,26 +399,6 @@ static struct irq_chip bcm63xx_external_irq_chip = {
|
||||
.irq_set_type = bcm63xx_external_irq_set_type,
|
||||
};
|
||||
|
||||
static struct irqaction cpu_ip2_cascade_action = {
|
||||
.handler = no_action,
|
||||
.name = "cascade_ip2",
|
||||
.flags = IRQF_NO_THREAD,
|
||||
};
|
||||
|
||||
#ifdef CONFIG_SMP
|
||||
static struct irqaction cpu_ip3_cascade_action = {
|
||||
.handler = no_action,
|
||||
.name = "cascade_ip3",
|
||||
.flags = IRQF_NO_THREAD,
|
||||
};
|
||||
#endif
|
||||
|
||||
static struct irqaction cpu_ext_cascade_action = {
|
||||
.handler = no_action,
|
||||
.name = "cascade_extirq",
|
||||
.flags = IRQF_NO_THREAD,
|
||||
};
|
||||
|
||||
static void bcm63xx_init_irq(void)
|
||||
{
|
||||
int irq_bits;
|
||||
@ -531,7 +511,7 @@ static void bcm63xx_init_irq(void)
|
||||
|
||||
void __init arch_init_irq(void)
|
||||
{
|
||||
int i;
|
||||
int i, irq;
|
||||
|
||||
bcm63xx_init_irq();
|
||||
mips_cpu_irq_init();
|
||||
@ -544,14 +524,25 @@ void __init arch_init_irq(void)
|
||||
handle_edge_irq);
|
||||
|
||||
if (!is_ext_irq_cascaded) {
|
||||
for (i = 3; i < 3 + ext_irq_count; ++i)
|
||||
setup_irq(MIPS_CPU_IRQ_BASE + i, &cpu_ext_cascade_action);
|
||||
for (i = 3; i < 3 + ext_irq_count; ++i) {
|
||||
irq = MIPS_CPU_IRQ_BASE + i;
|
||||
if (request_irq(irq, no_action, IRQF_NO_THREAD,
|
||||
"cascade_extirq", NULL)) {
|
||||
pr_err("Failed to request irq %d (cascade_extirq)\n",
|
||||
irq);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
setup_irq(MIPS_CPU_IRQ_BASE + 2, &cpu_ip2_cascade_action);
|
||||
irq = MIPS_CPU_IRQ_BASE + 2;
|
||||
if (request_irq(irq, no_action, IRQF_NO_THREAD, "cascade_ip2", NULL))
|
||||
pr_err("Failed to request irq %d (cascade_ip2)\n", irq);
|
||||
#ifdef CONFIG_SMP
|
||||
if (is_ext_irq_cascaded) {
|
||||
setup_irq(MIPS_CPU_IRQ_BASE + 3, &cpu_ip3_cascade_action);
|
||||
irq = MIPS_CPU_IRQ_BASE + 3;
|
||||
if (request_irq(irq, no_action, IRQF_NO_THREAD, "cascade_ip3",
|
||||
NULL))
|
||||
pr_err("Failed to request irq %d (cascade_ip3)\n", irq);
|
||||
bcm63xx_internal_irq_chip.irq_set_affinity =
|
||||
bcm63xx_internal_set_affinity;
|
||||
|
||||
|
@ -10,11 +10,11 @@
|
||||
#include <linux/init.h>
|
||||
#include <linux/bitops.h>
|
||||
#include <linux/memblock.h>
|
||||
#include <linux/clk-provider.h>
|
||||
#include <linux/ioport.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/io.h>
|
||||
#include <linux/of.h>
|
||||
#include <linux/of_clk.h>
|
||||
#include <linux/of_fdt.h>
|
||||
#include <linux/of_platform.h>
|
||||
#include <linux/libfdt.h>
|
||||
|
@ -4,6 +4,7 @@ subdir-y += cavium-octeon
|
||||
subdir-y += img
|
||||
subdir-y += ingenic
|
||||
subdir-y += lantiq
|
||||
subdir-y += loongson
|
||||
subdir-y += mscc
|
||||
subdir-y += mti
|
||||
subdir-y += netlogic
|
||||
|
@ -4,6 +4,7 @@
|
||||
#include "jz4780.dtsi"
|
||||
#include <dt-bindings/clock/ingenic,tcu.h>
|
||||
#include <dt-bindings/gpio/gpio.h>
|
||||
#include <dt-bindings/input/input.h>
|
||||
#include <dt-bindings/interrupt-controller/irq.h>
|
||||
#include <dt-bindings/regulator/active-semi,8865-regulator.h>
|
||||
|
||||
@ -27,6 +28,17 @@
|
||||
0x30000000 0x30000000>;
|
||||
};
|
||||
|
||||
gpio-keys {
|
||||
compatible = "gpio-keys";
|
||||
|
||||
sw1 {
|
||||
label = "ci20:sw1";
|
||||
linux,code = <KEY_F13>;
|
||||
gpios = <&gpd 17 GPIO_ACTIVE_HIGH>;
|
||||
wakeup-source;
|
||||
};
|
||||
};
|
||||
|
||||
leds {
|
||||
compatible = "gpio-leds";
|
||||
|
||||
@ -58,10 +70,17 @@
|
||||
eth0_power: fixedregulator@0 {
|
||||
compatible = "regulator-fixed";
|
||||
regulator-name = "eth0_power";
|
||||
regulator-min-microvolt = <3300000>;
|
||||
regulator-max-microvolt = <3300000>;
|
||||
gpio = <&gpb 25 GPIO_ACTIVE_LOW>;
|
||||
enable-active-high;
|
||||
};
|
||||
|
||||
ir: ir {
|
||||
compatible = "gpio-ir-receiver";
|
||||
gpios = <&gpe 3 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
|
||||
wlan0_power: fixedregulator@1 {
|
||||
compatible = "regulator-fixed";
|
||||
regulator-name = "wlan0_power";
|
||||
|
4
arch/mips/boot/dts/loongson/Makefile
Normal file
4
arch/mips/boot/dts/loongson/Makefile
Normal file
@ -0,0 +1,4 @@
|
||||
# SPDX_License_Identifier: GPL_2.0
|
||||
dtb-$(CONFIG_MACH_LOONGSON64) += loongson3_4core_rs780e.dtb loongson3_8core_rs780e.dtb
|
||||
|
||||
obj-$(CONFIG_BUILTIN_DTB) += $(addsuffix .o, $(dtb-y))
|
64
arch/mips/boot/dts/loongson/loongson3-package.dtsi
Normal file
64
arch/mips/boot/dts/loongson/loongson3-package.dtsi
Normal file
@ -0,0 +1,64 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
|
||||
#include <dt-bindings/interrupt-controller/irq.h>
|
||||
|
||||
/ {
|
||||
#address-cells = <2>;
|
||||
#size-cells = <2>;
|
||||
|
||||
cpuintc: interrupt-controller {
|
||||
#address-cells = <0>;
|
||||
#interrupt-cells = <1>;
|
||||
interrupt-controller;
|
||||
compatible = "mti,cpu-interrupt-controller";
|
||||
};
|
||||
|
||||
package0: bus@1fe00000 {
|
||||
compatible = "simple-bus";
|
||||
#address-cells = <2>;
|
||||
#size-cells = <1>;
|
||||
ranges = <0 0x1fe00000 0 0x1fe00000 0x100000
|
||||
0 0x3ff00000 0 0x3ff00000 0x100000
|
||||
/* 3A HT Config Space */
|
||||
0xefd 0xfb000000 0xefd 0xfb000000 0x10000000
|
||||
/* 3B HT Config Space */
|
||||
0x1efd 0xfb000000 0x1efd 0xfb000000 0x10000000>;
|
||||
|
||||
liointc: interrupt-controller@3ff01400 {
|
||||
compatible = "loongson,liointc-1.0";
|
||||
reg = <0 0x3ff01400 0x64>;
|
||||
|
||||
interrupt-controller;
|
||||
#interrupt-cells = <2>;
|
||||
|
||||
interrupt-parent = <&cpuintc>;
|
||||
interrupts = <2>, <3>;
|
||||
interrupt-names = "int0", "int1";
|
||||
|
||||
loongson,parent_int_map = <0xf0ffffff>, /* int0 */
|
||||
<0x0f000000>, /* int1 */
|
||||
<0x00000000>, /* int2 */
|
||||
<0x00000000>; /* int3 */
|
||||
|
||||
};
|
||||
|
||||
cpu_uart0: serial@1fe001e0 {
|
||||
compatible = "ns16550a";
|
||||
reg = <0 0x1fe001e0 0x8>;
|
||||
clock-frequency = <33000000>;
|
||||
interrupt-parent = <&liointc>;
|
||||
interrupts = <10 IRQ_TYPE_LEVEL_HIGH>;
|
||||
no-loopback-test;
|
||||
};
|
||||
|
||||
cpu_uart1: serial@1fe001e8 {
|
||||
status = "disabled";
|
||||
compatible = "ns16550a";
|
||||
reg = <0 0x1fe001e8 0x8>;
|
||||
clock-frequency = <33000000>;
|
||||
interrupts = <10 IRQ_TYPE_LEVEL_HIGH>;
|
||||
interrupt-parent = <&liointc>;
|
||||
no-loopback-test;
|
||||
};
|
||||
};
|
||||
};
|
25
arch/mips/boot/dts/loongson/loongson3_4core_rs780e.dts
Normal file
25
arch/mips/boot/dts/loongson/loongson3_4core_rs780e.dts
Normal file
@ -0,0 +1,25 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
|
||||
/dts-v1/;
|
||||
|
||||
#include "loongson3-package.dtsi"
|
||||
#include "rs780e-pch.dtsi"
|
||||
|
||||
/ {
|
||||
compatible = "loongson,loongson3-4core-rs780e";
|
||||
};
|
||||
|
||||
&package0 {
|
||||
htpic: interrupt-controller@efdfb000080 {
|
||||
compatible = "loongson,htpic-1.0";
|
||||
reg = <0xefd 0xfb000080 0x40>;
|
||||
interrupt-controller;
|
||||
#interrupt-cells = <1>;
|
||||
|
||||
interrupt-parent = <&liointc>;
|
||||
interrupts = <24 IRQ_TYPE_LEVEL_HIGH>,
|
||||
<25 IRQ_TYPE_LEVEL_HIGH>,
|
||||
<26 IRQ_TYPE_LEVEL_HIGH>,
|
||||
<27 IRQ_TYPE_LEVEL_HIGH>;
|
||||
};
|
||||
};
|
25
arch/mips/boot/dts/loongson/loongson3_8core_rs780e.dts
Normal file
25
arch/mips/boot/dts/loongson/loongson3_8core_rs780e.dts
Normal file
@ -0,0 +1,25 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
|
||||
/dts-v1/;
|
||||
|
||||
#include "loongson3-package.dtsi"
|
||||
#include "rs780e-pch.dtsi"
|
||||
|
||||
/ {
|
||||
compatible = "loongson,loongson3-8core-rs780e";
|
||||
};
|
||||
|
||||
&package0 {
|
||||
htpic: interrupt-controller@1efdfb000080 {
|
||||
compatible = "loongson,htpic-1.0";
|
||||
reg = <0x1efd 0xfb000080 0x40>;
|
||||
interrupt-controller;
|
||||
#interrupt-cells = <1>;
|
||||
|
||||
interrupt-parent = <&liointc>;
|
||||
interrupts = <24 IRQ_TYPE_LEVEL_HIGH>,
|
||||
<25 IRQ_TYPE_LEVEL_HIGH>,
|
||||
<26 IRQ_TYPE_LEVEL_HIGH>,
|
||||
<27 IRQ_TYPE_LEVEL_HIGH>;
|
||||
};
|
||||
};
|
26
arch/mips/boot/dts/loongson/rs780e-pch.dtsi
Normal file
26
arch/mips/boot/dts/loongson/rs780e-pch.dtsi
Normal file
@ -0,0 +1,26 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
|
||||
/ {
|
||||
bus@10000000 {
|
||||
compatible = "simple-bus";
|
||||
#address-cells = <2>;
|
||||
#size-cells = <2>;
|
||||
ranges = <0 0x10000000 0 0x10000000 0 0x10000000
|
||||
0 0x40000000 0 0x40000000 0 0x40000000
|
||||
0xfd 0xfe000000 0xfd 0xfe000000 0 0x2000000 /* PCI Config Space */>;
|
||||
|
||||
isa {
|
||||
compatible = "isa";
|
||||
#address-cells = <2>;
|
||||
#size-cells = <1>;
|
||||
ranges = <1 0 0 0 0x1000>;
|
||||
|
||||
rtc0: rtc@70 {
|
||||
compatible = "motorola,mc146818";
|
||||
reg = <1 0x70 0x8>;
|
||||
interrupts = <8>;
|
||||
interrupt-parent = <&htpic>;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
@ -2199,6 +2199,9 @@ static int octeon_irq_cib_map(struct irq_domain *d,
|
||||
}
|
||||
|
||||
cd = kzalloc(sizeof(*cd), GFP_KERNEL);
|
||||
if (!cd)
|
||||
return -ENOMEM;
|
||||
|
||||
cd->host_data = host_data;
|
||||
cd->bit = hw;
|
||||
|
||||
|
@ -45,18 +45,20 @@ asmlinkage void plat_irq_dispatch(void)
|
||||
spurious_interrupt();
|
||||
}
|
||||
|
||||
static struct irqaction cascade = {
|
||||
.handler = no_action,
|
||||
.name = "cascade",
|
||||
.flags = IRQF_NO_THREAD,
|
||||
};
|
||||
|
||||
void __init arch_init_irq(void)
|
||||
{
|
||||
mips_cpu_irq_init();
|
||||
gt641xx_irq_init();
|
||||
init_i8259_irqs();
|
||||
|
||||
setup_irq(GT641XX_CASCADE_IRQ, &cascade);
|
||||
setup_irq(I8259_CASCADE_IRQ, &cascade);
|
||||
if (request_irq(GT641XX_CASCADE_IRQ, no_action, IRQF_NO_THREAD,
|
||||
"cascade", NULL)) {
|
||||
pr_err("Failed to request irq %d (cascade)\n",
|
||||
GT641XX_CASCADE_IRQ);
|
||||
}
|
||||
if (request_irq(I8259_CASCADE_IRQ, no_action, IRQF_NO_THREAD,
|
||||
"cascade", NULL)) {
|
||||
pr_err("Failed to request irq %d (cascade)\n",
|
||||
I8259_CASCADE_IRQ);
|
||||
}
|
||||
}
|
||||
|
@ -21,7 +21,6 @@ CONFIG_MODULE_UNLOAD=y
|
||||
# CONFIG_BLK_DEV_BSG is not set
|
||||
CONFIG_PARTITION_ADVANCED=y
|
||||
CONFIG_BSD_DISKLABEL=y
|
||||
# CONFIG_IOSCHED_CFQ is not set
|
||||
CONFIG_NET=y
|
||||
CONFIG_PACKET=y
|
||||
CONFIG_UNIX=y
|
||||
|
@ -22,7 +22,6 @@ CONFIG_HZ_100=y
|
||||
CONFIG_MODULES=y
|
||||
CONFIG_MODULE_UNLOAD=y
|
||||
# CONFIG_BLK_DEV_BSG is not set
|
||||
# CONFIG_IOSCHED_CFQ is not set
|
||||
# CONFIG_COMPACTION is not set
|
||||
CONFIG_NET=y
|
||||
CONFIG_PACKET=y
|
||||
|
@ -23,7 +23,6 @@ CONFIG_PCI=y
|
||||
CONFIG_MODULES=y
|
||||
CONFIG_MODULE_UNLOAD=y
|
||||
# CONFIG_BLK_DEV_BSG is not set
|
||||
# CONFIG_IOSCHED_CFQ is not set
|
||||
CONFIG_NET=y
|
||||
CONFIG_PACKET=y
|
||||
CONFIG_UNIX=y
|
||||
|
@ -21,8 +21,6 @@ CONFIG_PCI=y
|
||||
CONFIG_PCCARD=y
|
||||
CONFIG_PCMCIA_BCM63XX=y
|
||||
# CONFIG_BLK_DEV_BSG is not set
|
||||
# CONFIG_IOSCHED_DEADLINE is not set
|
||||
# CONFIG_IOSCHED_CFQ is not set
|
||||
CONFIG_NET=y
|
||||
CONFIG_UNIX=y
|
||||
CONFIG_INET=y
|
||||
|
@ -12,8 +12,6 @@ CONFIG_NR_CPUS=4
|
||||
# CONFIG_SECCOMP is not set
|
||||
CONFIG_MIPS_O32_FP64_SUPPORT=y
|
||||
# CONFIG_BLK_DEV_BSG is not set
|
||||
# CONFIG_IOSCHED_DEADLINE is not set
|
||||
# CONFIG_IOSCHED_CFQ is not set
|
||||
CONFIG_NET=y
|
||||
CONFIG_PACKET=y
|
||||
CONFIG_PACKET_DIAG=y
|
||||
|
@ -21,8 +21,6 @@ CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
|
||||
CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y
|
||||
CONFIG_BMIPS_CPUFREQ=y
|
||||
# CONFIG_BLK_DEV_BSG is not set
|
||||
# CONFIG_IOSCHED_DEADLINE is not set
|
||||
# CONFIG_IOSCHED_CFQ is not set
|
||||
CONFIG_NET=y
|
||||
CONFIG_PACKET=y
|
||||
CONFIG_PACKET_DIAG=y
|
||||
|
@ -1,4 +1,5 @@
|
||||
# CONFIG_LOCALVERSION_AUTO is not set
|
||||
CONFIG_MODULES=y
|
||||
CONFIG_KERNEL_XZ=y
|
||||
CONFIG_SYSVIPC=y
|
||||
CONFIG_POSIX_MQUEUE=y
|
||||
@ -88,12 +89,14 @@ CONFIG_I2C_JZ4780=y
|
||||
CONFIG_SPI=y
|
||||
CONFIG_SPI_GPIO=y
|
||||
CONFIG_GPIO_SYSFS=y
|
||||
CONFIG_KEYBOARD_GPIO=m
|
||||
# CONFIG_HWMON is not set
|
||||
CONFIG_WATCHDOG=y
|
||||
CONFIG_JZ4740_WDT=y
|
||||
CONFIG_REGULATOR=y
|
||||
CONFIG_REGULATOR_DEBUG=y
|
||||
CONFIG_REGULATOR_FIXED_VOLTAGE=y
|
||||
CONFIG_REGULATOR_ACT8865=y
|
||||
# CONFIG_VGA_CONSOLE is not set
|
||||
# CONFIG_HID is not set
|
||||
# CONFIG_USB_SUPPORT is not set
|
||||
@ -166,3 +169,21 @@ CONFIG_STACKTRACE=y
|
||||
# CONFIG_FTRACE is not set
|
||||
CONFIG_CMDLINE_BOOL=y
|
||||
CONFIG_CMDLINE="earlycon console=ttyS4,115200 clk_ignore_unused"
|
||||
CONFIG_LEDS_CLASS=y
|
||||
CONFIG_LEDS_GPIO=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_TIMER=y
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=y
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=y
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=y
|
||||
CONFIG_LEDS_TRIGGER_BACKLIGHT=m
|
||||
CONFIG_LEDS_TRIGGER_CPU=y
|
||||
CONFIG_LEDS_TRIGGER_DEFAULT_ON=y
|
||||
CONFIG_LEDS_TRIGGER_TRANSIENT=y
|
||||
CONFIG_LEDS_TRIGGER_CAMERA=m
|
||||
CONFIG_LIRC=y
|
||||
CONFIG_MEDIA_SUPPORT=m
|
||||
CONFIG_RC_DEVICES=y
|
||||
CONFIG_IR_GPIO_CIR=m
|
||||
CONFIG_IR_GPIO_TX=m
|
||||
|
@ -28,7 +28,6 @@ CONFIG_PCMCIA_ALCHEMY_DEVBOARD=y
|
||||
CONFIG_FIRMWARE_MEMMAP=y
|
||||
CONFIG_BLK_DEV_BSGLIB=y
|
||||
CONFIG_PARTITION_ADVANCED=y
|
||||
CONFIG_DEFAULT_NOOP=y
|
||||
CONFIG_CMA=y
|
||||
CONFIG_CMA_DEBUG=y
|
||||
CONFIG_NET=y
|
||||
|
@ -19,7 +19,6 @@ CONFIG_MTD_NAND_ECC_SW_HAMMING=y
|
||||
CONFIG_MTD_NAND_ECC_SW_BCH=y
|
||||
CONFIG_MTD_RAW_NAND=y
|
||||
CONFIG_MTD_NAND_GPIO=y
|
||||
CONFIG_MTD_NAND_IDS=y
|
||||
|
||||
CONFIG_MTD_UBI=y
|
||||
CONFIG_MTD_UBI_BLOCK=y
|
||||
|
@ -1,15 +1,17 @@
|
||||
CONFIG_SYSVIPC=y
|
||||
CONFIG_POSIX_MQUEUE=y
|
||||
CONFIG_NO_HZ=y
|
||||
CONFIG_HIGH_RES_TIMERS=y
|
||||
CONFIG_PREEMPT_VOLUNTARY=y
|
||||
CONFIG_BSD_PROCESS_ACCT=y
|
||||
CONFIG_IKCONFIG=y
|
||||
CONFIG_IKCONFIG_PROC=y
|
||||
CONFIG_LOG_BUF_SHIFT=14
|
||||
CONFIG_RELAY=y
|
||||
CONFIG_EXPERT=y
|
||||
CONFIG_SLAB=y
|
||||
CONFIG_MACH_JAZZ=y
|
||||
CONFIG_OLIVETTI_M700=y
|
||||
CONFIG_MIPS_MAGNUM_4000=y
|
||||
CONFIG_CPU_LITTLE_ENDIAN=y
|
||||
CONFIG_MODULES=y
|
||||
CONFIG_MODULE_UNLOAD=y
|
||||
CONFIG_MODVERSIONS=y
|
||||
@ -18,168 +20,17 @@ CONFIG_BINFMT_MISC=m
|
||||
CONFIG_NET=y
|
||||
CONFIG_PACKET=m
|
||||
CONFIG_UNIX=y
|
||||
CONFIG_NET_KEY=m
|
||||
CONFIG_NET_KEY_MIGRATE=y
|
||||
CONFIG_INET=y
|
||||
CONFIG_IP_MULTICAST=y
|
||||
CONFIG_NET_IPIP=m
|
||||
CONFIG_IP_MROUTE=y
|
||||
CONFIG_IP_PIMSM_V1=y
|
||||
CONFIG_IP_PIMSM_V2=y
|
||||
CONFIG_INET_XFRM_MODE_TRANSPORT=m
|
||||
CONFIG_INET_XFRM_MODE_TUNNEL=m
|
||||
CONFIG_TCP_MD5SIG=y
|
||||
CONFIG_IPV6_ROUTER_PREF=y
|
||||
CONFIG_IPV6_ROUTE_INFO=y
|
||||
CONFIG_INET6_AH=m
|
||||
CONFIG_INET6_ESP=m
|
||||
CONFIG_INET6_IPCOMP=m
|
||||
CONFIG_IPV6_TUNNEL=m
|
||||
CONFIG_NETWORK_SECMARK=y
|
||||
CONFIG_NETFILTER=y
|
||||
CONFIG_NF_CONNTRACK=m
|
||||
CONFIG_NF_CONNTRACK_SECMARK=y
|
||||
CONFIG_NF_CONNTRACK_EVENTS=y
|
||||
CONFIG_NF_CONNTRACK_AMANDA=m
|
||||
CONFIG_NF_CONNTRACK_FTP=m
|
||||
CONFIG_NF_CONNTRACK_H323=m
|
||||
CONFIG_NF_CONNTRACK_IRC=m
|
||||
CONFIG_NF_CONNTRACK_PPTP=m
|
||||
CONFIG_NF_CONNTRACK_SANE=m
|
||||
CONFIG_NF_CONNTRACK_SIP=m
|
||||
CONFIG_NF_CONNTRACK_TFTP=m
|
||||
CONFIG_NF_CT_NETLINK=m
|
||||
CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
|
||||
CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
|
||||
CONFIG_NETFILTER_XT_TARGET_MARK=m
|
||||
CONFIG_NETFILTER_XT_TARGET_NFLOG=m
|
||||
CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
|
||||
CONFIG_NETFILTER_XT_TARGET_SECMARK=m
|
||||
CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
|
||||
CONFIG_NETFILTER_XT_MATCH_COMMENT=m
|
||||
CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
|
||||
CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
|
||||
CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
|
||||
CONFIG_NETFILTER_XT_MATCH_DCCP=m
|
||||
CONFIG_NETFILTER_XT_MATCH_ESP=m
|
||||
CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
|
||||
CONFIG_NETFILTER_XT_MATCH_HELPER=m
|
||||
CONFIG_NETFILTER_XT_MATCH_LENGTH=m
|
||||
CONFIG_NETFILTER_XT_MATCH_LIMIT=m
|
||||
CONFIG_NETFILTER_XT_MATCH_MAC=m
|
||||
CONFIG_NETFILTER_XT_MATCH_MARK=m
|
||||
CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
|
||||
CONFIG_NETFILTER_XT_MATCH_POLICY=m
|
||||
CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
|
||||
CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
|
||||
CONFIG_NETFILTER_XT_MATCH_QUOTA=m
|
||||
CONFIG_NETFILTER_XT_MATCH_REALM=m
|
||||
CONFIG_NETFILTER_XT_MATCH_STATE=m
|
||||
CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
|
||||
CONFIG_NETFILTER_XT_MATCH_STRING=m
|
||||
CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
|
||||
CONFIG_IP_NF_IPTABLES=m
|
||||
CONFIG_IP_NF_MATCH_AH=m
|
||||
CONFIG_IP_NF_MATCH_ECN=m
|
||||
CONFIG_IP_NF_MATCH_TTL=m
|
||||
CONFIG_IP_NF_FILTER=m
|
||||
CONFIG_IP_NF_TARGET_REJECT=m
|
||||
CONFIG_IP_NF_MANGLE=m
|
||||
CONFIG_IP_NF_TARGET_CLUSTERIP=m
|
||||
CONFIG_IP_NF_TARGET_ECN=m
|
||||
CONFIG_IP_NF_TARGET_TTL=m
|
||||
CONFIG_IP_NF_RAW=m
|
||||
CONFIG_IP_NF_ARPTABLES=m
|
||||
CONFIG_IP_NF_ARPFILTER=m
|
||||
CONFIG_IP_NF_ARP_MANGLE=m
|
||||
CONFIG_IP6_NF_IPTABLES=m
|
||||
CONFIG_IP6_NF_MATCH_AH=m
|
||||
CONFIG_IP6_NF_MATCH_EUI64=m
|
||||
CONFIG_IP6_NF_MATCH_FRAG=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_HL=m
|
||||
CONFIG_IP6_NF_MATCH_IPV6HEADER=m
|
||||
CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_TARGET_HL=m
|
||||
CONFIG_IP6_NF_FILTER=m
|
||||
CONFIG_IP6_NF_TARGET_REJECT=m
|
||||
CONFIG_IP6_NF_MANGLE=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_DECNET_NF_GRABULATOR=m
|
||||
CONFIG_BRIDGE_NF_EBTABLES=m
|
||||
CONFIG_BRIDGE_EBT_BROUTE=m
|
||||
CONFIG_BRIDGE_EBT_T_FILTER=m
|
||||
CONFIG_BRIDGE_EBT_T_NAT=m
|
||||
CONFIG_BRIDGE_EBT_802_3=m
|
||||
CONFIG_BRIDGE_EBT_AMONG=m
|
||||
CONFIG_BRIDGE_EBT_ARP=m
|
||||
CONFIG_BRIDGE_EBT_IP=m
|
||||
CONFIG_BRIDGE_EBT_LIMIT=m
|
||||
CONFIG_BRIDGE_EBT_MARK=m
|
||||
CONFIG_BRIDGE_EBT_PKTTYPE=m
|
||||
CONFIG_BRIDGE_EBT_STP=m
|
||||
CONFIG_BRIDGE_EBT_VLAN=m
|
||||
CONFIG_BRIDGE_EBT_ARPREPLY=m
|
||||
CONFIG_BRIDGE_EBT_DNAT=m
|
||||
CONFIG_BRIDGE_EBT_MARK_T=m
|
||||
CONFIG_BRIDGE_EBT_REDIRECT=m
|
||||
CONFIG_BRIDGE_EBT_SNAT=m
|
||||
CONFIG_BRIDGE_EBT_LOG=m
|
||||
CONFIG_BRIDGE=m
|
||||
CONFIG_DECNET=m
|
||||
CONFIG_NET_SCHED=y
|
||||
CONFIG_NET_SCH_CBQ=m
|
||||
CONFIG_NET_SCH_HTB=m
|
||||
CONFIG_NET_SCH_HFSC=m
|
||||
CONFIG_NET_SCH_PRIO=m
|
||||
CONFIG_NET_SCH_RED=m
|
||||
CONFIG_NET_SCH_SFQ=m
|
||||
CONFIG_NET_SCH_TEQL=m
|
||||
CONFIG_NET_SCH_TBF=m
|
||||
CONFIG_NET_SCH_GRED=m
|
||||
CONFIG_NET_SCH_DSMARK=m
|
||||
CONFIG_NET_SCH_NETEM=m
|
||||
CONFIG_NET_CLS_BASIC=m
|
||||
CONFIG_NET_CLS_TCINDEX=m
|
||||
CONFIG_NET_CLS_ROUTE4=m
|
||||
CONFIG_NET_CLS_FW=m
|
||||
CONFIG_NET_CLS_U32=m
|
||||
CONFIG_NET_CLS_RSVP=m
|
||||
CONFIG_NET_CLS_RSVP6=m
|
||||
CONFIG_HAMRADIO=y
|
||||
CONFIG_AX25=m
|
||||
CONFIG_NETROM=m
|
||||
CONFIG_ROSE=m
|
||||
CONFIG_MKISS=m
|
||||
CONFIG_6PACK=m
|
||||
CONFIG_BPQETHER=m
|
||||
CONFIG_CONNECTOR=m
|
||||
CONFIG_PARPORT=m
|
||||
CONFIG_PARPORT_PC=m
|
||||
CONFIG_PARPORT_1284=y
|
||||
CONFIG_DEVTMPFS=y
|
||||
CONFIG_BLK_DEV_FD=m
|
||||
CONFIG_PARIDE=m
|
||||
CONFIG_PARIDE_PD=m
|
||||
CONFIG_PARIDE_PCD=m
|
||||
CONFIG_PARIDE_PF=m
|
||||
CONFIG_PARIDE_PT=m
|
||||
CONFIG_PARIDE_PG=m
|
||||
CONFIG_PARIDE_ATEN=m
|
||||
CONFIG_PARIDE_BPCK=m
|
||||
CONFIG_PARIDE_BPCK6=m
|
||||
CONFIG_PARIDE_COMM=m
|
||||
CONFIG_PARIDE_DSTR=m
|
||||
CONFIG_PARIDE_FIT2=m
|
||||
CONFIG_PARIDE_FIT3=m
|
||||
CONFIG_PARIDE_EPAT=m
|
||||
CONFIG_PARIDE_EPIA=m
|
||||
CONFIG_PARIDE_FRIQ=m
|
||||
CONFIG_PARIDE_FRPW=m
|
||||
CONFIG_PARIDE_KBIC=m
|
||||
CONFIG_PARIDE_KTTI=m
|
||||
CONFIG_PARIDE_ON20=m
|
||||
CONFIG_PARIDE_ON26=m
|
||||
CONFIG_BLK_DEV_LOOP=m
|
||||
CONFIG_BLK_DEV_CRYPTOLOOP=m
|
||||
CONFIG_BLK_DEV_NBD=m
|
||||
@ -194,26 +45,12 @@ CONFIG_BLK_DEV_SR=m
|
||||
CONFIG_BLK_DEV_SR_VENDOR=y
|
||||
CONFIG_SCSI_CONSTANTS=y
|
||||
CONFIG_SCSI_SCAN_ASYNC=y
|
||||
CONFIG_SCSI_FC_ATTRS=y
|
||||
CONFIG_SCSI_SAS_ATTRS=m
|
||||
CONFIG_ISCSI_TCP=m
|
||||
CONFIG_SCSI_PPA=m
|
||||
CONFIG_SCSI_IMM=m
|
||||
CONFIG_JAZZ_ESP=y
|
||||
CONFIG_MD=y
|
||||
CONFIG_BLK_DEV_MD=m
|
||||
CONFIG_MD_LINEAR=m
|
||||
CONFIG_MD_RAID0=m
|
||||
CONFIG_MD_RAID1=m
|
||||
CONFIG_MD_RAID10=m
|
||||
CONFIG_MD_RAID456=m
|
||||
CONFIG_MD_MULTIPATH=m
|
||||
CONFIG_MD_FAULTY=m
|
||||
CONFIG_BLK_DEV_DM=m
|
||||
CONFIG_DM_SNAPSHOT=m
|
||||
CONFIG_DM_MIRROR=m
|
||||
CONFIG_DM_ZERO=m
|
||||
CONFIG_DM_MULTIPATH=m
|
||||
CONFIG_ATA=y
|
||||
CONFIG_PATA_LEGACY=y
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_BONDING=m
|
||||
CONFIG_DUMMY=m
|
||||
@ -221,28 +58,18 @@ CONFIG_EQUALIZER=m
|
||||
CONFIG_TUN=m
|
||||
CONFIG_MIPS_JAZZ_SONIC=y
|
||||
CONFIG_NE2000=m
|
||||
CONFIG_PHYLIB=m
|
||||
CONFIG_CICADA_PHY=m
|
||||
CONFIG_DAVICOM_PHY=m
|
||||
CONFIG_LXT_PHY=m
|
||||
CONFIG_MARVELL_PHY=m
|
||||
CONFIG_QSEMI_PHY=m
|
||||
CONFIG_SMSC_PHY=m
|
||||
CONFIG_VITESSE_PHY=m
|
||||
CONFIG_PLIP=m
|
||||
CONFIG_INPUT_FF_MEMLESS=m
|
||||
CONFIG_SERIO_PARKBD=m
|
||||
CONFIG_SERIO_RAW=m
|
||||
CONFIG_VT_HW_CONSOLE_BINDING=y
|
||||
CONFIG_SERIAL_8250=m
|
||||
CONFIG_SERIAL_8250=y
|
||||
CONFIG_SERIAL_8250_CONSOLE=y
|
||||
CONFIG_SERIAL_8250_EXTENDED=y
|
||||
CONFIG_SERIAL_8250_SHARE_IRQ=y
|
||||
CONFIG_SERIAL_8250_DETECT_IRQ=y
|
||||
CONFIG_SERIAL_8250_RSA=y
|
||||
CONFIG_PRINTER=m
|
||||
CONFIG_PPDEV=m
|
||||
# CONFIG_HW_RANDOM is not set
|
||||
CONFIG_W1=m
|
||||
CONFIG_FB=y
|
||||
CONFIG_FB_G364=y
|
||||
CONFIG_FRAMEBUFFER_CONSOLE=y
|
||||
# CONFIG_HWMON is not set
|
||||
CONFIG_EXT2_FS=m
|
||||
CONFIG_EXT3_FS=y
|
||||
@ -263,78 +90,8 @@ CONFIG_VFAT_FS=m
|
||||
CONFIG_NTFS_FS=m
|
||||
CONFIG_PROC_KCORE=y
|
||||
CONFIG_TMPFS=y
|
||||
CONFIG_ADFS_FS=m
|
||||
CONFIG_AFFS_FS=m
|
||||
CONFIG_HFS_FS=m
|
||||
CONFIG_BEFS_FS=m
|
||||
CONFIG_BFS_FS=m
|
||||
CONFIG_EFS_FS=m
|
||||
CONFIG_CRAMFS=m
|
||||
CONFIG_VXFS_FS=m
|
||||
CONFIG_MINIX_FS=m
|
||||
CONFIG_HPFS_FS=m
|
||||
CONFIG_QNX4FS_FS=m
|
||||
CONFIG_ROMFS_FS=m
|
||||
CONFIG_SYSV_FS=m
|
||||
CONFIG_UFS_FS=m
|
||||
CONFIG_NFS_FS=m
|
||||
CONFIG_NFSD=m
|
||||
CONFIG_NFSD_V3=y
|
||||
CONFIG_CIFS=m
|
||||
CONFIG_CODA_FS=m
|
||||
CONFIG_AFS_FS=m
|
||||
CONFIG_NLS_CODEPAGE_437=m
|
||||
CONFIG_NLS_CODEPAGE_737=m
|
||||
CONFIG_NLS_CODEPAGE_775=m
|
||||
CONFIG_NLS_CODEPAGE_850=m
|
||||
CONFIG_NLS_CODEPAGE_852=m
|
||||
CONFIG_NLS_CODEPAGE_855=m
|
||||
CONFIG_NLS_CODEPAGE_857=m
|
||||
CONFIG_NLS_CODEPAGE_860=m
|
||||
CONFIG_NLS_CODEPAGE_861=m
|
||||
CONFIG_NLS_CODEPAGE_862=m
|
||||
CONFIG_NLS_CODEPAGE_863=m
|
||||
CONFIG_NLS_CODEPAGE_864=m
|
||||
CONFIG_NLS_CODEPAGE_865=m
|
||||
CONFIG_NLS_CODEPAGE_866=m
|
||||
CONFIG_NLS_CODEPAGE_869=m
|
||||
CONFIG_NLS_CODEPAGE_936=m
|
||||
CONFIG_NLS_CODEPAGE_950=m
|
||||
CONFIG_NLS_CODEPAGE_932=m
|
||||
CONFIG_NLS_CODEPAGE_949=m
|
||||
CONFIG_NLS_CODEPAGE_874=m
|
||||
CONFIG_NLS_ISO8859_8=m
|
||||
CONFIG_NLS_CODEPAGE_1250=m
|
||||
CONFIG_NLS_CODEPAGE_1251=m
|
||||
CONFIG_NLS_ASCII=m
|
||||
CONFIG_NLS_ISO8859_1=m
|
||||
CONFIG_NLS_ISO8859_2=m
|
||||
CONFIG_NLS_ISO8859_3=m
|
||||
CONFIG_NLS_ISO8859_4=m
|
||||
CONFIG_NLS_ISO8859_5=m
|
||||
CONFIG_NLS_ISO8859_6=m
|
||||
CONFIG_NLS_ISO8859_7=m
|
||||
CONFIG_NLS_ISO8859_9=m
|
||||
CONFIG_NLS_ISO8859_13=m
|
||||
CONFIG_NLS_ISO8859_14=m
|
||||
CONFIG_NLS_ISO8859_15=m
|
||||
CONFIG_NLS_KOI8_R=m
|
||||
CONFIG_NLS_KOI8_U=m
|
||||
CONFIG_NLS_UTF8=m
|
||||
CONFIG_CRYPTO_LRW=m
|
||||
CONFIG_CRYPTO_PCBC=m
|
||||
CONFIG_CRYPTO_HMAC=y
|
||||
CONFIG_CRYPTO_XCBC=m
|
||||
CONFIG_CRYPTO_MICHAEL_MIC=m
|
||||
CONFIG_CRYPTO_TGR192=m
|
||||
CONFIG_CRYPTO_WP512=m
|
||||
CONFIG_CRYPTO_ANUBIS=m
|
||||
CONFIG_CRYPTO_BLOWFISH=m
|
||||
CONFIG_CRYPTO_CAMELLIA=m
|
||||
CONFIG_CRYPTO_CAST6=m
|
||||
CONFIG_CRYPTO_FCRYPT=m
|
||||
CONFIG_CRYPTO_KHAZAD=m
|
||||
CONFIG_CRYPTO_SERPENT=m
|
||||
CONFIG_CRYPTO_TEA=m
|
||||
CONFIG_CRYPTO_TWOFISH=m
|
||||
CONFIG_CRC_CCITT=m
|
||||
|
@ -16,8 +16,6 @@ CONFIG_HZ_1000=y
|
||||
# CONFIG_SECCOMP is not set
|
||||
CONFIG_PCI=y
|
||||
# CONFIG_BLK_DEV_BSG is not set
|
||||
# CONFIG_IOSCHED_DEADLINE is not set
|
||||
# CONFIG_IOSCHED_CFQ is not set
|
||||
CONFIG_NET=y
|
||||
CONFIG_PACKET=y
|
||||
CONFIG_UNIX=y
|
||||
|
@ -26,7 +26,7 @@ CONFIG_MODULES=y
|
||||
CONFIG_MODULE_UNLOAD=y
|
||||
CONFIG_MODVERSIONS=y
|
||||
CONFIG_BLK_DEV_INTEGRITY=y
|
||||
CONFIG_IOSCHED_DEADLINE=m
|
||||
CONFIG_MQ_IOSCHED_DEADLINE=m
|
||||
CONFIG_BINFMT_MISC=m
|
||||
CONFIG_NET=y
|
||||
CONFIG_PACKET=y
|
||||
|
@ -38,8 +38,9 @@ CONFIG_MODULE_UNLOAD=y
|
||||
CONFIG_MODULE_FORCE_UNLOAD=y
|
||||
CONFIG_MODVERSIONS=y
|
||||
CONFIG_PARTITION_ADVANCED=y
|
||||
CONFIG_IOSCHED_DEADLINE=m
|
||||
CONFIG_CFQ_GROUP_IOSCHED=y
|
||||
CONFIG_MQ_IOSCHED_DEADLINE=m
|
||||
CONFIG_IOSCHED_BFQ=y
|
||||
CONFIG_BFQ_GROUP_IOSCHED=y
|
||||
CONFIG_BINFMT_MISC=m
|
||||
CONFIG_KSM=y
|
||||
CONFIG_NET=y
|
||||
|
@ -14,8 +14,6 @@ CONFIG_PCI=y
|
||||
CONFIG_MODULES=y
|
||||
CONFIG_MODULE_UNLOAD=y
|
||||
CONFIG_MODVERSIONS=y
|
||||
# CONFIG_IOSCHED_DEADLINE is not set
|
||||
# CONFIG_IOSCHED_CFQ is not set
|
||||
CONFIG_NET=y
|
||||
CONFIG_UNIX=y
|
||||
CONFIG_XFRM_USER=y
|
||||
|
@ -14,8 +14,6 @@ CONFIG_HZ_128=y
|
||||
CONFIG_MODULES=y
|
||||
CONFIG_MODULE_UNLOAD=y
|
||||
# CONFIG_BLK_DEV_BSG is not set
|
||||
# CONFIG_IOSCHED_DEADLINE is not set
|
||||
# CONFIG_IOSCHED_CFQ is not set
|
||||
CONFIG_NET=y
|
||||
CONFIG_PACKET=y
|
||||
CONFIG_UNIX=y
|
||||
|
@ -23,7 +23,6 @@ CONFIG_MODULE_UNLOAD=y
|
||||
CONFIG_PARTITION_ADVANCED=y
|
||||
CONFIG_MAC_PARTITION=y
|
||||
CONFIG_BSD_DISKLABEL=y
|
||||
# CONFIG_IOSCHED_CFQ is not set
|
||||
CONFIG_NET=y
|
||||
CONFIG_PACKET=y
|
||||
CONFIG_UNIX=y
|
||||
|
@ -21,7 +21,6 @@ CONFIG_MODULES=y
|
||||
CONFIG_MODULE_UNLOAD=y
|
||||
# CONFIG_BLK_DEV_BSG is not set
|
||||
CONFIG_PARTITION_ADVANCED=y
|
||||
# CONFIG_IOSCHED_CFQ is not set
|
||||
# CONFIG_COREDUMP is not set
|
||||
# CONFIG_COMPACTION is not set
|
||||
CONFIG_NET=y
|
||||
|
@ -23,7 +23,6 @@ CONFIG_MODULES=y
|
||||
CONFIG_MODULE_UNLOAD=y
|
||||
# CONFIG_BLK_DEV_BSG is not set
|
||||
CONFIG_PARTITION_ADVANCED=y
|
||||
# CONFIG_IOSCHED_CFQ is not set
|
||||
# CONFIG_COREDUMP is not set
|
||||
# CONFIG_COMPACTION is not set
|
||||
CONFIG_NET=y
|
||||
|
@ -103,28 +103,8 @@ int_ptr asic_mask_nr_tbl[DEC_MAX_ASIC_INTS][2] = {
|
||||
int cpu_fpu_mask = DEC_CPU_IRQ_MASK(DEC_CPU_INR_FPU);
|
||||
int *fpu_kstat_irq;
|
||||
|
||||
static struct irqaction ioirq = {
|
||||
.handler = no_action,
|
||||
.name = "cascade",
|
||||
.flags = IRQF_NO_THREAD,
|
||||
};
|
||||
static struct irqaction fpuirq = {
|
||||
.handler = no_action,
|
||||
.name = "fpu",
|
||||
.flags = IRQF_NO_THREAD,
|
||||
};
|
||||
|
||||
static struct irqaction busirq = {
|
||||
.name = "bus error",
|
||||
.flags = IRQF_NO_THREAD,
|
||||
};
|
||||
|
||||
static struct irqaction haltirq = {
|
||||
.handler = dec_intr_halt,
|
||||
.name = "halt",
|
||||
.flags = IRQF_NO_THREAD,
|
||||
};
|
||||
|
||||
static irq_handler_t busirq_handler;
|
||||
static unsigned int busirq_flags = IRQF_NO_THREAD;
|
||||
|
||||
/*
|
||||
* Bus error (DBE/IBE exceptions and bus interrupts) handling setup.
|
||||
@ -134,21 +114,21 @@ static void __init dec_be_init(void)
|
||||
switch (mips_machtype) {
|
||||
case MACH_DS23100: /* DS2100/DS3100 Pmin/Pmax */
|
||||
board_be_handler = dec_kn01_be_handler;
|
||||
busirq.handler = dec_kn01_be_interrupt;
|
||||
busirq.flags |= IRQF_SHARED;
|
||||
busirq_handler = dec_kn01_be_interrupt;
|
||||
busirq_flags |= IRQF_SHARED;
|
||||
dec_kn01_be_init();
|
||||
break;
|
||||
case MACH_DS5000_1XX: /* DS5000/1xx 3min */
|
||||
case MACH_DS5000_XX: /* DS5000/xx Maxine */
|
||||
board_be_handler = dec_kn02xa_be_handler;
|
||||
busirq.handler = dec_kn02xa_be_interrupt;
|
||||
busirq_handler = dec_kn02xa_be_interrupt;
|
||||
dec_kn02xa_be_init();
|
||||
break;
|
||||
case MACH_DS5000_200: /* DS5000/200 3max */
|
||||
case MACH_DS5000_2X0: /* DS5000/240 3max+ */
|
||||
case MACH_DS5900: /* DS5900 bigmax */
|
||||
board_be_handler = dec_ecc_be_handler;
|
||||
busirq.handler = dec_ecc_be_interrupt;
|
||||
busirq_handler = dec_ecc_be_interrupt;
|
||||
dec_ecc_be_init();
|
||||
break;
|
||||
}
|
||||
@ -764,20 +744,29 @@ void __init arch_init_irq(void)
|
||||
int irq_fpu;
|
||||
|
||||
irq_fpu = dec_interrupt[DEC_IRQ_FPU];
|
||||
setup_irq(irq_fpu, &fpuirq);
|
||||
if (request_irq(irq_fpu, no_action, IRQF_NO_THREAD, "fpu",
|
||||
NULL))
|
||||
pr_err("Failed to register fpu interrupt\n");
|
||||
desc_fpu = irq_to_desc(irq_fpu);
|
||||
fpu_kstat_irq = this_cpu_ptr(desc_fpu->kstat_irqs);
|
||||
}
|
||||
if (dec_interrupt[DEC_IRQ_CASCADE] >= 0)
|
||||
setup_irq(dec_interrupt[DEC_IRQ_CASCADE], &ioirq);
|
||||
|
||||
if (dec_interrupt[DEC_IRQ_CASCADE] >= 0) {
|
||||
if (request_irq(dec_interrupt[DEC_IRQ_CASCADE], no_action,
|
||||
IRQF_NO_THREAD, "cascade", NULL))
|
||||
pr_err("Failed to register cascade interrupt\n");
|
||||
}
|
||||
/* Register the bus error interrupt. */
|
||||
if (dec_interrupt[DEC_IRQ_BUS] >= 0 && busirq.handler)
|
||||
setup_irq(dec_interrupt[DEC_IRQ_BUS], &busirq);
|
||||
|
||||
if (dec_interrupt[DEC_IRQ_BUS] >= 0 && busirq_handler) {
|
||||
if (request_irq(dec_interrupt[DEC_IRQ_BUS], busirq_handler,
|
||||
busirq_flags, "bus error", busirq_handler))
|
||||
pr_err("Failed to register bus error interrupt\n");
|
||||
}
|
||||
/* Register the HALT interrupt. */
|
||||
if (dec_interrupt[DEC_IRQ_HALT] >= 0)
|
||||
setup_irq(dec_interrupt[DEC_IRQ_HALT], &haltirq);
|
||||
if (dec_interrupt[DEC_IRQ_HALT] >= 0) {
|
||||
if (request_irq(dec_interrupt[DEC_IRQ_HALT], dec_intr_halt,
|
||||
IRQF_NO_THREAD, "halt", NULL))
|
||||
pr_err("Failed to register halt interrupt\n");
|
||||
}
|
||||
}
|
||||
|
||||
asmlinkage unsigned int dec_irq_dispatch(unsigned int irq)
|
||||
|
@ -153,14 +153,6 @@ void emma2rh_gpio_irq_init(void)
|
||||
handle_edge_irq, "edge");
|
||||
}
|
||||
|
||||
static struct irqaction irq_cascade = {
|
||||
.handler = no_action,
|
||||
.flags = IRQF_NO_THREAD,
|
||||
.name = "cascade",
|
||||
.dev_id = NULL,
|
||||
.next = NULL,
|
||||
};
|
||||
|
||||
/*
|
||||
* the first level int-handler will jump here if it is a emma2rh irq
|
||||
*/
|
||||
@ -236,6 +228,7 @@ void emma2rh_irq_dispatch(void)
|
||||
void __init arch_init_irq(void)
|
||||
{
|
||||
u32 reg;
|
||||
int irq;
|
||||
|
||||
/* by default, interrupts are disabled. */
|
||||
emma2rh_out32(EMMA2RH_BHIF_INT_EN_0, 0);
|
||||
@ -272,9 +265,15 @@ void __init arch_init_irq(void)
|
||||
mips_cpu_irq_init();
|
||||
|
||||
/* setup cascade interrupts */
|
||||
setup_irq(EMMA2RH_IRQ_BASE + EMMA2RH_SW_CASCADE, &irq_cascade);
|
||||
setup_irq(EMMA2RH_IRQ_BASE + EMMA2RH_GPIO_CASCADE, &irq_cascade);
|
||||
setup_irq(MIPS_CPU_IRQ_BASE + 2, &irq_cascade);
|
||||
irq = EMMA2RH_IRQ_BASE + EMMA2RH_SW_CASCADE;
|
||||
if (request_irq(irq, no_action, IRQF_NO_THREAD, "cascade", NULL))
|
||||
pr_err("Failed to request irq %d (cascade)\n", irq);
|
||||
irq = EMMA2RH_IRQ_BASE + EMMA2RH_GPIO_CASCADE;
|
||||
if (request_irq(irq, no_action, IRQF_NO_THREAD, "cascade", NULL))
|
||||
pr_err("Failed to request irq %d (cascade)\n", irq);
|
||||
irq = MIPS_CPU_IRQ_BASE + 2;
|
||||
if (request_irq(irq, no_action, IRQF_NO_THREAD, "cascade", NULL))
|
||||
pr_err("Failed to request irq %d (cascade)\n", irq);
|
||||
}
|
||||
|
||||
asmlinkage void plat_irq_dispatch(void)
|
||||
|
@ -16,6 +16,7 @@ int fw_argc;
|
||||
int *_fw_argv;
|
||||
int *_fw_envp;
|
||||
|
||||
#ifndef CONFIG_HAVE_PLAT_FW_INIT_CMDLINE
|
||||
void __init fw_init_cmdline(void)
|
||||
{
|
||||
int i;
|
||||
@ -41,6 +42,7 @@ void __init fw_init_cmdline(void)
|
||||
strlcat(arcs_cmdline, " ", COMMAND_LINE_SIZE);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
char * __init fw_getcmdline(void)
|
||||
{
|
||||
|
@ -5,10 +5,10 @@
|
||||
*/
|
||||
|
||||
#include <linux/clk.h>
|
||||
#include <linux/clk-provider.h>
|
||||
#include <linux/clocksource.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/irqchip.h>
|
||||
#include <linux/of_clk.h>
|
||||
#include <linux/of_fdt.h>
|
||||
|
||||
#include <asm/bootinfo.h>
|
||||
|
20
arch/mips/include/asm/dmi.h
Normal file
20
arch/mips/include/asm/dmi.h
Normal file
@ -0,0 +1,20 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
#ifndef _ASM_DMI_H
|
||||
#define _ASM_DMI_H
|
||||
|
||||
#include <linux/io.h>
|
||||
#include <linux/memblock.h>
|
||||
|
||||
#define dmi_early_remap(x, l) ioremap_cache(x, l)
|
||||
#define dmi_early_unmap(x, l) iounmap(x)
|
||||
#define dmi_remap(x, l) ioremap_cache(x, l)
|
||||
#define dmi_unmap(x) iounmap(x)
|
||||
|
||||
/* MIPS initialize DMI scan before SLAB is ready, so we use memblock here */
|
||||
#define dmi_alloc(l) memblock_alloc_low(l, PAGE_SIZE)
|
||||
|
||||
#if defined(CONFIG_MACH_LOONGSON64)
|
||||
#define SMBIOS_ENTRY_POINT_SCAN_START 0xFFFE000
|
||||
#endif
|
||||
|
||||
#endif /* _ASM_DMI_H */
|
@ -445,6 +445,9 @@ extern unsigned int elf_hwcap;
|
||||
#define ELF_PLATFORM __elf_platform
|
||||
extern const char *__elf_platform;
|
||||
|
||||
#define ELF_BASE_PLATFORM __elf_base_platform
|
||||
extern const char *__elf_base_platform;
|
||||
|
||||
/*
|
||||
* See comments in asm-alpha/elf.h, this is the same thing
|
||||
* on the MIPS.
|
||||
|
@ -36,6 +36,7 @@ extern raw_spinlock_t i8259A_lock;
|
||||
extern void make_8259A_irq(unsigned int irq);
|
||||
|
||||
extern void init_i8259_irqs(void);
|
||||
extern struct irq_domain *__init_i8259_irqs(struct device_node *node);
|
||||
|
||||
/**
|
||||
* i8159_set_poll() - Override the i8259 polling function
|
||||
|
@ -11,6 +11,6 @@
|
||||
|
||||
#define NR_IRQS 256
|
||||
|
||||
#include_next <irq.h>
|
||||
#include <asm/mach-generic/irq.h>
|
||||
|
||||
#endif /* __ASM_AR7_IRQ_H */
|
||||
|
@ -27,6 +27,6 @@
|
||||
#define ATH79_IP3_IRQ_COUNT 3
|
||||
#define ATH79_IP3_IRQ(_x) (ATH79_IP3_IRQ_BASE + (_x))
|
||||
|
||||
#include_next <irq.h>
|
||||
#include <asm/mach-generic/irq.h>
|
||||
|
||||
#endif /* __ASM_MACH_ATH79_IRQ_H */
|
||||
|
@ -1,178 +0,0 @@
|
||||
/*
|
||||
* include/asm-mips/mach-au1x00/au1xxx_ide.h version 01.30.00 Aug. 02 2005
|
||||
*
|
||||
* BRIEF MODULE DESCRIPTION
|
||||
* AMD Alchemy Au1xxx IDE interface routines over the Static Bus
|
||||
*
|
||||
* Copyright (c) 2003-2005 AMD, Personal Connectivity Solutions
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU General Public License as published by the Free Software
|
||||
* Foundation; either version 2 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR
|
||||
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*
|
||||
* Note: for more information, please refer "AMD Alchemy Au1200/Au1550 IDE
|
||||
* Interface and Linux Device Driver" Application Note.
|
||||
*/
|
||||
|
||||
#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
|
||||
#define DMA_WAIT_TIMEOUT 100
|
||||
#define NUM_DESCRIPTORS PRD_ENTRIES
|
||||
#else /* CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA */
|
||||
#define NUM_DESCRIPTORS 2
|
||||
#endif
|
||||
|
||||
#ifndef AU1XXX_ATA_RQSIZE
|
||||
#define AU1XXX_ATA_RQSIZE 128
|
||||
#endif
|
||||
|
||||
/* Disable Burstable-Support for DBDMA */
|
||||
#ifndef CONFIG_BLK_DEV_IDE_AU1XXX_BURSTABLE_ON
|
||||
#define CONFIG_BLK_DEV_IDE_AU1XXX_BURSTABLE_ON 0
|
||||
#endif
|
||||
|
||||
typedef struct {
|
||||
u32 tx_dev_id, rx_dev_id, target_dev_id;
|
||||
u32 tx_chan, rx_chan;
|
||||
void *tx_desc_head, *rx_desc_head;
|
||||
ide_hwif_t *hwif;
|
||||
#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
|
||||
ide_drive_t *drive;
|
||||
struct dbdma_cmd *dma_table_cpu;
|
||||
dma_addr_t dma_table_dma;
|
||||
#endif
|
||||
int irq;
|
||||
u32 regbase;
|
||||
int ddma_id;
|
||||
} _auide_hwif;
|
||||
|
||||
/******************************************************************************/
|
||||
/* PIO Mode timing calculation : */
|
||||
/* */
|
||||
/* Static Bus Spec ATA Spec */
|
||||
/* Tcsoe = t1 */
|
||||
/* Toecs = t9 */
|
||||
/* Twcs = t9 */
|
||||
/* Tcsh = t2i | t2 */
|
||||
/* Tcsoff = t2i | t2 */
|
||||
/* Twp = t2 */
|
||||
/* Tcsw = t1 */
|
||||
/* Tpm = 0 */
|
||||
/* Ta = t1+t2 */
|
||||
/******************************************************************************/
|
||||
|
||||
#define TCSOE_MASK (0x07 << 29)
|
||||
#define TOECS_MASK (0x07 << 26)
|
||||
#define TWCS_MASK (0x07 << 28)
|
||||
#define TCSH_MASK (0x0F << 24)
|
||||
#define TCSOFF_MASK (0x07 << 20)
|
||||
#define TWP_MASK (0x3F << 14)
|
||||
#define TCSW_MASK (0x0F << 10)
|
||||
#define TPM_MASK (0x0F << 6)
|
||||
#define TA_MASK (0x3F << 0)
|
||||
#define TS_MASK (1 << 8)
|
||||
|
||||
/* Timing parameters PIO mode 0 */
|
||||
#define SBC_IDE_PIO0_TCSOE (0x04 << 29)
|
||||
#define SBC_IDE_PIO0_TOECS (0x01 << 26)
|
||||
#define SBC_IDE_PIO0_TWCS (0x02 << 28)
|
||||
#define SBC_IDE_PIO0_TCSH (0x08 << 24)
|
||||
#define SBC_IDE_PIO0_TCSOFF (0x07 << 20)
|
||||
#define SBC_IDE_PIO0_TWP (0x10 << 14)
|
||||
#define SBC_IDE_PIO0_TCSW (0x04 << 10)
|
||||
#define SBC_IDE_PIO0_TPM (0x00 << 6)
|
||||
#define SBC_IDE_PIO0_TA (0x15 << 0)
|
||||
/* Timing parameters PIO mode 1 */
|
||||
#define SBC_IDE_PIO1_TCSOE (0x03 << 29)
|
||||
#define SBC_IDE_PIO1_TOECS (0x01 << 26)
|
||||
#define SBC_IDE_PIO1_TWCS (0x01 << 28)
|
||||
#define SBC_IDE_PIO1_TCSH (0x06 << 24)
|
||||
#define SBC_IDE_PIO1_TCSOFF (0x06 << 20)
|
||||
#define SBC_IDE_PIO1_TWP (0x08 << 14)
|
||||
#define SBC_IDE_PIO1_TCSW (0x03 << 10)
|
||||
#define SBC_IDE_PIO1_TPM (0x00 << 6)
|
||||
#define SBC_IDE_PIO1_TA (0x0B << 0)
|
||||
/* Timing parameters PIO mode 2 */
|
||||
#define SBC_IDE_PIO2_TCSOE (0x05 << 29)
|
||||
#define SBC_IDE_PIO2_TOECS (0x01 << 26)
|
||||
#define SBC_IDE_PIO2_TWCS (0x01 << 28)
|
||||
#define SBC_IDE_PIO2_TCSH (0x07 << 24)
|
||||
#define SBC_IDE_PIO2_TCSOFF (0x07 << 20)
|
||||
#define SBC_IDE_PIO2_TWP (0x1F << 14)
|
||||
#define SBC_IDE_PIO2_TCSW (0x05 << 10)
|
||||
#define SBC_IDE_PIO2_TPM (0x00 << 6)
|
||||
#define SBC_IDE_PIO2_TA (0x22 << 0)
|
||||
/* Timing parameters PIO mode 3 */
|
||||
#define SBC_IDE_PIO3_TCSOE (0x05 << 29)
|
||||
#define SBC_IDE_PIO3_TOECS (0x01 << 26)
|
||||
#define SBC_IDE_PIO3_TWCS (0x01 << 28)
|
||||
#define SBC_IDE_PIO3_TCSH (0x0D << 24)
|
||||
#define SBC_IDE_PIO3_TCSOFF (0x0D << 20)
|
||||
#define SBC_IDE_PIO3_TWP (0x15 << 14)
|
||||
#define SBC_IDE_PIO3_TCSW (0x05 << 10)
|
||||
#define SBC_IDE_PIO3_TPM (0x00 << 6)
|
||||
#define SBC_IDE_PIO3_TA (0x1A << 0)
|
||||
/* Timing parameters PIO mode 4 */
|
||||
#define SBC_IDE_PIO4_TCSOE (0x04 << 29)
|
||||
#define SBC_IDE_PIO4_TOECS (0x01 << 26)
|
||||
#define SBC_IDE_PIO4_TWCS (0x01 << 28)
|
||||
#define SBC_IDE_PIO4_TCSH (0x04 << 24)
|
||||
#define SBC_IDE_PIO4_TCSOFF (0x04 << 20)
|
||||
#define SBC_IDE_PIO4_TWP (0x0D << 14)
|
||||
#define SBC_IDE_PIO4_TCSW (0x03 << 10)
|
||||
#define SBC_IDE_PIO4_TPM (0x00 << 6)
|
||||
#define SBC_IDE_PIO4_TA (0x12 << 0)
|
||||
/* Timing parameters MDMA mode 0 */
|
||||
#define SBC_IDE_MDMA0_TCSOE (0x03 << 29)
|
||||
#define SBC_IDE_MDMA0_TOECS (0x01 << 26)
|
||||
#define SBC_IDE_MDMA0_TWCS (0x01 << 28)
|
||||
#define SBC_IDE_MDMA0_TCSH (0x07 << 24)
|
||||
#define SBC_IDE_MDMA0_TCSOFF (0x07 << 20)
|
||||
#define SBC_IDE_MDMA0_TWP (0x0C << 14)
|
||||
#define SBC_IDE_MDMA0_TCSW (0x03 << 10)
|
||||
#define SBC_IDE_MDMA0_TPM (0x00 << 6)
|
||||
#define SBC_IDE_MDMA0_TA (0x0F << 0)
|
||||
/* Timing parameters MDMA mode 1 */
|
||||
#define SBC_IDE_MDMA1_TCSOE (0x05 << 29)
|
||||
#define SBC_IDE_MDMA1_TOECS (0x01 << 26)
|
||||
#define SBC_IDE_MDMA1_TWCS (0x01 << 28)
|
||||
#define SBC_IDE_MDMA1_TCSH (0x05 << 24)
|
||||
#define SBC_IDE_MDMA1_TCSOFF (0x05 << 20)
|
||||
#define SBC_IDE_MDMA1_TWP (0x0F << 14)
|
||||
#define SBC_IDE_MDMA1_TCSW (0x05 << 10)
|
||||
#define SBC_IDE_MDMA1_TPM (0x00 << 6)
|
||||
#define SBC_IDE_MDMA1_TA (0x15 << 0)
|
||||
/* Timing parameters MDMA mode 2 */
|
||||
#define SBC_IDE_MDMA2_TCSOE (0x04 << 29)
|
||||
#define SBC_IDE_MDMA2_TOECS (0x01 << 26)
|
||||
#define SBC_IDE_MDMA2_TWCS (0x01 << 28)
|
||||
#define SBC_IDE_MDMA2_TCSH (0x04 << 24)
|
||||
#define SBC_IDE_MDMA2_TCSOFF (0x04 << 20)
|
||||
#define SBC_IDE_MDMA2_TWP (0x0D << 14)
|
||||
#define SBC_IDE_MDMA2_TCSW (0x04 << 10)
|
||||
#define SBC_IDE_MDMA2_TPM (0x00 << 6)
|
||||
#define SBC_IDE_MDMA2_TA (0x12 << 0)
|
||||
|
||||
#define SBC_IDE_TIMING(mode) \
|
||||
(SBC_IDE_##mode##_TWCS | \
|
||||
SBC_IDE_##mode##_TCSH | \
|
||||
SBC_IDE_##mode##_TCSOFF | \
|
||||
SBC_IDE_##mode##_TWP | \
|
||||
SBC_IDE_##mode##_TCSW | \
|
||||
SBC_IDE_##mode##_TPM | \
|
||||
SBC_IDE_##mode##_TA)
|
@ -10,6 +10,6 @@
|
||||
|
||||
#define NR_IRQS 256
|
||||
|
||||
#include_next <irq.h>
|
||||
#include <asm/mach-generic/irq.h>
|
||||
|
||||
#endif /* __ASM_MACH_EMMA2RH_IRQ_H */
|
||||
|
@ -12,7 +12,7 @@
|
||||
|
||||
#define NR_IRQS 256
|
||||
|
||||
#include_next <irq.h>
|
||||
#include <asm/mach-generic/irq.h>
|
||||
|
||||
#define IP27_HUB_PEND0_IRQ (MIPS_CPU_IRQ_BASE + 2)
|
||||
#define IP27_HUB_PEND1_IRQ (MIPS_CPU_IRQ_BASE + 3)
|
||||
|
@ -76,7 +76,7 @@ extern void __init ip30_install_ipi(void);
|
||||
*/
|
||||
#define IP30_POWER_IRQ HEART_L2_INT_POWER_BTN
|
||||
|
||||
#include_next <irq.h>
|
||||
#include <asm/mach-generic/irq.h>
|
||||
|
||||
#define IP30_HEART_L0_IRQ (MIPS_CPU_IRQ_BASE + 2)
|
||||
#define IP30_HEART_L1_IRQ (MIPS_CPU_IRQ_BASE + 3)
|
||||
|
@ -11,6 +11,6 @@
|
||||
|
||||
#define NR_IRQS 328
|
||||
|
||||
#include_next <irq.h>
|
||||
#include <asm/mach-generic/irq.h>
|
||||
|
||||
#endif
|
||||
|
@ -11,6 +11,6 @@
|
||||
|
||||
#define NR_IRQS 256
|
||||
|
||||
#include_next <irq.h>
|
||||
#include <asm/mach-generic/irq.h>
|
||||
|
||||
#endif
|
||||
|
@ -9,6 +9,6 @@
|
||||
|
||||
#define NR_IRQS 24
|
||||
|
||||
#include_next <irq.h>
|
||||
#include <asm/mach-generic/irq.h>
|
||||
|
||||
#endif /* _ASM_MACH_LASAT_IRQ_H */
|
||||
|
@ -2,6 +2,8 @@
|
||||
#ifndef __ASM_MACH_LOONGSON64_BOOT_PARAM_H_
|
||||
#define __ASM_MACH_LOONGSON64_BOOT_PARAM_H_
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
#define SYSTEM_RAM_LOW 1
|
||||
#define SYSTEM_RAM_HIGH 2
|
||||
#define SYSTEM_RAM_RESERVED 3
|
||||
|
13
arch/mips/include/asm/mach-loongson64/builtin_dtbs.h
Normal file
13
arch/mips/include/asm/mach-loongson64/builtin_dtbs.h
Normal file
@ -0,0 +1,13 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
/*
|
||||
* Copyright (C) 2019 Jiaxun Yang <jiaxun.yang@flygoat.com>
|
||||
*
|
||||
* Built-in Generic dtbs for MACH_LOONGSON64
|
||||
*/
|
||||
|
||||
#ifndef __ASM_MACH_LOONGSON64_BUILTIN_DTBS_H_
|
||||
#define __ASM_MACH_LOONGSON64_BUILTIN_DTBS_H_
|
||||
|
||||
extern u32 __dtb_loongson3_4core_rs780e_begin[];
|
||||
extern u32 __dtb_loongson3_8core_rs780e_begin[];
|
||||
#endif
|
@ -7,34 +7,6 @@
|
||||
/* cpu core interrupt numbers */
|
||||
#define MIPS_CPU_IRQ_BASE 56
|
||||
|
||||
#define LOONGSON_UART_IRQ (MIPS_CPU_IRQ_BASE + 2) /* UART */
|
||||
#define LOONGSON_BRIDGE_IRQ (MIPS_CPU_IRQ_BASE + 3) /* CASCADE */
|
||||
#define LOONGSON_TIMER_IRQ (MIPS_CPU_IRQ_BASE + 7) /* CPU Timer */
|
||||
#include <asm/mach-generic/irq.h>
|
||||
|
||||
#define LOONGSON_HT1_CFG_BASE loongson_sysconf.ht_control_base
|
||||
#define LOONGSON_HT1_INT_VECTOR_BASE (LOONGSON_HT1_CFG_BASE + 0x80)
|
||||
#define LOONGSON_HT1_INT_EN_BASE (LOONGSON_HT1_CFG_BASE + 0xa0)
|
||||
#define LOONGSON_HT1_INT_VECTOR(n) \
|
||||
LOONGSON3_REG32(LOONGSON_HT1_INT_VECTOR_BASE, 4 * (n))
|
||||
#define LOONGSON_HT1_INTN_EN(n) \
|
||||
LOONGSON3_REG32(LOONGSON_HT1_INT_EN_BASE, 4 * (n))
|
||||
|
||||
#define LOONGSON_INT_ROUTER_OFFSET 0x1400
|
||||
#define LOONGSON_INT_ROUTER_INTEN \
|
||||
LOONGSON3_REG32(LOONGSON3_REG_BASE, LOONGSON_INT_ROUTER_OFFSET + 0x24)
|
||||
#define LOONGSON_INT_ROUTER_INTENSET \
|
||||
LOONGSON3_REG32(LOONGSON3_REG_BASE, LOONGSON_INT_ROUTER_OFFSET + 0x28)
|
||||
#define LOONGSON_INT_ROUTER_INTENCLR \
|
||||
LOONGSON3_REG32(LOONGSON3_REG_BASE, LOONGSON_INT_ROUTER_OFFSET + 0x2c)
|
||||
#define LOONGSON_INT_ROUTER_ENTRY(n) \
|
||||
LOONGSON3_REG8(LOONGSON3_REG_BASE, LOONGSON_INT_ROUTER_OFFSET + n)
|
||||
#define LOONGSON_INT_ROUTER_LPC LOONGSON_INT_ROUTER_ENTRY(0x0a)
|
||||
#define LOONGSON_INT_ROUTER_HT1(n) LOONGSON_INT_ROUTER_ENTRY(n + 0x18)
|
||||
|
||||
#define LOONGSON_INT_COREx_INTy(x, y) (1<<(x) | 1<<(y+4)) /* route to int y of core x */
|
||||
|
||||
extern void fixup_irqs(void);
|
||||
extern void loongson3_ipi_interrupt(struct pt_regs *regs);
|
||||
|
||||
#include_next <irq.h>
|
||||
#endif /* __ASM_MACH_LOONGSON64_IRQ_H_ */
|
||||
|
@ -25,6 +25,7 @@ extern const struct plat_smp_ops loongson3_smp_ops;
|
||||
/* loongson-specific command line, env and memory initialization */
|
||||
extern void __init prom_init_memory(void);
|
||||
extern void __init prom_init_env(void);
|
||||
extern void *loongson_fdt_blob;
|
||||
|
||||
/* irq operation functions */
|
||||
extern void mach_irq_dispatch(unsigned int pending);
|
||||
|
@ -5,6 +5,6 @@
|
||||
|
||||
#define NR_IRQS 256
|
||||
|
||||
#include_next <irq.h>
|
||||
#include <asm/mach-generic/irq.h>
|
||||
|
||||
#endif /* __ASM_MACH_MIPS_IRQ_H */
|
||||
|
@ -9,6 +9,6 @@
|
||||
#define NR_IRQS 256
|
||||
#define MIPS_CPU_IRQ_BASE 0
|
||||
|
||||
#include_next <irq.h>
|
||||
#include <asm/mach-generic/irq.h>
|
||||
|
||||
#endif /* __ASM_MACH_PIC32_IRQ_H */
|
||||
|
@ -10,6 +10,6 @@
|
||||
|
||||
#define NR_IRQS 256
|
||||
|
||||
#include_next <irq.h>
|
||||
#include <asm/mach-generic/irq.h>
|
||||
|
||||
#endif /* __ASM_MACH_PISTACHIO_IRQ_H */
|
||||
|
@ -5,6 +5,6 @@
|
||||
#define GIC_NUM_INTRS 64
|
||||
#define NR_IRQS 256
|
||||
|
||||
#include_next <irq.h>
|
||||
#include <asm/mach-generic/irq.h>
|
||||
|
||||
#endif
|
||||
|
@ -16,6 +16,6 @@
|
||||
#define mc146818_decode_year(year) ((year) + 1980)
|
||||
#endif
|
||||
|
||||
#include_next <mc146818rtc.h>
|
||||
#include <asm/mach-generic/mc146818rtc.h>
|
||||
|
||||
#endif /* __ASM_MACH_RM_MC146818RTC_H */
|
||||
|
@ -4,6 +4,6 @@
|
||||
|
||||
#include <asm/vr41xx/irq.h> /* for MIPS_CPU_IRQ_BASE */
|
||||
|
||||
#include_next <irq.h>
|
||||
#include <asm/mach-generic/irq.h>
|
||||
|
||||
#endif /* __ASM_MACH_VR41XX_IRQ_H */
|
||||
|
@ -9,6 +9,6 @@
|
||||
|
||||
#define NR_IRQS 32
|
||||
|
||||
#include_next <irq.h>
|
||||
#include <asm/mach-generic/irq.h>
|
||||
|
||||
#endif /* __MIPS_ASM_MACH_XILFPGA_IRQ_H__ */
|
||||
|
@ -254,13 +254,13 @@ struct thread_struct {
|
||||
#ifdef CONFIG_MIPS_FP_SUPPORT
|
||||
/* Saved fpu/fpu emulator stuff. */
|
||||
struct mips_fpu_struct fpu FPU_ALIGN;
|
||||
#endif
|
||||
/* Assigned branch delay slot 'emulation' frame */
|
||||
atomic_t bd_emu_frame;
|
||||
/* PC of the branch from a branch delay slot 'emulation' */
|
||||
unsigned long bd_emu_branch_pc;
|
||||
/* PC to continue from following a branch delay slot 'emulation' */
|
||||
unsigned long bd_emu_cont_pc;
|
||||
#endif
|
||||
#ifdef CONFIG_MIPS_MT_FPAFF
|
||||
/* Emulated instruction count */
|
||||
unsigned long emulated_fp;
|
||||
@ -303,7 +303,11 @@ struct thread_struct {
|
||||
.fpr = {{{0,},},}, \
|
||||
.fcr31 = 0, \
|
||||
.msacsr = 0, \
|
||||
},
|
||||
}, \
|
||||
/* Delay slot emulation */ \
|
||||
.bd_emu_frame = ATOMIC_INIT(BD_EMUFRAME_NONE), \
|
||||
.bd_emu_branch_pc = 0, \
|
||||
.bd_emu_cont_pc = 0,
|
||||
#else
|
||||
# define FPU_INIT
|
||||
#endif
|
||||
@ -335,10 +339,6 @@ struct thread_struct {
|
||||
* FPU affinity state (null if not FPAFF) \
|
||||
*/ \
|
||||
FPAFF_INIT \
|
||||
/* Delay slot emulation */ \
|
||||
.bd_emu_frame = ATOMIC_INIT(BD_EMUFRAME_NONE), \
|
||||
.bd_emu_branch_pc = 0, \
|
||||
.bd_emu_cont_pc = 0, \
|
||||
/* \
|
||||
* Saved DSP stuff \
|
||||
*/ \
|
||||
|
@ -11,6 +11,8 @@
|
||||
#ifndef __ASM_SNI_H
|
||||
#define __ASM_SNI_H
|
||||
|
||||
#include <linux/irqreturn.h>
|
||||
|
||||
extern unsigned int sni_brd_type;
|
||||
|
||||
#define SNI_BRD_10 2
|
||||
@ -239,6 +241,6 @@ static inline int sni_eisa_root_init(void)
|
||||
|
||||
/* common irq stuff */
|
||||
extern void (*sni_hwint)(void);
|
||||
extern struct irqaction sni_isa_irq;
|
||||
extern irqreturn_t sni_isa_irq_handler(int dummy, void *p);
|
||||
|
||||
#endif /* __ASM_SNI_H */
|
||||
|
@ -125,24 +125,18 @@ static irqreturn_t r4030_timer_interrupt(int irq, void *dev_id)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static struct irqaction r4030_timer_irqaction = {
|
||||
.handler = r4030_timer_interrupt,
|
||||
.flags = IRQF_TIMER,
|
||||
.name = "R4030 timer",
|
||||
};
|
||||
|
||||
void __init plat_time_init(void)
|
||||
{
|
||||
struct clock_event_device *cd = &r4030_clockevent;
|
||||
struct irqaction *action = &r4030_timer_irqaction;
|
||||
unsigned int cpu = smp_processor_id();
|
||||
|
||||
BUG_ON(HZ != 100);
|
||||
|
||||
cd->cpumask = cpumask_of(cpu);
|
||||
clockevents_register_device(cd);
|
||||
action->dev_id = cd;
|
||||
setup_irq(JAZZ_TIMER_IRQ, action);
|
||||
if (request_irq(JAZZ_TIMER_IRQ, r4030_timer_interrupt, IRQF_TIMER,
|
||||
"R4030 timer", cd))
|
||||
pr_err("Failed to register R4030 timer interrupt\n");
|
||||
|
||||
/*
|
||||
* Set clock to 100Hz.
|
||||
|
@ -4,8 +4,8 @@
|
||||
* JZ4740 platform time support
|
||||
*/
|
||||
|
||||
#include <linux/clk-provider.h>
|
||||
#include <linux/clocksource.h>
|
||||
#include <linux/of_clk.h>
|
||||
|
||||
#include <asm/mach-jz4740/timer.h>
|
||||
|
||||
|
@ -91,16 +91,15 @@ static irqreturn_t sibyte_counter_handler(int irq, void *dev_id)
|
||||
}
|
||||
|
||||
static DEFINE_PER_CPU(struct clock_event_device, sibyte_hpt_clockevent);
|
||||
static DEFINE_PER_CPU(struct irqaction, sibyte_hpt_irqaction);
|
||||
static DEFINE_PER_CPU(char [18], sibyte_hpt_name);
|
||||
|
||||
void sb1480_clockevent_init(void)
|
||||
{
|
||||
unsigned int cpu = smp_processor_id();
|
||||
unsigned int irq = K_BCM1480_INT_TIMER_0 + cpu;
|
||||
struct irqaction *action = &per_cpu(sibyte_hpt_irqaction, cpu);
|
||||
struct clock_event_device *cd = &per_cpu(sibyte_hpt_clockevent, cpu);
|
||||
unsigned char *name = per_cpu(sibyte_hpt_name, cpu);
|
||||
unsigned long flags = IRQF_PERCPU | IRQF_TIMER;
|
||||
|
||||
BUG_ON(cpu > 3); /* Only have 4 general purpose timers */
|
||||
|
||||
@ -133,11 +132,7 @@ void sb1480_clockevent_init(void)
|
||||
|
||||
bcm1480_unmask_irq(cpu, irq);
|
||||
|
||||
action->handler = sibyte_counter_handler;
|
||||
action->flags = IRQF_PERCPU | IRQF_TIMER;
|
||||
action->name = name;
|
||||
action->dev_id = cd;
|
||||
|
||||
irq_set_affinity(irq, cpumask_of(cpu));
|
||||
setup_irq(irq, action);
|
||||
if (request_irq(irq, sibyte_counter_handler, flags, name, cd))
|
||||
pr_err("Failed to request irq %d (%s)\n", irq, name);
|
||||
}
|
||||
|
@ -100,14 +100,9 @@ static irqreturn_t ds1287_interrupt(int irq, void *dev_id)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static struct irqaction ds1287_irqaction = {
|
||||
.handler = ds1287_interrupt,
|
||||
.flags = IRQF_PERCPU | IRQF_TIMER,
|
||||
.name = "ds1287",
|
||||
};
|
||||
|
||||
int __init ds1287_clockevent_init(int irq)
|
||||
{
|
||||
unsigned long flags = IRQF_PERCPU | IRQF_TIMER;
|
||||
struct clock_event_device *cd;
|
||||
|
||||
cd = &ds1287_clockevent;
|
||||
@ -122,5 +117,5 @@ int __init ds1287_clockevent_init(int irq)
|
||||
|
||||
clockevents_register_device(&ds1287_clockevent);
|
||||
|
||||
return setup_irq(irq, &ds1287_irqaction);
|
||||
return request_irq(irq, ds1287_interrupt, flags, "ds1287", NULL);
|
||||
}
|
||||
|
@ -120,12 +120,6 @@ static irqreturn_t gt641xx_timer0_interrupt(int irq, void *dev_id)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static struct irqaction gt641xx_timer0_irqaction = {
|
||||
.handler = gt641xx_timer0_interrupt,
|
||||
.flags = IRQF_PERCPU | IRQF_TIMER,
|
||||
.name = "gt641xx_timer0",
|
||||
};
|
||||
|
||||
static int __init gt641xx_timer0_clockevent_init(void)
|
||||
{
|
||||
struct clock_event_device *cd;
|
||||
@ -146,6 +140,7 @@ static int __init gt641xx_timer0_clockevent_init(void)
|
||||
|
||||
clockevents_register_device(>641xx_timer0_clockevent);
|
||||
|
||||
return setup_irq(GT641XX_TIMER0_IRQ, >641xx_timer0_irqaction);
|
||||
return request_irq(GT641XX_TIMER0_IRQ, gt641xx_timer0_interrupt,
|
||||
IRQF_PERCPU | IRQF_TIMER, "gt641xx_timer0", NULL);
|
||||
}
|
||||
arch_initcall(gt641xx_timer0_clockevent_init);
|
||||
|
@ -252,6 +252,7 @@ unsigned int __weak get_c0_compare_int(void)
|
||||
|
||||
int r4k_clockevent_init(void)
|
||||
{
|
||||
unsigned long flags = IRQF_PERCPU | IRQF_TIMER | IRQF_SHARED;
|
||||
unsigned int cpu = smp_processor_id();
|
||||
struct clock_event_device *cd;
|
||||
unsigned int irq, min_delta;
|
||||
@ -291,7 +292,9 @@ int r4k_clockevent_init(void)
|
||||
|
||||
cp0_timer_irq_installed = 1;
|
||||
|
||||
setup_irq(irq, &c0_compare_irqaction);
|
||||
if (request_irq(irq, c0_compare_interrupt, flags, "timer",
|
||||
c0_compare_interrupt))
|
||||
pr_err("Failed to request irq %d (timer)\n", irq);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -90,16 +90,15 @@ static irqreturn_t sibyte_counter_handler(int irq, void *dev_id)
|
||||
}
|
||||
|
||||
static DEFINE_PER_CPU(struct clock_event_device, sibyte_hpt_clockevent);
|
||||
static DEFINE_PER_CPU(struct irqaction, sibyte_hpt_irqaction);
|
||||
static DEFINE_PER_CPU(char [18], sibyte_hpt_name);
|
||||
|
||||
void sb1250_clockevent_init(void)
|
||||
{
|
||||
unsigned int cpu = smp_processor_id();
|
||||
unsigned int irq = K_INT_TIMER_0 + cpu;
|
||||
struct irqaction *action = &per_cpu(sibyte_hpt_irqaction, cpu);
|
||||
struct clock_event_device *cd = &per_cpu(sibyte_hpt_clockevent, cpu);
|
||||
unsigned char *name = per_cpu(sibyte_hpt_name, cpu);
|
||||
unsigned long flags = IRQF_PERCPU | IRQF_TIMER;
|
||||
|
||||
/* Only have 4 general purpose timers, and we use last one as hpt */
|
||||
BUG_ON(cpu > 2);
|
||||
@ -133,11 +132,7 @@ void sb1250_clockevent_init(void)
|
||||
|
||||
sb1250_unmask_irq(cpu, irq);
|
||||
|
||||
action->handler = sibyte_counter_handler;
|
||||
action->flags = IRQF_PERCPU | IRQF_TIMER;
|
||||
action->name = name;
|
||||
action->dev_id = cd;
|
||||
|
||||
irq_set_affinity(irq, cpumask_of(cpu));
|
||||
setup_irq(irq, action);
|
||||
if (request_irq(irq, sibyte_counter_handler, flags, name, cd))
|
||||
pr_err("Failed to request irq %d (%s)\n", irq, name);
|
||||
}
|
||||
|
@ -174,13 +174,6 @@ static irqreturn_t txx9tmr_interrupt(int irq, void *dev_id)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static struct irqaction txx9tmr_irq = {
|
||||
.handler = txx9tmr_interrupt,
|
||||
.flags = IRQF_PERCPU | IRQF_TIMER,
|
||||
.name = "txx9tmr",
|
||||
.dev_id = &txx9_clock_event_device,
|
||||
};
|
||||
|
||||
void __init txx9_clockevent_init(unsigned long baseaddr, int irq,
|
||||
unsigned int imbusclk)
|
||||
{
|
||||
@ -202,7 +195,9 @@ void __init txx9_clockevent_init(unsigned long baseaddr, int irq,
|
||||
cd->irq = irq;
|
||||
cd->cpumask = cpumask_of(0),
|
||||
clockevents_register_device(cd);
|
||||
setup_irq(irq, &txx9tmr_irq);
|
||||
if (request_irq(irq, txx9tmr_interrupt, IRQF_PERCPU | IRQF_TIMER,
|
||||
"txx9tmr", &txx9_clock_event_device))
|
||||
pr_err("Failed to request irq %d (txx9tmr)\n", irq);
|
||||
printk(KERN_INFO "TXx9: clockevent device at 0x%lx, irq %d\n",
|
||||
baseaddr, irq);
|
||||
}
|
||||
|
@ -513,6 +513,13 @@ static inline void set_elf_platform(int cpu, const char *plat)
|
||||
__elf_platform = plat;
|
||||
}
|
||||
|
||||
static inline void set_elf_base_platform(const char *plat)
|
||||
{
|
||||
if (__elf_base_platform == NULL) {
|
||||
__elf_base_platform = plat;
|
||||
}
|
||||
}
|
||||
|
||||
static inline void cpu_probe_vmbits(struct cpuinfo_mips *c)
|
||||
{
|
||||
#ifdef __NEED_VMBITS_PROBE
|
||||
@ -527,36 +534,46 @@ static void set_isa(struct cpuinfo_mips *c, unsigned int isa)
|
||||
switch (isa) {
|
||||
case MIPS_CPU_ISA_M64R2:
|
||||
c->isa_level |= MIPS_CPU_ISA_M32R2 | MIPS_CPU_ISA_M64R2;
|
||||
set_elf_base_platform("mips64r2");
|
||||
/* fall through */
|
||||
case MIPS_CPU_ISA_M64R1:
|
||||
c->isa_level |= MIPS_CPU_ISA_M32R1 | MIPS_CPU_ISA_M64R1;
|
||||
set_elf_base_platform("mips64");
|
||||
/* fall through */
|
||||
case MIPS_CPU_ISA_V:
|
||||
c->isa_level |= MIPS_CPU_ISA_V;
|
||||
set_elf_base_platform("mips5");
|
||||
/* fall through */
|
||||
case MIPS_CPU_ISA_IV:
|
||||
c->isa_level |= MIPS_CPU_ISA_IV;
|
||||
set_elf_base_platform("mips4");
|
||||
/* fall through */
|
||||
case MIPS_CPU_ISA_III:
|
||||
c->isa_level |= MIPS_CPU_ISA_II | MIPS_CPU_ISA_III;
|
||||
set_elf_base_platform("mips3");
|
||||
break;
|
||||
|
||||
/* R6 incompatible with everything else */
|
||||
case MIPS_CPU_ISA_M64R6:
|
||||
c->isa_level |= MIPS_CPU_ISA_M32R6 | MIPS_CPU_ISA_M64R6;
|
||||
set_elf_base_platform("mips64r6");
|
||||
/* fall through */
|
||||
case MIPS_CPU_ISA_M32R6:
|
||||
c->isa_level |= MIPS_CPU_ISA_M32R6;
|
||||
set_elf_base_platform("mips32r6");
|
||||
/* Break here so we don't add incompatible ISAs */
|
||||
break;
|
||||
case MIPS_CPU_ISA_M32R2:
|
||||
c->isa_level |= MIPS_CPU_ISA_M32R2;
|
||||
set_elf_base_platform("mips32r2");
|
||||
/* fall through */
|
||||
case MIPS_CPU_ISA_M32R1:
|
||||
c->isa_level |= MIPS_CPU_ISA_M32R1;
|
||||
set_elf_base_platform("mips32");
|
||||
/* fall through */
|
||||
case MIPS_CPU_ISA_II:
|
||||
c->isa_level |= MIPS_CPU_ISA_II;
|
||||
set_elf_base_platform("mips2");
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -2113,6 +2130,7 @@ EXPORT_SYMBOL(__ua_limit);
|
||||
|
||||
const char *__cpu_name[NR_CPUS];
|
||||
const char *__elf_platform;
|
||||
const char *__elf_base_platform;
|
||||
|
||||
void cpu_probe(void)
|
||||
{
|
||||
|
@ -18,16 +18,13 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static struct irqaction irq0 = {
|
||||
.handler = timer_interrupt,
|
||||
.flags = IRQF_NOBALANCING | IRQF_TIMER,
|
||||
.name = "timer"
|
||||
};
|
||||
|
||||
void __init setup_pit_timer(void)
|
||||
{
|
||||
unsigned long flags = IRQF_NOBALANCING | IRQF_TIMER;
|
||||
|
||||
clockevent_i8253_init(true);
|
||||
setup_irq(0, &irq0);
|
||||
if (request_irq(0, timer_interrupt, flags, "timer", NULL))
|
||||
pr_err("Failed to request irq 0 (timer)\n");
|
||||
}
|
||||
|
||||
static int __init init_pit_clocksource(void)
|
||||
|
@ -75,7 +75,9 @@ void start_thread(struct pt_regs * regs, unsigned long pc, unsigned long sp)
|
||||
lose_fpu(0);
|
||||
clear_thread_flag(TIF_MSA_CTX_LIVE);
|
||||
clear_used_math();
|
||||
#ifdef CONFIG_MIPS_FP_SUPPORT
|
||||
atomic_set(¤t->thread.bd_emu_frame, BD_EMUFRAME_NONE);
|
||||
#endif
|
||||
init_dsp();
|
||||
regs->cp0_epc = pc;
|
||||
regs->regs[29] = sp;
|
||||
@ -176,7 +178,9 @@ int copy_thread_tls(unsigned long clone_flags, unsigned long usp,
|
||||
clear_tsk_thread_flag(p, TIF_FPUBOUND);
|
||||
#endif /* CONFIG_MIPS_MT_FPAFF */
|
||||
|
||||
#ifdef CONFIG_MIPS_FP_SUPPORT
|
||||
atomic_set(&p->thread.bd_emu_frame, BD_EMUFRAME_NONE);
|
||||
#endif
|
||||
|
||||
if (clone_flags & CLONE_SETTLS)
|
||||
ti->tp_value = tls;
|
||||
@ -650,8 +654,10 @@ unsigned long mips_stack_top(void)
|
||||
{
|
||||
unsigned long top = TASK_SIZE & PAGE_MASK;
|
||||
|
||||
/* One page for branch delay slot "emulation" */
|
||||
top -= PAGE_SIZE;
|
||||
if (IS_ENABLED(CONFIG_MIPS_FP_SUPPORT)) {
|
||||
/* One page for branch delay slot "emulation" */
|
||||
top -= PAGE_SIZE;
|
||||
}
|
||||
|
||||
/* Space for the VDSO, data page & GIC user page */
|
||||
top -= PAGE_ALIGN(current->thread.abi->vdso->size);
|
||||
|
@ -51,11 +51,6 @@ static irqreturn_t rtlx_interrupt(int irq, void *dev_id)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static struct irqaction rtlx_irq = {
|
||||
.handler = rtlx_interrupt,
|
||||
.name = "RTLX",
|
||||
};
|
||||
|
||||
static int rtlx_irq_num = MIPS_CPU_IRQ_BASE + MIPS_CPU_RTLX_IRQ;
|
||||
|
||||
void _interrupt_sp(void)
|
||||
@ -124,8 +119,7 @@ int __init rtlx_module_init(void)
|
||||
goto out_class;
|
||||
}
|
||||
|
||||
rtlx_irq.dev_id = rtlx;
|
||||
err = setup_irq(rtlx_irq_num, &rtlx_irq);
|
||||
err = request_irq(rtlx_irq_num, rtlx_interrupt, 0, "RTLX", rtlx);
|
||||
if (err)
|
||||
goto out_class;
|
||||
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include <linux/decompress/generic.h>
|
||||
#include <linux/of_fdt.h>
|
||||
#include <linux/of_reserved_mem.h>
|
||||
#include <linux/dmi.h>
|
||||
|
||||
#include <asm/addrspace.h>
|
||||
#include <asm/bootinfo.h>
|
||||
@ -799,6 +800,7 @@ void __init setup_arch(char **cmdline_p)
|
||||
#endif
|
||||
|
||||
arch_mem_init(cmdline_p);
|
||||
dmi_setup();
|
||||
|
||||
resource_init();
|
||||
plat_smp_setup();
|
||||
|
@ -207,25 +207,13 @@ static irqreturn_t ipi_call_interrupt(int irq, void *dev_id)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static struct irqaction irq_resched = {
|
||||
.handler = ipi_resched_interrupt,
|
||||
.flags = IRQF_PERCPU,
|
||||
.name = "IPI resched"
|
||||
};
|
||||
|
||||
static struct irqaction irq_call = {
|
||||
.handler = ipi_call_interrupt,
|
||||
.flags = IRQF_PERCPU,
|
||||
.name = "IPI call"
|
||||
};
|
||||
|
||||
static void smp_ipi_init_one(unsigned int virq,
|
||||
struct irqaction *action)
|
||||
static void smp_ipi_init_one(unsigned int virq, const char *name,
|
||||
irq_handler_t handler)
|
||||
{
|
||||
int ret;
|
||||
|
||||
irq_set_handler(virq, handle_percpu_irq);
|
||||
ret = setup_irq(virq, action);
|
||||
ret = request_irq(virq, handler, IRQF_PERCPU, name, NULL);
|
||||
BUG_ON(ret);
|
||||
}
|
||||
|
||||
@ -278,12 +266,15 @@ int mips_smp_ipi_allocate(const struct cpumask *mask)
|
||||
int cpu;
|
||||
|
||||
for_each_cpu(cpu, mask) {
|
||||
smp_ipi_init_one(call_virq + cpu, &irq_call);
|
||||
smp_ipi_init_one(sched_virq + cpu, &irq_resched);
|
||||
smp_ipi_init_one(call_virq + cpu, "IPI call",
|
||||
ipi_call_interrupt);
|
||||
smp_ipi_init_one(sched_virq + cpu, "IPI resched",
|
||||
ipi_resched_interrupt);
|
||||
}
|
||||
} else {
|
||||
smp_ipi_init_one(call_virq, &irq_call);
|
||||
smp_ipi_init_one(sched_virq, &irq_resched);
|
||||
smp_ipi_init_one(call_virq, "IPI call", ipi_call_interrupt);
|
||||
smp_ipi_init_one(sched_virq, "IPI resched",
|
||||
ipi_resched_interrupt);
|
||||
}
|
||||
|
||||
return 0;
|
||||
@ -311,8 +302,8 @@ int mips_smp_ipi_free(const struct cpumask *mask)
|
||||
int cpu;
|
||||
|
||||
for_each_cpu(cpu, mask) {
|
||||
remove_irq(call_virq + cpu, &irq_call);
|
||||
remove_irq(sched_virq + cpu, &irq_resched);
|
||||
free_irq(call_virq + cpu, NULL);
|
||||
free_irq(sched_virq + cpu, NULL);
|
||||
}
|
||||
}
|
||||
irq_destroy_ipi(call_virq, mask);
|
||||
|
@ -71,10 +71,12 @@ subsys_initcall(init_vdso);
|
||||
|
||||
static unsigned long vdso_base(void)
|
||||
{
|
||||
unsigned long base;
|
||||
unsigned long base = STACK_TOP;
|
||||
|
||||
/* Skip the delay slot emulation page */
|
||||
base = STACK_TOP + PAGE_SIZE;
|
||||
if (IS_ENABLED(CONFIG_MIPS_FP_SUPPORT)) {
|
||||
/* Skip the delay slot emulation page */
|
||||
base += PAGE_SIZE;
|
||||
}
|
||||
|
||||
if (current->flags & PF_RANDOMIZE) {
|
||||
base += get_random_int() & (VDSO_RANDOMIZE_SIZE - 1);
|
||||
@ -95,14 +97,16 @@ int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
|
||||
if (down_write_killable(&mm->mmap_sem))
|
||||
return -EINTR;
|
||||
|
||||
/* Map delay slot emulation page */
|
||||
base = mmap_region(NULL, STACK_TOP, PAGE_SIZE,
|
||||
VM_READ | VM_EXEC |
|
||||
VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC,
|
||||
0, NULL);
|
||||
if (IS_ERR_VALUE(base)) {
|
||||
ret = base;
|
||||
goto out;
|
||||
if (IS_ENABLED(CONFIG_MIPS_FP_SUPPORT)) {
|
||||
/* Map delay slot emulation page */
|
||||
base = mmap_region(NULL, STACK_TOP, PAGE_SIZE,
|
||||
VM_READ | VM_EXEC |
|
||||
VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC,
|
||||
0, NULL);
|
||||
if (IS_ERR_VALUE(base)) {
|
||||
ret = base;
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -90,14 +90,9 @@ asmlinkage void plat_irq_dispatch(void)
|
||||
}
|
||||
}
|
||||
|
||||
static struct irqaction cascade = {
|
||||
.handler = no_action,
|
||||
.name = "cascade",
|
||||
.flags = IRQF_NO_THREAD,
|
||||
};
|
||||
|
||||
void __init arch_init_irq(void)
|
||||
{
|
||||
int irq = LASAT_CASCADE_IRQ;
|
||||
int i;
|
||||
|
||||
if (IS_LASAT_200()) {
|
||||
@ -119,5 +114,6 @@ void __init arch_init_irq(void)
|
||||
for (i = LASAT_IRQ_BASE; i <= LASAT_IRQ_END; i++)
|
||||
irq_set_chip_and_handler(i, &lasat_irq_type, handle_level_irq);
|
||||
|
||||
setup_irq(LASAT_CASCADE_IRQ, &cascade);
|
||||
if (request_irq(irq, no_action, IRQF_NO_THREAD, "cascade", NULL))
|
||||
pr_err("Failed to request irq %d (cascade)\n", irq);
|
||||
}
|
||||
|
@ -24,6 +24,8 @@
|
||||
#define GCC_DADDI_IMM_ASM() "r"
|
||||
#endif
|
||||
|
||||
#ifndef CONFIG_HAVE_PLAT_DELAY
|
||||
|
||||
void __delay(unsigned long loops)
|
||||
{
|
||||
__asm__ __volatile__ (
|
||||
@ -63,3 +65,5 @@ void __ndelay(unsigned long ns)
|
||||
__delay((ns * 0x00000005ull * HZ * lpj) >> 32);
|
||||
}
|
||||
EXPORT_SYMBOL(__ndelay);
|
||||
|
||||
#endif
|
||||
|
@ -598,6 +598,7 @@ SEXC(1)
|
||||
nop
|
||||
.endm
|
||||
|
||||
#ifndef CONFIG_HAVE_PLAT_MEMCPY
|
||||
.align 5
|
||||
LEAF(memmove)
|
||||
EXPORT_SYMBOL(memmove)
|
||||
@ -665,6 +666,8 @@ EXPORT_SYMBOL(__copy_user)
|
||||
/* Legacy Mode, user <-> user */
|
||||
__BUILD_COPY_USER LEGACY_MODE USEROP USEROP
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_EVA
|
||||
|
||||
/*
|
||||
|
@ -30,11 +30,6 @@ static struct irq_chip bonito_irq_type = {
|
||||
.irq_unmask = bonito_irq_enable,
|
||||
};
|
||||
|
||||
static struct irqaction __maybe_unused dma_timeout_irqaction = {
|
||||
.handler = no_action,
|
||||
.name = "dma_timeout",
|
||||
};
|
||||
|
||||
void bonito_irq_init(void)
|
||||
{
|
||||
u32 i;
|
||||
@ -44,6 +39,8 @@ void bonito_irq_init(void)
|
||||
handle_level_irq);
|
||||
|
||||
#ifdef CONFIG_CPU_LOONGSON2E
|
||||
setup_irq(LOONGSON_IRQ_BASE + 10, &dma_timeout_irqaction);
|
||||
i = LOONGSON_IRQ_BASE + 10;
|
||||
if (request_irq(i, no_action, 0, "dma_timeout", NULL))
|
||||
pr_err("Failed to request irq %d (dma_timeout)\n", i);
|
||||
#endif
|
||||
}
|
||||
|
@ -100,12 +100,6 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static struct irqaction irq5 = {
|
||||
.handler = timer_interrupt,
|
||||
.flags = IRQF_NOBALANCING | IRQF_TIMER,
|
||||
.name = "timer"
|
||||
};
|
||||
|
||||
/*
|
||||
* Initialize the conversion factor and the min/max deltas of the clock event
|
||||
* structure and register the clock event source with the framework.
|
||||
@ -134,7 +128,9 @@ void __init setup_mfgpt0_timer(void)
|
||||
|
||||
clockevents_register_device(cd);
|
||||
|
||||
setup_irq(CS5536_MFGPT_INTR, &irq5);
|
||||
if (request_irq(CS5536_MFGPT_INTR, timer_interrupt,
|
||||
IRQF_NOBALANCING | IRQF_TIMER, "timer", NULL))
|
||||
pr_err("Failed to register timer interrupt\n");
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -35,14 +35,10 @@ asmlinkage void mach_irq_dispatch(unsigned int pending)
|
||||
spurious_interrupt();
|
||||
}
|
||||
|
||||
static struct irqaction cascade_irqaction = {
|
||||
.handler = no_action,
|
||||
.name = "cascade",
|
||||
.flags = IRQF_NO_THREAD,
|
||||
};
|
||||
|
||||
void __init mach_init_irq(void)
|
||||
{
|
||||
int irq;
|
||||
|
||||
/* init all controller
|
||||
* 0-15 ------> i8259 interrupt
|
||||
* 16-23 ------> mips cpu interrupt
|
||||
@ -59,7 +55,11 @@ void __init mach_init_irq(void)
|
||||
bonito_irq_init();
|
||||
|
||||
/* bonito irq at IP2 */
|
||||
setup_irq(MIPS_CPU_IRQ_BASE + 2, &cascade_irqaction);
|
||||
irq = MIPS_CPU_IRQ_BASE + 2;
|
||||
if (request_irq(irq, no_action, IRQF_NO_THREAD, "cascade", NULL))
|
||||
pr_err("Failed to request irq %d (cascade)\n", irq);
|
||||
/* 8259 irq at IP5 */
|
||||
setup_irq(MIPS_CPU_IRQ_BASE + 5, &cascade_irqaction);
|
||||
irq = MIPS_CPU_IRQ_BASE + 5;
|
||||
if (request_irq(irq, no_action, IRQF_NO_THREAD, "cascade", NULL))
|
||||
pr_err("Failed to request irq %d (cascade)\n", irq);
|
||||
}
|
||||
|
@ -90,18 +90,6 @@ static irqreturn_t ip6_action(int cpl, void *dev_id)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static struct irqaction ip6_irqaction = {
|
||||
.handler = ip6_action,
|
||||
.name = "cascade",
|
||||
.flags = IRQF_SHARED | IRQF_NO_THREAD,
|
||||
};
|
||||
|
||||
static struct irqaction cascade_irqaction = {
|
||||
.handler = no_action,
|
||||
.name = "cascade",
|
||||
.flags = IRQF_NO_THREAD | IRQF_NO_SUSPEND,
|
||||
};
|
||||
|
||||
void __init mach_init_irq(void)
|
||||
{
|
||||
/* init all controller
|
||||
@ -120,7 +108,11 @@ void __init mach_init_irq(void)
|
||||
bonito_irq_init();
|
||||
|
||||
/* setup north bridge irq (bonito) */
|
||||
setup_irq(LOONGSON_NORTH_BRIDGE_IRQ, &ip6_irqaction);
|
||||
if (request_irq(LOONGSON_NORTH_BRIDGE_IRQ, ip6_action,
|
||||
IRQF_SHARED | IRQF_NO_THREAD, "cascade", ip6_action))
|
||||
pr_err("Failed to register north bridge cascade interrupt\n");
|
||||
/* setup source bridge irq (i8259) */
|
||||
setup_irq(LOONGSON_SOUTH_BRIDGE_IRQ, &cascade_irqaction);
|
||||
if (request_irq(LOONGSON_SOUTH_BRIDGE_IRQ, no_action,
|
||||
IRQF_NO_THREAD | IRQF_NO_SUSPEND, "cascade", NULL))
|
||||
pr_err("Failed to register south bridge cascade interrupt\n");
|
||||
}
|
||||
|
@ -149,12 +149,6 @@ asmlinkage void plat_irq_dispatch(void)
|
||||
|
||||
}
|
||||
|
||||
static struct irqaction cascade_irqaction = {
|
||||
.handler = no_action,
|
||||
.name = "cascade",
|
||||
.flags = IRQF_NO_THREAD,
|
||||
};
|
||||
|
||||
static void __init ls1x_irq_init(int base)
|
||||
{
|
||||
int n;
|
||||
@ -176,12 +170,17 @@ static void __init ls1x_irq_init(int base)
|
||||
handle_level_irq);
|
||||
}
|
||||
|
||||
setup_irq(INT0_IRQ, &cascade_irqaction);
|
||||
setup_irq(INT1_IRQ, &cascade_irqaction);
|
||||
setup_irq(INT2_IRQ, &cascade_irqaction);
|
||||
setup_irq(INT3_IRQ, &cascade_irqaction);
|
||||
if (request_irq(INT0_IRQ, no_action, IRQF_NO_THREAD, "cascade", NULL))
|
||||
pr_err("Failed to request irq %d (cascade)\n", INT0_IRQ);
|
||||
if (request_irq(INT1_IRQ, no_action, IRQF_NO_THREAD, "cascade", NULL))
|
||||
pr_err("Failed to request irq %d (cascade)\n", INT1_IRQ);
|
||||
if (request_irq(INT2_IRQ, no_action, IRQF_NO_THREAD, "cascade", NULL))
|
||||
pr_err("Failed to request irq %d (cascade)\n", INT2_IRQ);
|
||||
if (request_irq(INT3_IRQ, no_action, IRQF_NO_THREAD, "cascade", NULL))
|
||||
pr_err("Failed to request irq %d (cascade)\n", INT3_IRQ);
|
||||
#if defined(CONFIG_LOONGSON1_LS1C)
|
||||
setup_irq(INT4_IRQ, &cascade_irqaction);
|
||||
if (request_irq(INT4_IRQ, no_action, IRQF_NO_THREAD, "cascade", NULL))
|
||||
pr_err("Failed to request irq %d (cascade)\n", INT4_IRQ);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -176,13 +176,6 @@ static struct clock_event_device ls1x_clockevent = {
|
||||
.tick_resume = ls1x_clockevent_tick_resume,
|
||||
};
|
||||
|
||||
static struct irqaction ls1x_pwmtimer_irqaction = {
|
||||
.name = "ls1x-pwmtimer",
|
||||
.handler = ls1x_clockevent_isr,
|
||||
.dev_id = &ls1x_clockevent,
|
||||
.flags = IRQF_PERCPU | IRQF_TIMER,
|
||||
};
|
||||
|
||||
static void __init ls1x_time_init(void)
|
||||
{
|
||||
struct clock_event_device *cd = &ls1x_clockevent;
|
||||
@ -206,7 +199,10 @@ static void __init ls1x_time_init(void)
|
||||
if (ret)
|
||||
panic(KERN_ERR "Failed to register clocksource: %d\n", ret);
|
||||
|
||||
setup_irq(LS1X_TIMER_IRQ, &ls1x_pwmtimer_irqaction);
|
||||
if (request_irq(LS1X_TIMER_IRQ, ls1x_clockevent_isr,
|
||||
IRQF_PERCPU | IRQF_TIMER, "ls1x-pwmtimer",
|
||||
&ls1x_clockevent))
|
||||
pr_err("Failed to register ls1x-pwmtimer interrupt\n");
|
||||
}
|
||||
#endif /* CONFIG_CEVT_CSRC_LS1X */
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
#
|
||||
# Makefile for Loongson-3 family machines
|
||||
#
|
||||
obj-$(CONFIG_MACH_LOONGSON64) += irq.o cop2-ex.o platform.o acpi_init.o dma.o \
|
||||
obj-$(CONFIG_MACH_LOONGSON64) += cop2-ex.o platform.o acpi_init.o dma.o \
|
||||
setup.o init.o env.o time.o reset.o \
|
||||
|
||||
obj-$(CONFIG_SMP) += smp.o
|
||||
|
@ -17,6 +17,7 @@
|
||||
#include <asm/bootinfo.h>
|
||||
#include <loongson.h>
|
||||
#include <boot_param.h>
|
||||
#include <builtin_dtbs.h>
|
||||
#include <workarounds.h>
|
||||
|
||||
u32 cpu_clock_freq;
|
||||
@ -120,6 +121,28 @@ void __init prom_init_env(void)
|
||||
loongson_sysconf.cores_per_node - 1) /
|
||||
loongson_sysconf.cores_per_node;
|
||||
|
||||
if ((read_c0_prid() & PRID_IMP_MASK) == PRID_IMP_LOONGSON_64C) {
|
||||
switch (read_c0_prid() & PRID_REV_MASK) {
|
||||
case PRID_REV_LOONGSON3A_R1:
|
||||
case PRID_REV_LOONGSON3A_R2_0:
|
||||
case PRID_REV_LOONGSON3A_R2_1:
|
||||
case PRID_REV_LOONGSON3A_R3_0:
|
||||
case PRID_REV_LOONGSON3A_R3_1:
|
||||
loongson_fdt_blob = __dtb_loongson3_4core_rs780e_begin;
|
||||
break;
|
||||
case PRID_REV_LOONGSON3B_R1:
|
||||
case PRID_REV_LOONGSON3B_R2:
|
||||
loongson_fdt_blob = __dtb_loongson3_8core_rs780e_begin;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (!loongson_fdt_blob)
|
||||
pr_err("Failed to determine built-in Loongson64 dtb\n");
|
||||
|
||||
loongson_sysconf.pci_mem_start_addr = eirq_source->pci_mem_start_addr;
|
||||
loongson_sysconf.pci_mem_end_addr = eirq_source->pci_mem_end_addr;
|
||||
loongson_sysconf.pci_io_base = eirq_source->pci_io_start_addr;
|
||||
|
@ -187,12 +187,6 @@ static irqreturn_t hpet_irq_handler(int irq, void *data)
|
||||
return IRQ_NONE;
|
||||
}
|
||||
|
||||
static struct irqaction hpet_irq = {
|
||||
.handler = hpet_irq_handler,
|
||||
.flags = IRQF_NOBALANCING | IRQF_TIMER,
|
||||
.name = "hpet",
|
||||
};
|
||||
|
||||
/*
|
||||
* hpet address assignation and irq setting should be done in bios.
|
||||
* but pmon don't do this, we just setup here directly.
|
||||
@ -224,6 +218,7 @@ static void hpet_setup(void)
|
||||
|
||||
void __init setup_hpet_timer(void)
|
||||
{
|
||||
unsigned long flags = IRQF_NOBALANCING | IRQF_TIMER;
|
||||
unsigned int cpu = smp_processor_id();
|
||||
struct clock_event_device *cd;
|
||||
|
||||
@ -247,7 +242,8 @@ void __init setup_hpet_timer(void)
|
||||
cd->min_delta_ticks = HPET_MIN_PROG_DELTA;
|
||||
|
||||
clockevents_register_device(cd);
|
||||
setup_irq(HPET_T0_IRQ, &hpet_irq);
|
||||
if (request_irq(HPET_T0_IRQ, hpet_irq_handler, flags, "hpet", NULL))
|
||||
pr_err("Failed to request irq %d (hpet)\n", HPET_T0_IRQ);
|
||||
pr_info("hpet clock event device register\n");
|
||||
}
|
||||
|
||||
|
@ -4,6 +4,7 @@
|
||||
* Author: Wu Zhangjin, wuzhangjin@gmail.com
|
||||
*/
|
||||
|
||||
#include <linux/irqchip.h>
|
||||
#include <linux/memblock.h>
|
||||
#include <asm/bootinfo.h>
|
||||
#include <asm/traps.h>
|
||||
@ -44,3 +45,8 @@ void __init prom_init(void)
|
||||
void __init prom_free_prom_memory(void)
|
||||
{
|
||||
}
|
||||
|
||||
void __init arch_init_irq(void)
|
||||
{
|
||||
irqchip_init();
|
||||
}
|
||||
|
@ -1,162 +0,0 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
#include <loongson.h>
|
||||
#include <irq.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/init.h>
|
||||
|
||||
#include <asm/irq_cpu.h>
|
||||
#include <asm/i8259.h>
|
||||
#include <asm/mipsregs.h>
|
||||
|
||||
#include "smp.h"
|
||||
|
||||
extern void loongson3_send_irq_by_ipi(int cpu, int irqs);
|
||||
|
||||
unsigned int irq_cpu[16] = {[0 ... 15] = -1};
|
||||
unsigned int ht_irq[] = {0, 1, 3, 4, 5, 6, 7, 8, 12, 14, 15};
|
||||
unsigned int local_irq = 1<<0 | 1<<1 | 1<<2 | 1<<7 | 1<<8 | 1<<12;
|
||||
|
||||
int plat_set_irq_affinity(struct irq_data *d, const struct cpumask *affinity,
|
||||
bool force)
|
||||
{
|
||||
unsigned int cpu;
|
||||
struct cpumask new_affinity;
|
||||
|
||||
/* I/O devices are connected on package-0 */
|
||||
cpumask_copy(&new_affinity, affinity);
|
||||
for_each_cpu(cpu, affinity)
|
||||
if (cpu_data[cpu].package > 0)
|
||||
cpumask_clear_cpu(cpu, &new_affinity);
|
||||
|
||||
if (cpumask_empty(&new_affinity))
|
||||
return -EINVAL;
|
||||
|
||||
cpumask_copy(d->common->affinity, &new_affinity);
|
||||
|
||||
return IRQ_SET_MASK_OK_NOCOPY;
|
||||
}
|
||||
|
||||
static void ht_irqdispatch(void)
|
||||
{
|
||||
unsigned int i, irq;
|
||||
struct irq_data *irqd;
|
||||
struct cpumask affinity;
|
||||
|
||||
irq = LOONGSON_HT1_INT_VECTOR(0);
|
||||
LOONGSON_HT1_INT_VECTOR(0) = irq; /* Acknowledge the IRQs */
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(ht_irq); i++) {
|
||||
if (!(irq & (0x1 << ht_irq[i])))
|
||||
continue;
|
||||
|
||||
/* handled by local core */
|
||||
if (local_irq & (0x1 << ht_irq[i])) {
|
||||
do_IRQ(ht_irq[i]);
|
||||
continue;
|
||||
}
|
||||
|
||||
irqd = irq_get_irq_data(ht_irq[i]);
|
||||
cpumask_and(&affinity, irqd->common->affinity, cpu_active_mask);
|
||||
if (cpumask_empty(&affinity)) {
|
||||
do_IRQ(ht_irq[i]);
|
||||
continue;
|
||||
}
|
||||
|
||||
irq_cpu[ht_irq[i]] = cpumask_next(irq_cpu[ht_irq[i]], &affinity);
|
||||
if (irq_cpu[ht_irq[i]] >= nr_cpu_ids)
|
||||
irq_cpu[ht_irq[i]] = cpumask_first(&affinity);
|
||||
|
||||
if (irq_cpu[ht_irq[i]] == 0) {
|
||||
do_IRQ(ht_irq[i]);
|
||||
continue;
|
||||
}
|
||||
|
||||
/* balanced by other cores */
|
||||
loongson3_send_irq_by_ipi(irq_cpu[ht_irq[i]], (0x1 << ht_irq[i]));
|
||||
}
|
||||
}
|
||||
|
||||
#define UNUSED_IPS (CAUSEF_IP5 | CAUSEF_IP4 | CAUSEF_IP1 | CAUSEF_IP0)
|
||||
|
||||
asmlinkage void plat_irq_dispatch(void)
|
||||
{
|
||||
unsigned int pending;
|
||||
|
||||
pending = read_c0_cause() & read_c0_status() & ST0_IM;
|
||||
|
||||
if (pending & CAUSEF_IP7)
|
||||
do_IRQ(LOONGSON_TIMER_IRQ);
|
||||
#if defined(CONFIG_SMP)
|
||||
if (pending & CAUSEF_IP6)
|
||||
loongson3_ipi_interrupt(NULL);
|
||||
#endif
|
||||
if (pending & CAUSEF_IP3)
|
||||
ht_irqdispatch();
|
||||
if (pending & CAUSEF_IP2)
|
||||
do_IRQ(LOONGSON_UART_IRQ);
|
||||
if (pending & UNUSED_IPS) {
|
||||
pr_err("%s : spurious interrupt\n", __func__);
|
||||
spurious_interrupt();
|
||||
}
|
||||
}
|
||||
|
||||
static inline void mask_loongson_irq(struct irq_data *d) { }
|
||||
static inline void unmask_loongson_irq(struct irq_data *d) { }
|
||||
|
||||
/* For MIPS IRQs which shared by all cores */
|
||||
static struct irq_chip loongson_irq_chip = {
|
||||
.name = "Loongson",
|
||||
.irq_ack = mask_loongson_irq,
|
||||
.irq_mask = mask_loongson_irq,
|
||||
.irq_mask_ack = mask_loongson_irq,
|
||||
.irq_unmask = unmask_loongson_irq,
|
||||
.irq_eoi = unmask_loongson_irq,
|
||||
};
|
||||
|
||||
void irq_router_init(void)
|
||||
{
|
||||
int i;
|
||||
|
||||
/* route LPC int to cpu core0 int 0 */
|
||||
LOONGSON_INT_ROUTER_LPC =
|
||||
LOONGSON_INT_COREx_INTy(loongson_sysconf.boot_cpu_id, 0);
|
||||
/* route HT1 int0 ~ int7 to cpu core0 INT1*/
|
||||
for (i = 0; i < 8; i++)
|
||||
LOONGSON_INT_ROUTER_HT1(i) =
|
||||
LOONGSON_INT_COREx_INTy(loongson_sysconf.boot_cpu_id, 1);
|
||||
/* enable HT1 interrupt */
|
||||
LOONGSON_HT1_INTN_EN(0) = 0xffffffff;
|
||||
/* enable router interrupt intenset */
|
||||
LOONGSON_INT_ROUTER_INTENSET =
|
||||
LOONGSON_INT_ROUTER_INTEN | (0xffff << 16) | 0x1 << 10;
|
||||
}
|
||||
|
||||
void __init arch_init_irq(void)
|
||||
{
|
||||
struct irq_chip *chip;
|
||||
|
||||
clear_c0_status(ST0_IM | ST0_BEV);
|
||||
|
||||
irq_router_init();
|
||||
mips_cpu_irq_init();
|
||||
init_i8259_irqs();
|
||||
chip = irq_get_chip(I8259A_IRQ_BASE);
|
||||
chip->irq_set_affinity = plat_set_irq_affinity;
|
||||
|
||||
irq_set_chip_and_handler(LOONGSON_UART_IRQ,
|
||||
&loongson_irq_chip, handle_percpu_irq);
|
||||
irq_set_chip_and_handler(LOONGSON_BRIDGE_IRQ,
|
||||
&loongson_irq_chip, handle_percpu_irq);
|
||||
|
||||
set_c0_status(STATUSF_IP2 | STATUSF_IP3 | STATUSF_IP6);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_HOTPLUG_CPU
|
||||
|
||||
void fixup_irqs(void)
|
||||
{
|
||||
irq_cpu_offline();
|
||||
clear_c0_status(ST0_IM);
|
||||
}
|
||||
|
||||
#endif
|
@ -122,7 +122,7 @@ static unsigned long nid_to_addroffset(unsigned int nid)
|
||||
static void __init szmem(unsigned int node)
|
||||
{
|
||||
u32 i, mem_type;
|
||||
static unsigned long num_physpages = 0;
|
||||
static unsigned long num_physpages;
|
||||
u64 node_id, node_psize, start_pfn, end_pfn, mem_start, mem_size;
|
||||
|
||||
/* Parse memory information and activate */
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user