
-----Original Message----- From: U-Boot u-boot-bounces@lists.denx.de On Behalf Of Heiko Schocher Sent: Wednesday, October 16, 2019 9:26 AM To: U-Boot Mailing List u-boot@lists.denx.de Subject: [U-Boot] [PATCH v2 0/9] powerpc: convert socrates board to DM
convert the socrates board to use DM.
needed pending PCI patch https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fpatchwo rk.ozlabs.org%2Fpatch%2F1176108%2F&data=02%7C01%7Cpriyanka.jain %40nxp.com%7Cd938ac783e094919420008d751eccfd3%7C686ea1d3bc2b4c6fa 92cd99c5c301635%7C0%7C0%7C637067949868856596&sdata=R0csZibE6 UBNyNR7FKQgmLNQ7ABggMirfCsY2Cs6j4c%3D&reserved=0
fixes compiler warnings: ===================== WARNING ====================== This board does not use CONFIG_DM. CONFIG_DM will be compulsory starting with the v2020.01 release. Failure to update may result in board removal. See doc/driver-model/migration.rst for more info. ==================================================== ===================== WARNING ====================== This board does not use CONFIG_DM_USB. Please update the board to use CONFIG_DM_USB before the v2019.07 release. Failure to update by the deadline may result in board removal. See doc/driver-model/MIGRATION.txt for more info. ==================================================== ===================== WARNING ====================== This board does not use CONFIG_DM_PCI Please update the board to use CONFIG_DM_PCI before the v2019.07 release. Failure to update by the deadline may result in board removal. See doc/driver-model/MIGRATION.txt for more info. ==================================================== ===================== WARNING ====================== This board does not use CONFIG_DM_VIDEO Please update the board to use CONFIG_DM_VIDEO before the v2019.07 release. Failure to update by the deadline may result in board removal. See doc/driver-model/MIGRATION.txt for more info. ====================================================
Travis build: https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Ftravis- ci.org%2Fhsdenx%2Fu-boot- test%2Fbuilds%2F597488733&data=02%7C01%7Cpriyanka.jain%40nxp.co m%7Cd938ac783e094919420008d751eccfd3%7C686ea1d3bc2b4c6fa92cd99c5c 301635%7C0%7C0%7C637067949868856596&sdata=nxIa1Ur2OMMZBmFz iCT8lmc%2Bm14CFb29B9dOsucvyas%3D&reserved=0
Changes in v2:
- use separate PCI driver for mpc85xx as Z.q. Hou mentioned:
and drop the patchseries: pci: pcie_fsl: add support for none PCIe devices
https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fpatchwo rk.ozlabs.org%2Fproject%2Fuboot%2Flist%2F%3Fseries%3D134976&data= 02%7C01%7Cpriyanka.jain%40nxp.com%7Cd938ac783e094919420008d751eccf d3%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0%7C0%7C6370679498688565 96&sdata=hPUIpB%2FRyEQkK94MP3%2F1mB8RNg9FyyL%2Bo0DqDHUQk4 k%3D&reserved=0 END
Heiko Schocher (9): mpc85xx, socrates: suppress unknown flash warning mpc85xx: add socrates dts from linux mpc85xx, dts, socrates: add u-boot specific dtsi mpc85xx, socrates: add DM support mpc85xx, socrates: get rid of DM_USB warning mpc85xx, socrates: disable VIDEO mpc85xx, socrates: enable DM I2C mpc85xx, socrates: enable DM serial mpc85xx, socrates: add DM PCI support
arch/powerpc/dts/Makefile | 1 + arch/powerpc/dts/socrates-u-boot.dtsi | 40 +++ arch/powerpc/dts/socrates.dts | 349 ++++++++++++++++++++++++++ board/socrates/MAINTAINERS | 4 +- board/socrates/law.c | 2 - board/socrates/socrates.c | 222 ++-------------- configs/socrates_defconfig | 24 +- include/configs/socrates.h | 68 +---- 8 files changed, 439 insertions(+), 271 deletions(-) create mode 100644 arch/powerpc/dts/socrates-u-boot.dtsi create mode 100644 arch/powerpc/dts/socrates.dts
-- 2.21.0
U-Boot mailing list U-Boot@lists.denx.de https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.de nx.de%2Flistinfo%2Fu- boot&data=02%7C01%7Cpriyanka.jain%40nxp.com%7Cd938ac783e09491 9420008d751eccfd3%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0%7C0%7C63 7067949868856596&sdata=TDp2Uz0QQfscE2sB4H6XQBNA4jT6rguzrximO6 LSfz0%3D&reserved=0
Series applied to mpc85xx master, awaiting upstream.
Thanks priyankajain