blob: 5ec15a845c1a898efa0789a5294ff073ed1c0f52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
* Copyright (c) 2023 Radxa Limited
*/
#include "rk3399-rock-pi-4-u-boot.dtsi"
&pcfg_pull_none_18ma {
bootph-pre-ram;
bootph-some-ram;
};
&pcfg_pull_up_8ma {
bootph-pre-ram;
bootph-some-ram;
};
&spi1 {
status = "okay";
flash@0 {
compatible = "jedec,spi-nor";
reg = <0>;
bootph-pre-ram;
bootph-some-ram;
spi-max-frequency = <10000000>;
};
};
|