From: "Pali Rohár" <pali@kernel.org>
To: Tom Rini <trini@konsulko.com>
Cc: u-boot@lists.denx.de
Subject: [PATCH 0/6] board: freescale: p1_p2_rdb_pc: Fix sizes of LBC peripherals
Date: Sun, 1 May 2022 16:23:51 +0200 [thread overview]
Message-ID: <20220501142357.16778-1-pali@kernel.org> (raw)
On LBC (Local Bus Controller) are connected memory peripherals (NOR,
NAND, CPLD). Fix size mappings of all these peripherals. Size needs to
be correctly set in TLB, LAW and LBC OR registers. Use named macros for
human readable configuration.
Pali Rohár (6):
Revert "Convert CONFIG_SYS_BR0_PRELIM et al to Kconfig"
Revert "p1_p2_rdb: Remove CONFIG_CPLD_[BO]R_PRELIM"
mpc85xx: Replace magic values in BR/OR PRELIM config options by proper
C macros
board: freescale: p1_p2_rdb_pc: Fix size of CPLD mapping
board: freescale: p1_p2_rdb_pc: Fix size of FLASH NOR mapping
board: freescale: p1_p2_rdb_pc: Fix size of NAND mapping
README | 11 ++
arch/powerpc/cpu/mpc83xx/elbc/elbc.h | 170 +++++++++++++++++++
arch/powerpc/cpu/mpc8xx/Kconfig | 85 ++++++++++
board/freescale/p1_p2_rdb_pc/law.c | 10 +-
board/freescale/p1_p2_rdb_pc/tlb.c | 20 ++-
configs/M5272C3_defconfig | 24 ---
configs/MCR3000_defconfig | 47 +++--
configs/MPC837XERDB_defconfig | 9 -
configs/MPC8548CDS_36BIT_defconfig | 12 --
configs/MPC8548CDS_defconfig | 12 --
configs/MPC8548CDS_legacy_defconfig | 12 --
configs/P1020RDB-PC_36BIT_NAND_defconfig | 12 --
configs/P1020RDB-PC_36BIT_SDCARD_defconfig | 9 -
configs/P1020RDB-PC_36BIT_SPIFLASH_defconfig | 9 -
configs/P1020RDB-PC_36BIT_defconfig | 9 -
configs/P1020RDB-PC_NAND_defconfig | 12 --
configs/P1020RDB-PC_SDCARD_defconfig | 9 -
configs/P1020RDB-PC_SPIFLASH_defconfig | 9 -
configs/P1020RDB-PC_defconfig | 9 -
configs/P1020RDB-PD_NAND_defconfig | 12 --
configs/P1020RDB-PD_SDCARD_defconfig | 9 -
configs/P1020RDB-PD_SPIFLASH_defconfig | 9 -
configs/P1020RDB-PD_defconfig | 9 -
configs/P2020RDB-PC_36BIT_NAND_defconfig | 12 --
configs/P2020RDB-PC_36BIT_SDCARD_defconfig | 9 -
configs/P2020RDB-PC_36BIT_SPIFLASH_defconfig | 9 -
configs/P2020RDB-PC_36BIT_defconfig | 9 -
configs/P2020RDB-PC_NAND_defconfig | 12 --
configs/P2020RDB-PC_SDCARD_defconfig | 9 -
configs/P2020RDB-PC_SPIFLASH_defconfig | 9 -
configs/P2020RDB-PC_defconfig | 9 -
configs/P2041RDB_NAND_defconfig | 9 -
configs/P2041RDB_SDCARD_defconfig | 6 -
configs/P2041RDB_SPIFLASH_defconfig | 6 -
configs/P2041RDB_defconfig | 6 -
configs/P3041DS_NAND_defconfig | 12 --
configs/P3041DS_SDCARD_defconfig | 9 -
configs/P3041DS_SPIFLASH_defconfig | 9 -
configs/P3041DS_defconfig | 9 -
configs/P4080DS_SDCARD_defconfig | 9 -
configs/P4080DS_SPIFLASH_defconfig | 9 -
configs/P4080DS_defconfig | 9 -
configs/P5040DS_NAND_defconfig | 12 --
configs/P5040DS_SDCARD_defconfig | 9 -
configs/P5040DS_SPIFLASH_defconfig | 9 -
configs/P5040DS_defconfig | 9 -
configs/cobra5272_defconfig | 24 ---
configs/gazerbeam_defconfig | 9 -
configs/ids8313_defconfig | 12 --
configs/kmcoge5ne_defconfig | 12 --
configs/kmeter1_defconfig | 9 -
configs/kmopti2_defconfig | 12 --
configs/kmsupx5_defconfig | 9 -
configs/kmtegr1_defconfig | 9 -
configs/kmtepr2_defconfig | 12 --
configs/socrates_defconfig | 12 --
configs/tuge1_defconfig | 9 -
configs/tuxx1_defconfig | 12 --
drivers/ddr/fsl/Kconfig | 92 ----------
include/configs/M5272C3.h | 20 +++
include/configs/MPC8548CDS.h | 17 ++
include/configs/P2041RDB.h | 25 ++-
include/configs/cobra5272.h | 30 ++++
include/configs/corenet_ds.h | 30 +++-
include/configs/p1_p2_rdb_pc.h | 46 ++++-
include/configs/socrates.h | 9 +
scripts/config_whitelist.txt | 18 ++
67 files changed, 498 insertions(+), 669 deletions(-)
--
2.20.1
next reply other threads:[~2022-05-01 14:26 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-01 14:23 Pali Rohár [this message]
2022-05-01 14:23 ` [PATCH 1/6] Revert "Convert CONFIG_SYS_BR0_PRELIM et al to Kconfig" Pali Rohár
2022-05-01 14:39 ` Tom Rini
2022-05-01 14:44 ` Pali Rohár
2022-05-01 15:14 ` Tom Rini
2022-05-01 15:33 ` Pali Rohár
2022-05-01 16:17 ` Tom Rini
2022-05-12 16:01 ` Tom Rini
2022-05-12 16:05 ` Pali Rohár
2022-05-01 14:23 ` [PATCH 2/6] Revert "p1_p2_rdb: Remove CONFIG_CPLD_[BO]R_PRELIM" Pali Rohár
2022-05-01 14:38 ` Tom Rini
2022-05-01 14:40 ` Pali Rohár
2022-05-01 14:23 ` [PATCH 3/6] mpc85xx: Replace magic values in BR/OR PRELIM config options by proper C macros Pali Rohár
2022-05-01 14:23 ` [PATCH 4/6] board: freescale: p1_p2_rdb_pc: Fix size of CPLD mapping Pali Rohár
2022-05-01 14:23 ` [PATCH 5/6] board: freescale: p1_p2_rdb_pc: Fix size of FLASH NOR mapping Pali Rohár
2022-05-01 14:23 ` [PATCH 6/6] board: freescale: p1_p2_rdb_pc: Fix size of NAND mapping Pali Rohár
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220501142357.16778-1-pali@kernel.org \
--to=pali@kernel.org \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox