2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2017-06-09 17:28:42 +00:00
|
|
|
/*
|
2022-06-01 15:17:06 +00:00
|
|
|
* Copyright (C) 2017 Marek Behún <kabel@kernel.org>
|
2017-06-09 17:28:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/ {
|
|
|
|
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;
|
|
|
|
|
2022-04-08 14:30:15 +00:00
|
|
|
crypto@64 {
|
2017-06-09 17:28:42 +00:00
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-02-08 23:27:00 +00:00
|
|
|
#ifdef CONFIG_ENV_IS_IN_SPI_FLASH
|
2017-06-09 17:28:42 +00:00
|
|
|
&spi0 {
|
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
|
2022-07-27 12:47:38 +00:00
|
|
|
flash@0 {
|
2017-06-09 17:28:42 +00:00
|
|
|
u-boot,dm-pre-reloc;
|
2021-07-15 17:21:01 +00:00
|
|
|
|
|
|
|
partitions {
|
|
|
|
partition@0 {
|
|
|
|
reg = <0x0 CONFIG_ENV_OFFSET>;
|
|
|
|
};
|
|
|
|
|
|
|
|
partition@f0000 {
|
|
|
|
reg = <CONFIG_ENV_OFFSET CONFIG_ENV_SIZE>;
|
|
|
|
label = "u-boot-env";
|
|
|
|
};
|
|
|
|
};
|
2017-06-09 17:28:42 +00:00
|
|
|
};
|
|
|
|
};
|
2022-02-08 23:27:00 +00:00
|
|
|
#endif
|
2017-06-09 17:28:42 +00:00
|
|
|
|
|
|
|
&uart0 {
|
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
};
|