1// SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2/* 3 * Copyright (c) 2023 Rockchip Electronics Co., Ltd. 4 */ 5 6/ { 7 rockchip_amp: rockchip-amp { 8 compatible = "rockchip,amp"; 9 clocks = <&cru SCLK_UART1>, <&cru PCLK_UART1>, 10 <&cru PCLK_TIMER>, <&cru SCLK_TIMER4>, <&cru SCLK_TIMER5>; 11 12 pinctrl-names = "default"; 13 pinctrl-0 = <&uart1_xfer>; 14 status = "okay"; 15 }; 16 17 reserved-memory { 18 #address-cells = <2>; 19 #size-cells = <2>; 20 ranges; 21 22 /* remote amp core address */ 23 amp_reserved: amp@2e00000 { 24 reg = <0x0 0x2e00000 0x0 0x1200000>; 25 no-map; 26 }; 27 }; 28}; 29 30&cpu3 { 31 status = "disabled"; 32}; 33