upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
708 B
55 lines
708 B
/*
|
|
* Copyright (C) 2017 Marek Behun <marek.behun@nic.cz>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
/ {
|
|
aliases {
|
|
i2c0 = &i2c0;
|
|
i2c1 = &i2cmux;
|
|
spi0 = &spi0;
|
|
};
|
|
};
|
|
|
|
&i2c0 {
|
|
u-boot,dm-pre-reloc;
|
|
|
|
i2cmux: i2cmux@70 {
|
|
u-boot,dm-pre-reloc;
|
|
|
|
i2c@0 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
i2c@1 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
i2c@5 {
|
|
u-boot,dm-pre-reloc;
|
|
|
|
/* ATSHA204A at address 0x64 */
|
|
atsha204a@64 {
|
|
u-boot,dm-pre-reloc;
|
|
compatible = "atmel,atsha204a";
|
|
reg = <0x64>;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
&spi0 {
|
|
u-boot,dm-pre-reloc;
|
|
|
|
spi-flash@0 {
|
|
compatible = "spi-flash";
|
|
reg = <0>;
|
|
spi-max-frequency = <40000000>;
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|