Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: dts: aspeed: witherspoon: Update BMC partitioning

Add simplified partitions for BMC and alternate flash. Include these by
default in Witherspoon.

Signed-off-by: Edward A. James <eajames@us.ibm.com>
Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Andrew Jeffery <andrew@aj.id.au>
Signed-off-by: Joel Stanley <joel@jms.id.au>

authored by

Edward A. James and committed by
Joel Stanley
780726f9 972f0e06

+38 -2
+38 -2
arch/arm/boot/dts/aspeed-bmc-opp-witherspoon.dts
··· 193 193 status = "okay"; 194 194 label = "bmc"; 195 195 m25p,fast-read; 196 - #include "openbmc-flash-layout.dtsi" 196 + 197 + partitions { 198 + #address-cells = < 1 >; 199 + #size-cells = < 1 >; 200 + compatible = "fixed-partitions"; 201 + u-boot@0 { 202 + reg = < 0 0x60000 >; 203 + label = "u-boot"; 204 + }; 205 + u-boot-env@60000 { 206 + reg = < 0x60000 0x20000 >; 207 + label = "u-boot-env"; 208 + }; 209 + obmc-ubi@80000 { 210 + reg = < 0x80000 0x1F80000 >; 211 + label = "obmc-ubi"; 212 + }; 213 + }; 197 214 }; 198 215 199 216 flash@1 { 200 217 status = "okay"; 201 - label = "alt"; 218 + label = "alt-bmc"; 202 219 m25p,fast-read; 220 + 221 + partitions { 222 + #address-cells = < 1 >; 223 + #size-cells = < 1 >; 224 + compatible = "fixed-partitions"; 225 + u-boot@0 { 226 + reg = < 0 0x60000 >; 227 + label = "alt-u-boot"; 228 + }; 229 + u-boot-env@60000 { 230 + reg = < 0x60000 0x20000 >; 231 + label = "alt-u-boot-env"; 232 + }; 233 + obmc-ubi@80000 { 234 + reg = < 0x80000 0x1F80000 >; 235 + label = "alt-obmc-ubi"; 236 + }; 237 + }; 238 + 203 239 }; 204 240 }; 205 241