2019-04-24 21:53:43 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019, NXP
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <mem.h>
|
|
|
|
#include <arm/armv8-m.dtsi>
|
2022-05-06 17:02:05 +08:00
|
|
|
#include <zephyr/dt-bindings/gpio/gpio.h>
|
|
|
|
#include <zephyr/dt-bindings/i2c/i2c.h>
|
2019-04-24 21:53:43 +08:00
|
|
|
|
|
|
|
/ {
|
2020-04-15 11:46:18 +08:00
|
|
|
soc {
|
2020-04-15 08:58:12 +08:00
|
|
|
sram: sram@14000000 {
|
2020-04-22 02:14:35 +08:00
|
|
|
ranges = <0x4000000 0x14000000 0x20000000>;
|
2020-04-15 11:46:18 +08:00
|
|
|
};
|
2019-04-24 21:53:43 +08:00
|
|
|
|
2020-04-15 08:58:12 +08:00
|
|
|
peripheral: peripheral@50000000 {
|
|
|
|
ranges = <0x0 0x50000000 0x10000000>;
|
2019-04-24 21:53:43 +08:00
|
|
|
|
2020-04-15 08:58:12 +08:00
|
|
|
iap: flash-controller@34000 {
|
|
|
|
ranges = <0x0 0x10000000 0x3020000>;
|
2019-11-12 20:34:30 +08:00
|
|
|
};
|
2019-06-30 23:16:52 +08:00
|
|
|
};
|
2019-04-24 21:53:43 +08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-04-15 08:58:12 +08:00
|
|
|
#include "nxp_lpc55S6x_common.dtsi"
|
2022-08-18 07:04:56 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Explicitly enable IAP after we include the common LPC55S6X dtsi file,
|
|
|
|
* which will set it to disabled.
|
|
|
|
*/
|
|
|
|
&iap {
|
|
|
|
status = "okay";
|
|
|
|
};
|