mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 16:57:47 +07:00
8dccafaa28
Fix dtc warnings for 'simple_bus_reg' due to leading 0s. Converted using the following command: perl -p -i -e 's/\@0+([0-9a-f])/\@$1/g' `find arch/arm/boot/dts -type -f -name '*.dts*' Dropped changes to ARM, Ltd. boards LED nodes and manually fixed up some occurrences of uppercase hex. Signed-off-by: Rob Herring <robh@kernel.org> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
69 lines
979 B
Plaintext
69 lines
979 B
Plaintext
/*
|
|
* mpa1600.dts - Device Tree file for Phontech MPA 1600
|
|
*
|
|
* Copyright (C) 2013 Joachim Eastwood <manabian@gmail.com>
|
|
*
|
|
* Licensed under GPLv2 only
|
|
*/
|
|
/dts-v1/;
|
|
#include "at91rm9200.dtsi"
|
|
|
|
/ {
|
|
model = "Phontech MPA 1600";
|
|
compatible = "phontech,mpa1600", "atmel,at91rm9200";
|
|
|
|
memory {
|
|
reg = <0x20000000 0x4000000>;
|
|
};
|
|
|
|
clocks {
|
|
slow_xtal {
|
|
clock-frequency = <32768>;
|
|
};
|
|
|
|
main_xtal {
|
|
clock-frequency = <18432000>;
|
|
};
|
|
};
|
|
|
|
ahb {
|
|
apb {
|
|
dbgu: serial@fffff200 {
|
|
status = "okay";
|
|
};
|
|
|
|
macb0: ethernet@fffbc000 {
|
|
phy-mode = "rmii";
|
|
status = "okay";
|
|
};
|
|
|
|
ssc0: ssc@fffd0000 {
|
|
status = "okay";
|
|
};
|
|
|
|
ssc1: ssc@fffd4000 {
|
|
status = "okay";
|
|
};
|
|
};
|
|
|
|
usb0: ohci@300000 {
|
|
num-ports = <1>;
|
|
status = "okay";
|
|
};
|
|
};
|
|
|
|
i2c-gpio-0 {
|
|
status = "okay";
|
|
};
|
|
|
|
gpio_keys {
|
|
compatible = "gpio-keys";
|
|
|
|
monitor_mute {
|
|
label = "Monitor mute";
|
|
gpios = <&pioC 1 GPIO_ACTIVE_LOW>;
|
|
linux,code = <113>;
|
|
};
|
|
};
|
|
};
|