u-boot/board
Tom Rini 208fc7a9f9 Merge patch series "provide names for emmc hardware partitions"
Tim Harvey <tharvey@gateworks.com> says:

Modern eMMC v4+ devices have multiple hardware partitions per the JEDEC
specification described as:
 Boot Area Partition 1
 Boot Area Partition 2
 RPMB Partition
 General Purpose Partition 1
 General Purpose Partition 2
 General Purpose Partition 3
 General Purpose Partition 4
 User Data Area

These are referenced by fields in the PARTITION_CONFIG register
(Extended CSD Register 179) which is defined as:
bit 7: reserved
bit 6: BOOT_ACK
  0x0: No boot acknowledge sent (default
  0x1: Boot acknowledge sent during boot operation Bit
bit 5:3: BOOT_PARTITION_ENABLE
  0x0: Device not boot enabled (default)
  0x1: Boot Area partition 1 enabled for boot
  0x2: Boot Area partition 2 enabled for boot
  0x3-0x6: Reserved
  0x7: User area enabled for boot
bit 2:0 PARTITION_ACCESS
  0x0: No access to boot partition (default)
  0x1: Boot Area partition 1
  0x2: Boot Area partition 2
  0x3: Replay Protected Memory Block (RPMB)
  0x4: Access to General Purpose partition 1
  0x5: Access to General Purpose partition 2
  0x6: Access to General Purpose partition 3
  0x7: Access to General Purpose partition 4

Note that setting PARTITION_ACCESS to 0x0 results in selecting the User
Data Area partition.

You can see above that the two fields BOOT_PARTITION_ENABLE and
PARTITION_ACCESS do not use the same enumerated values.

U-Boot uses a set of macros to access fields of the PARTITION_CONFIG
register:
EXT_CSD_BOOT_ACK_ENABLE                 (1 << 6)
EXT_CSD_BOOT_PARTITION_ENABLE           (1 << 3)
EXT_CSD_PARTITION_ACCESS_ENABLE         (1 << 0)
EXT_CSD_PARTITION_ACCESS_DISABLE        (0 << 0)

EXT_CSD_BOOT_ACK(x)             (x << 6)
EXT_CSD_BOOT_PART_NUM(x)        (x << 3)
EXT_CSD_PARTITION_ACCESS(x)     (x << 0)

EXT_CSD_EXTRACT_BOOT_ACK(x) (((x) >> 6) & 0x1)
EXT_CSD_EXTRACT_BOOT_PART(x) (((x) >> 3) & 0x7)
EXT_CSD_EXTRACT_PARTITION_ACCESS(x) ((x) & 0x7)

There are various places in U-Boot where the BOOT_PARTITION_ENABLE field
is accessed via EXT_CSD_EXTRACT_PARTITION_ACCESS and converted to a
hardware partition consistent with the definition of the
PARTITION_ACCESS field used by the various mmc_switch incarnations.

To add some sanity to the distinction between BOOT_PARTITION_ENABLE
(used to specify the active device on power-cycle) and PARTITION_ACCESS
(used to switch between hardware partitions) create two enumerated types
and use them wherever struct mmc * part_config is used or the above
macros are used.

Additionally provide arrays of the field names and allow those to be
used in the 'mmc partconf' command and in board support files.

The first patch adds enumerated types and makes use of them which
represents no compiled code change.

The 2nd patch adds the array of names and uses them in the 'mmc
partconf' command.

The 3rd patch uses the array of hardware partition names in a board
support file to show what emmc hardware partition U-Boot is being loaded
from.
2024-09-05 12:13:24 -06:00
..
abilis/tb100 arc: Cleanup and audit usage of <config.h> 2023-12-21 08:54:37 -05:00
advantech spl: mmc: Try to clean up raw-mode options 2024-08-23 15:58:41 -06:00
alliedtelesis Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
altera board: altera: Remove duplicate newlines 2024-07-22 10:51:46 -06:00
amarula/vyasa-rk3288 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
amd cmd: Make use of U_BOOT_LONGHELP when missing 2024-06-26 13:17:51 -06:00
amlogic Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
anbernic/rgxx3_rk3566 Revert "board: rockchip: Add early ADC button detect for RGxx3" 2024-06-14 16:52:34 +08:00
andestech/ae350 andes: Unify naming policy for Andes related source 2024-05-14 18:50:47 +08:00
aries/mcvevk board: aries: Remove duplicate newlines 2024-07-22 10:51:46 -06:00
aristainetos Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
armadeus/opos6uldev Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
armltd maintainers: Update list of maintainers for Corstone-1000 2024-08-15 10:57:35 -06:00
armsom/sige7-rk3588 board: rockchip: add ArmSoM Sige7 Rk3588 board 2024-06-14 17:11:05 +08:00
aspeed board: Remove essentially empty board files and Makefiles 2023-10-09 15:24:31 -04:00
astro/mcf5373l Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
asus board: asus: transformer: add ASUS Transformer T20 family support 2024-07-05 10:18:35 +03:00
atmel Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
avionic-design Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
beacon Prepare v2024.070-rc4 2024-06-04 08:09:09 -06:00
beagle arm: Remove omap3_beagle board 2024-07-23 10:38:04 -06:00
beckhoff/mx53cx9020 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
bitmain/antminer_s9
bluewater/gurnard Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
bosch board: shc: convert to DM_I2C 2024-08-09 06:25:48 +02:00
boundary/nitrogen6x nitrogen6x: convert to DM_I2C and DM_SERIAL 2024-07-22 17:55:35 -03:00
broadcom Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
bsh Prepare v2024.07-rc5 2024-06-24 13:34:52 -06:00
bticino/mamoj Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
buffalo/lsxl Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
BuR am33xx: Use regular spl_board_init instead of am33xx_spl_board_init 2024-08-06 18:33:17 -06:00
BuS/eb_cpu5282 board: BuS: Remove duplicate newlines 2024-07-22 10:51:46 -06:00
cadence/xtfpga board: cadence: Remove duplicate newlines 2024-07-22 10:51:46 -06:00
calao/usb_a9263 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
cavium/thunderx Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
cei/cei-tk1-som Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
chipspark/popmetal_rk3288 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
cloos/imx8mm_phg Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
cloudengines Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
cobra5272 board: cobra5272: Remove duplicate newlines 2024-07-22 10:51:46 -06:00
compal/paz00 board: compal: paz00: clean up the board 2023-12-19 21:24:30 +02:00
compulab board: cm_fx6: convert to DM_I2C 2024-08-09 06:26:35 +02:00
comtrend board: Remove essentially empty board files and Makefiles 2023-10-09 15:24:31 -04:00
conclusive/kstr-sama5d27 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
congatec board: congatec: Remove duplicate newlines 2024-07-22 10:51:46 -06:00
coreboot Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
cortina Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
cssi Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
CZ.NIC turris_1x: Normalize Kconfig usage 2024-07-13 10:42:15 -06:00
d-link/dns325 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
data_modul ARM: imx: Use USB SDPS as fallback option on Data Modul i.MX8M Plus eDM SBC 2024-08-23 14:53:27 -03:00
davinci/da8xxevm board: davinci: Remove duplicate newlines 2024-07-22 10:51:46 -06:00
devboards/dbm-soc1 board: devboards: Remove duplicate newlines 2024-07-22 10:51:46 -06:00
dfi Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
dhelectronics board: dhelectronics: Remove duplicate newlines 2024-07-22 10:51:46 -06:00
ea Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
ebv/socrates board: ebv: Remove duplicate newlines 2024-07-22 10:51:46 -06:00
edgeble boards: Remove empty BOARD_SPECIFIC_OPTIONS 2024-03-13 12:40:43 -04:00
eets/pdu001 am33xx: Use regular spl_board_init instead of am33xx_spl_board_init 2024-08-06 18:33:17 -06:00
efi Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
egnite/ethernut5 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
elgin/elgin_rv1108 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
embest/mx6boards mx6boards: convert to DM_I2C and DM_SERIAL 2024-07-22 17:55:35 -03:00
emulation board: emulation: New board qemu-xtensa 2024-07-04 16:08:37 -06:00
engicam board: engicam: Remove duplicate newlines 2024-07-22 10:51:46 -06:00
esd/meesc Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
firefly Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
freescale global_data: Remove jump table in SPL 2024-08-26 14:06:08 -06:00
friendlyarm arm: friendlyarm: Avoid accessing global_data fb_base 2024-08-26 14:05:38 -06:00
friendlyelec board: rockchip: Add FriendlyElec CM3588 NAS 2024-08-09 18:35:24 +08:00
gardena Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
gateworks Merge patch series "provide names for emmc hardware partitions" 2024-09-05 12:13:24 -06:00
gdsys board: gdsys: Remove duplicate newlines 2024-07-22 10:51:47 -06:00
ge board: ge: Remove duplicate newlines 2024-07-22 10:51:47 -06:00
geekbuying/geekbox boards: Remove empty BOARD_SPECIFIC_OPTIONS 2024-03-13 12:40:43 -04:00
google Merge branch 'next' 2024-07-01 15:00:56 -06:00
grinn am33xx: Use regular spl_board_init instead of am33xx_spl_board_init 2024-08-06 18:33:17 -06:00
hardkernel migrate Theobroma Systems mail addresses to CHERRY Embedded Solutions 2024-05-29 11:21:14 -06:00
highbank Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
hisilicon board: hisilicon: Remove duplicate newlines 2024-07-22 10:51:47 -06:00
hoperun/hihope-rzg2 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
hpe/gxp Rename CONFIG_SYS_TEXT_BASE to CONFIG_TEXT_BASE 2022-10-31 11:01:31 -04:00
htc/endeavoru board: htc: endeavoru: add an early SPL RCM hook 2024-01-05 18:05:42 +02:00
huawei/hg556a board: Remove essentially empty board files and Makefiles 2023-10-09 15:24:31 -04:00
imgtec Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
indiedroid/nova board: rockchip: Add Indiedroid Nova 2024-05-25 10:28:19 +08:00
intel Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
inteno/xg6846 bmips: Add Inteno XG6846 board 2023-11-06 10:20:21 -05:00
inversepath/usbarmory Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
iomega/iconnect Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
is1 board: is1: Remove duplicate newlines 2024-07-22 10:51:47 -06:00
isee Prepare v2024.070-rc4 2024-06-04 08:09:09 -06:00
itead/sonoff-ihost board: rockchip: Add Sonoff iHost board 2024-02-04 18:45:58 +08:00
k+p Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
keymile board: keymile: convert to CONFIG_DM_I2C 2024-07-23 10:38:20 -06:00
kobol/helios4 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
kontron board: kontron: Remove duplicate newlines 2024-07-22 10:51:47 -06:00
kosagi/novena board: novena: convert to DM_I2C 2024-08-09 06:26:22 +02:00
l+g/vinco board: l+g: Remove duplicate newlines 2024-07-22 10:51:47 -06:00
LaCie Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
lego/ev3 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
lenovo/ideapad-yoga-11 board: lenovo: ideapad-yoga-11: add Lenovo Ideapad Yoga 11 support 2024-07-05 10:18:36 +03:00
lg omap3: sniper: Convert to device-tree control and DM I2C 2024-08-06 18:33:17 -06:00
liebherr Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
logicpd board: logicpd: Remove duplicate newlines 2024-07-22 10:51:47 -06:00
Marvell configs: add mvebu_espressobin_ultra-88f3720_defconfig 2024-07-08 08:19:57 +02:00
maxbcm Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
mediatek Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
menlo Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
microchip Merge branch 'next' 2024-07-01 15:00:56 -06:00
microsoft/surface-rt board: microsoft: surface-rt: add Microsoft Surface RT support 2024-07-05 10:18:36 +03:00
mikrotik/crs3xx-98dx3236 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
mntre/imx8mq_reform2 board: mntre: Remove duplicate newlines 2024-07-22 10:51:47 -06:00
mqmaker/miqi_rk3288 boards: Remove empty BOARD_SPECIFIC_OPTIONS 2024-03-13 12:40:43 -04:00
msc/sm2s_imx8mp Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
mscc Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
myir/mys_6ulx Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
netgear Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
novtech/meerkat96 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
nuvoton Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
nvidia Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
olimex/mx23_olinuxino Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
opalkelly/zynq board: opalkelly: Remove duplicate newlines 2024-07-22 10:51:47 -06:00
openpiton/riscv64 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
out4/o4-imx6ull-nano Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
phytec board: phytec: phycore_imx8mp: Add mtd spi partitions 2024-08-30 15:50:36 -03:00
phytium Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
pine64 rockchip: quartzpro64-rk3588: use DRAM banks from ATAGS 2024-04-26 15:47:05 +08:00
polyhex/imx8mp_debix_model_a Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
powkiddy/x55 board: rockchip: add Powkiddy X55 2024-05-25 10:28:05 +08:00
purism/librem5 Merge patch series "provide names for emmc hardware partitions" 2024-09-05 12:13:24 -06:00
qca Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
qualcomm board: qualcomm: Remove duplicate newlines 2024-07-22 10:51:47 -06:00
radxa board: rockchip: Add Radxa ROCK 5 ITX 2024-08-12 15:43:44 +08:00
raidsonic/ib62x0 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
raspberrypi/rpi Merge tag 'rpi-2024.10-rc1' of https://source.denx.de/u-boot/custodians/u-boot-raspberrypi 2024-07-12 11:06:10 -06:00
renesas Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
rikomagic/mk808 boards: Remove empty BOARD_SPECIFIC_OPTIONS 2024-03-13 12:40:43 -04:00
rockchip board: rockchip: Add Radxa ROCK 3B 2024-08-09 18:35:23 +08:00
ronetix arm: ronetix: Avoid accessing global_data fb_base 2024-08-26 14:05:38 -06:00
sagem/f@st1704 board: Remove essentially empty board files and Makefiles 2023-10-09 15:24:31 -04:00
samsung board: samsung: e850-96: Load LDFW firmware on board init 2024-07-24 16:37:09 +09:00
sandbox scripts/Makefile.lib: EFI: Use capsule CRT instead of ESL file 2024-07-14 09:56:24 +02:00
schneider Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
Seagate Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
seeed Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
sfr/nb4_ser board: Remove essentially empty board files and Makefiles 2023-10-09 15:24:31 -04:00
sielaff/imx6dl-sielaff Kconfig: Centralize prompting for SYS_CONFIG_NAME 2024-02-27 14:18:54 -05:00
siemens global_data: Convert have_console into a flag 2024-08-26 14:05:38 -06:00
sifive board: sifive: unmatched: remove extra space in fdtfile value 2024-07-22 11:15:11 +08:00
silinux/ek874 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
sipeed/maix Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
skyworth/hc2910-2aghd05 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
socionext/developerbox Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
socrates board: socrates: Remove duplicate newlines 2024-07-22 10:51:47 -06:00
softing board: vining_2000: convert to DM_I2C 2024-08-09 06:27:27 +02:00
solidrun Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
somlabs/visionsom-6ull Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
sophgo/milkv_duo board: milkv_duo: Add init code for Milk-V Duo ethernet 2024-05-01 22:46:39 +08:00
sr1500 board: sr1500: Remove duplicate newlines 2024-07-22 10:51:47 -06:00
st Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
starfive/visionfive2 board: starfive: support Pine64 Star64 board 2024-05-30 16:01:00 +08:00
ste/stemmy Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
storopack/smegw01 Merge patch series "provide names for emmc hardware partitions" 2024-09-05 12:13:24 -06:00
sunxi sunxi: h616: add Tanix TX1 support 2024-08-06 11:19:48 +01:00
Synology arm: mvebu: Enable bootstd and other modernization for Synology DS414 (Armada XP) board 2024-07-15 08:42:04 +02:00
synopsys board: synopsys: Remove duplicate newlines 2024-07-22 10:51:47 -06:00
sysam Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
tbs/tbs2910 global: Move remaining CONFIG_SYS_SDRAM_* to CFG_SYS_SDRAM_* 2022-12-05 16:06:07 -05:00
tcl/sl50 am33xx: Use regular spl_board_init instead of am33xx_spl_board_init 2024-08-06 18:33:17 -06:00
technexion Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
terasic board: terasic: Remove duplicate newlines 2024-07-22 10:51:47 -06:00
thead/th1520_lpi4a Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
theadorable board: theadorable: Remove duplicate newlines 2024-07-22 10:51:47 -06:00
thecus/n2350 arm: mvebu: Enable gpio-fan for Thecus N2350 board 2023-07-13 10:26:27 +02:00
theobroma-systems rockchip: remove support for Theobroma Systems RK3368 Lion 2024-07-17 14:48:18 +08:00
ti Merge patch series "Add support for Ethernet Boot on SK-AM62" 2024-08-30 15:55:06 -06:00
timll/devkit8000 arm: Remove devkit3250 board 2024-07-23 10:37:48 -06:00
topic/zynq
toradex board: apalis-imx8: add reset code 2024-08-23 14:48:43 -03:00
tplink/wdr4300 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
tq/tqma6 tqma6_mba6: Remove UART board code 2024-08-23 14:49:44 -03:00
traverse Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
turing/turing-rk1-rk3588 rockchip: turing-rk1-rk3588: use DRAM banks from ATAGS 2024-04-26 15:47:05 +08:00
udoo udoo-neo: Do not print devicetree model 2024-07-22 17:55:35 -03:00
vamrs/rock960_rk3399 Merge tag 'u-boot-rockchip-20240315' of https://source.denx.de/u-boot/custodians/u-boot-rockchip into next 2024-03-15 09:15:31 -04:00
variscite Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
vocore/vocore2 board: Remove essentially empty board files and Makefiles 2023-10-09 15:24:31 -04:00
vscom/baltos am33xx: Use regular spl_board_init instead of am33xx_spl_board_init 2024-08-06 18:33:17 -06:00
wandboard Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
warp7 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
wexler/qc750 board: wexler: qc750: add WEXLER Tab 7t support 2024-07-05 10:18:36 +03:00
work-microwave/work_92105 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
xen/xenguest_arm64 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00
xilinx zynq: lmb: do not add to lmb map before relocation 2024-09-03 14:08:50 -06:00
xunlong/orangepi-3b-rk3566 board: rockchip: Add Xunlong Orange Pi 3B 2024-08-09 18:35:24 +08:00
zyxel Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet" 2024-05-20 13:35:03 -06:00