Add Microchip PIC32MZ[DA] SoC family support. Signed-off-by: Purna Chandra Mandal <purna.mandal@microchip.com> Reviewed-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>master
parent
9ffa7a35ef
commit
be961fa15b
@ -0,0 +1,153 @@ |
||||
/* |
||||
* Copyright 2015 Microchip Technology, Inc. |
||||
* Purna Chandra Mandal, <purna.mandal@microchip.com> |
||||
* |
||||
* SPDX-License-Identifier: GPL-2.0+ |
||||
*/ |
||||
|
||||
#include <dt-bindings/interrupt-controller/irq.h> |
||||
#include <dt-bindings/clock/microchip,clock.h> |
||||
#include <dt-bindings/gpio/gpio.h> |
||||
#include "skeleton.dtsi" |
||||
|
||||
/ { |
||||
compatible = "microchip,pic32mzda", "microchip,pic32mz"; |
||||
|
||||
aliases { |
||||
gpio0 = &gpioA; |
||||
gpio1 = &gpioB; |
||||
gpio2 = &gpioC; |
||||
gpio3 = &gpioD; |
||||
gpio4 = &gpioE; |
||||
gpio5 = &gpioF; |
||||
gpio6 = &gpioG; |
||||
gpio7 = &gpioH; |
||||
gpio8 = &gpioJ; |
||||
gpio9 = &gpioK; |
||||
}; |
||||
|
||||
cpus { |
||||
cpu@0 { |
||||
compatible = "mips,mips14kc"; |
||||
}; |
||||
}; |
||||
|
||||
clock: clk@1f801200 { |
||||
compatible = "microchip,pic32mzda-clk"; |
||||
reg = <0x1f801200 0x1000>; |
||||
#clock-cells = <1>; |
||||
}; |
||||
|
||||
uart1: serial@1f822000 { |
||||
compatible = "microchip,pic32mzda-uart"; |
||||
reg = <0x1f822000 0x50>; |
||||
interrupts = <112 IRQ_TYPE_LEVEL_HIGH>; |
||||
status = "disabled"; |
||||
clocks = <&clock PB2CLK>; |
||||
}; |
||||
|
||||
uart2: serial@1f822200 { |
||||
compatible = "microchip,pic32mzda-uart"; |
||||
reg = <0x1f822200 0x50>; |
||||
interrupts = <145 IRQ_TYPE_LEVEL_HIGH>; |
||||
clocks = <&clock PB2CLK>; |
||||
status = "disabled"; |
||||
}; |
||||
|
||||
uart6: serial@1f822a00 { |
||||
compatible = "microchip,pic32mzda-uart"; |
||||
reg = <0x1f822a00 0x50>; |
||||
interrupts = <188 IRQ_TYPE_LEVEL_HIGH>; |
||||
clocks = <&clock PB2CLK>; |
||||
status = "disabled"; |
||||
}; |
||||
|
||||
evic: interrupt-controller@1f810000 { |
||||
compatible = "microchip,pic32mzda-evic"; |
||||
interrupt-controller; |
||||
#interrupt-cells = <2>; |
||||
reg = <0x1f810000 0x1000>; |
||||
}; |
||||
|
||||
pinctrl: pinctrl@1f801400 { |
||||
compatible = "microchip,pic32mzda-pinctrl"; |
||||
reg = <0x1f801400 0x100>, /* in */ |
||||
<0x1f801500 0x200>, /* out */ |
||||
<0x1f860000 0xa00>; /* port */ |
||||
reg-names = "ppsin","ppsout","port"; |
||||
status = "disabled"; |
||||
|
||||
ranges = <0 0x1f860000 0xa00>; |
||||
#address-cells = <1>; |
||||
#size-cells = <1>; |
||||
gpioA: gpio0@0 { |
||||
compatible = "microchip,pic32mzda-gpio"; |
||||
reg = <0x000 0x48>; |
||||
gpio-controller; |
||||
#gpio-cells = <2>; |
||||
}; |
||||
|
||||
gpioB: gpio1@100 { |
||||
compatible = "microchip,pic32mzda-gpio"; |
||||
reg = <0x100 0x48>; |
||||
gpio-controller; |
||||
#gpio-cells = <2>; |
||||
}; |
||||
|
||||
gpioC: gpio2@200 { |
||||
compatible = "microchip,pic32mzda-gpio"; |
||||
reg = <0x200 0x48>; |
||||
gpio-controller; |
||||
#gpio-cells = <2>; |
||||
}; |
||||
|
||||
gpioD: gpio3@300 { |
||||
compatible = "microchip,pic32mzda-gpio"; |
||||
reg = <0x300 0x48>; |
||||
gpio-controller; |
||||
#gpio-cells = <2>; |
||||
}; |
||||
|
||||
gpioE: gpio4@400 { |
||||
compatible = "microchip,pic32mzda-gpio"; |
||||
reg = <0x400 0x48>; |
||||
gpio-controller; |
||||
#gpio-cells = <2>; |
||||
}; |
||||
|
||||
gpioF: gpio5@500 { |
||||
compatible = "microchip,pic32mzda-gpio"; |
||||
reg = <0x500 0x48>; |
||||
gpio-controller; |
||||
#gpio-cells = <2>; |
||||
}; |
||||
|
||||
gpioG: gpio6@600 { |
||||
compatible = "microchip,pic32mzda-gpio"; |
||||
reg = <0x600 0x48>; |
||||
gpio-controller; |
||||
#gpio-cells = <2>; |
||||
}; |
||||
|
||||
gpioH: gpio7@700 { |
||||
compatible = "microchip,pic32mzda-gpio"; |
||||
reg = <0x700 0x48>; |
||||
gpio-controller; |
||||
#gpio-cells = <2>; |
||||
}; |
||||
|
||||
gpioJ: gpio8@800 { |
||||
compatible = "microchip,pic32mzda-gpio"; |
||||
reg = <0x800 0x48>; |
||||
gpio-controller; |
||||
#gpio-cells = <2>; |
||||
}; |
||||
|
||||
gpioK: gpio9@900 { |
||||
compatible = "microchip,pic32mzda-gpio"; |
||||
reg = <0x900 0x48>; |
||||
gpio-controller; |
||||
#gpio-cells = <2>; |
||||
}; |
||||
}; |
||||
}; |
@ -0,0 +1,27 @@ |
||||
/* |
||||
* (c) 2015 Purna Chandra Mandal <purna.mandal@microchip.com>
|
||||
* |
||||
* SPDX-License-Identifier: GPL-2.0+ |
||||
* |
||||
*/ |
||||
|
||||
#include <config.h> |
||||
#include <asm/regdef.h> |
||||
#include <asm/mipsregs.h> |
||||
#include <asm/asm.h> |
||||
|
||||
LEAF(lowlevel_init) |
||||
/* |
||||
* Establish Cause |
||||
* (set IV bit) |
||||
*/ |
||||
li t1, 0x00800000 |
||||
mtc0 t1, CP0_CAUSE |
||||
|
||||
/* Establish Wired (and Random) */ |
||||
mtc0 zero, CP0_WIRED |
||||
nop |
||||
|
||||
jr ra |
||||
nop |
||||
END(lowlevel_init) |
@ -0,0 +1,36 @@ |
||||
/*
|
||||
* (c) 2015 Purna Chandra Mandal <purna.mandal@microchip.com> |
||||
* |
||||
* SPDX-License-Identifier: GPL-2.0+ |
||||
* |
||||
*/ |
||||
|
||||
#include <common.h> |
||||
#include <asm/io.h> |
||||
#include <mach/pic32.h> |
||||
|
||||
/* SYSKEY */ |
||||
#define UNLOCK_KEY1 0xaa996655 |
||||
#define UNLOCK_KEY2 0x556699aa |
||||
#define LOCK_KEY 0 |
||||
|
||||
#define RSWRST 0x1250 |
||||
|
||||
void _machine_restart(void) |
||||
{ |
||||
void __iomem *base; |
||||
|
||||
base = pic32_get_syscfg_base(); |
||||
|
||||
/* unlock sequence */ |
||||
writel(LOCK_KEY, base + SYSKEY); |
||||
writel(UNLOCK_KEY1, base + SYSKEY); |
||||
writel(UNLOCK_KEY2, base + SYSKEY); |
||||
|
||||
/* soft reset */ |
||||
writel(0x1, base + RSWRST); |
||||
(void) readl(base + RSWRST); |
||||
|
||||
while (1) |
||||
; |
||||
} |
Loading…
Reference in new issue