aboutsummaryrefslogtreecommitdiffstats
path: root/bsp/fsl-mpc8315e-rdb
AgeCommit message (Collapse)Author
2024-02-22BSP: remove from all - latencytop feature inclusionPaul Gortmaker
Consider this 5+ year old commit commit bcbc7bbc4fb967d8d4ae6333f71b73491a80b94e Author: Alexander Kanavin <alexander.kanavin@linux.intel.com> Date: Thu Mar 1 16:00:41 2018 +0200 latencytop: remove recipe Last commit and release were in 2009; website is down; it's a dead project. (From OE-Core rev: 36aae56e7f86a4d5ce93e4528e7dcc42f60c705e) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Given that, it seems sensible to drop it from default inclusion across the BSPs. I've left the feature itself, so anyone who still cares can easily manually add it still. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2022-04-03global: replace is not set with =nBruce Ashfield
Upstream is dropping support for is not set, so we adjust our configs accordingly. Commit: https://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git/commit/?h=for-next&id=55de8686df7ed2b5237867b130e30c728bbd9db4 kconfig: change .config format to use =n instead of "is not set" The .config file uses "# CONFIG_FOO is not set" form to represent disabled options. In the old days, it was useful because the .config was directly included from Makefiles. For example, you can use "ifdef CONFIG_FOO" in Makefiles to check if the option is enabled. Commit c955ccafc38e ("kconfig: fix .config dependencies") introduced include/config/auto.conf, which mirrors the .config, but trims down all disabled options. Since then, include/config/auto.conf defines CONFIG options during the build. The .config is used just for storing the user's configuration. I do not see a strong reason to use a particular pattern of comment for disabled options. With this commit, Kconfig will output disable options in a more natural form, "CONFIG_FOO=n". Kconfig accepts both "# CONFIG_FOO is not set" and "CONFIG_FOO=n" as a valid input. You do not need to update arch/*/configs/*_defconfig files for now. "git bisect" should be able to cross the commit in both ways without any issue. A problem may occur if you parse the .config for the "# ... is not set" patterns. I adjusted streamline_config.pl, merge_config.sh, scripts/kconfig/tests/. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Reviewed-by: Boris Kolpackov <boris@codesynthesis.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2019-10-07meta: add SPDX License Identifier and updates 00-README with License policyYann CARDAILLAC
Signed-off-by: Yann CARDAILLAC <ycnakajsph@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2019-08-30fsl-mpc8315e-rdb/beaglebone: Replace CONFIG_MTD_NAND with CONFIG_MTD_RAW_NANDKevin Hao
The kernel option MTD_NAND has been renamed to MTD_RAW_NAND in the kernel commit 72c5af002723 ("mtd: rawnand: Clarify Kconfig entry MTD_NAND"), so adjust the cfg file according to this change. Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2019-03-06mpc8315e-rdb: Enable the CONFIG_MTD_PHYSMAPKevin Hao
This is needed by the CONFIG_MTD_PHYSMAP_OF. Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2018-08-24mpc8315e-rdb: Drop the obsolete kernel optionsKevin Hao
Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2018-03-22mpc8315e-rdb: Enable Realtek PHY driverKevin Hao
A Realtek RTL8211B PHY is integrated on mpc8315erdb board. It works pretty well with the genphy driver. But now we apply a patch for the Realtek PHY driver in order to fix an Ethernet broken issue on this board. So enable this chip specific driver to make sure that fix can take effect. Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2015-11-19fsl-mpc8315e-rdb: Enable EEPROMBruce Ashfield
1/1 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: fsl-mpc8315e-rdb: Enable EEPROM Date: Thu, 19 Nov 2015 00:48:31 -0500 Update the mpc8315erdb.dts to contain the eeprom device information. Coupled with adding "MISC_DEVICES" into the kernel configuration, we have a working eeprom. Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2014-06-15mpc8315e-rdb: enable the flash fsKevin Hao
There is a 8M NOR and 32M NAND flash on this board. So enable the flash filesystem for convenience. Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2014-06-15mpc8315e-rdb: enable the NAND driverKevin Hao
There is a 32M NAND flash on this board, so enable the corresponding NAND driver by default. Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2013-08-213.10: remove obsolete CONFIG_MTD_CHARBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2013-02-12meta: remove obsolete CONFIG_USB_DEVICEFSBruce Ashfield
commit fb28d58b72aa9215b26f1d5478462af394a4d253 Author: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Date: Wed Apr 25 17:15:29 2012 -0700 USB: remove CONFIG_USB_DEVICEFS This option has been deprecated for many years now, and no userspace tools use it anymore, so it should be safe to finally remove it. Reported-by: Kay Sievers <kay@vrfy.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2013-01-16meta: convert ktype/preempt-rt to explicit ktypes/preempt-rt/preempt-rt.sccBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2013-01-16meta: convert ktype/standard to explicit ktypes/standard/standard.sccBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-09-17meta: use profiling and latencytop features in yocto bspsTom Zanussi
Where appropriate, add the standard profiling and latencytop features to the meta-yocto-bsp BSPs. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2012-08-15mpc8315: remove now obsolete CONFIG_MISC_DEVICESPaul Gortmaker
Since this BSP now uses 3.4.x kernel, this option is obsolete and generates a warning. The option was removed in mainline: commit 7c5763b8453a94871d356f20df30f350f8631e8b Author: Fabio Estevam <festevam@gmail.com> Date: Tue Jan 24 02:11:25 2012 -0200 drivers: misc: Remove MISC_DEVICES config option as of v3.3-rc4 and so is gone in v3.4.x codebase. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2012-08-08fsl-mpc8315e-rdb: replace leading dot with hash in cfg fileMichel Thebeau
Hash is the correct comment format. Signed-off-by: Michel Thebeau <michel.thebeau@windriver.com>
2012-06-15cfg: add a fs dir for filesystem related configsPaul Gortmaker
Things are starting to get a bit busy in the cfg dir. We may not want to mirror every kernel path on a 1:1 basis, but at least having a fs dir for filesystem cruft makes sense. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-04-25fsl-mpc8315e-rdb: add mpc8315e-rdb as a valid boardBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-04-13meta: Clean up BSPs kernel configYang Shi
Clean up some QEMU and non-x86 BSPs kernel config, including qemuarm qemuppc qemux86 beagleboard mpc8315e_rdb Only obsolete/invalid kernel configs are removed. Signed-off-by: Yang Shi <yang.shi@windriver.com>
2012-01-27meta: add feature descriptions to optional/addon featuresBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-01-18bsp: update all BSPs to use include and branchBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2011-11-14config: add # in front of all bannersBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2011-08-09meta/rt: mpc8315 preempt-rt supportDarren Hart
Create the preempt-rt definition for mpc8315 support. This configuration re-uses existing branches since no board specific changes are currently required. If board specific fixes are required, this definition will be updated. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2011-08-10boot: move -Os patch to standard branchBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2011-07-18mpc8315erdb: fix ethernet at boot timeBruce Ashfield
1/1 [ Author: Paul Eggleton Email: paul.eggleton@linux.intel.com Subject: mpc8315erdb: fix ethernet at boot time Date: Fri, 15 Jul 2011 16:12:04 +0100 Set the default MAC addresses for the two ethernet ports on the MPC8315E-RDB to the factory default values, allowing ethernet to come up correctly during boot without upgrading U-Boot. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2011-06-10yocto: 3.0-rc2 changesBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2011-06-03fsl-mpc8315e-rdb: Enable EEPROMBruce Ashfield
1/1 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: fsl-mpc8315e-rdb: Enable EEPROM Date: Fri, 3 Jun 2011 10:07:20 -0400 Update the mpc8315erdb.dts to contain the eeprom device information. Coupled with adding "MISC_DEVICES" into the kernel configuration, we have a working eeprom. Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2011-06-03meta/fsl-mpc8315e-rdb: Enable EEPROMBruce Ashfield
Enable "MISC_DEVICES" kernel configuration Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2011-05-24meta: replace open-coded dma engine options with dmaengine featureTom Zanussi
Replace open-coded DMA_ENGINE and DMADEVICES options with the dmaengine feature. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2011-04-04yocto: 2.6.39 patch refreshesBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2011-04-04yocto: import of the kernel content/metadata from v2.6.39Paul Gortmaker
Roughly corresponds to: commit db575247e16e50ce5160e18907e253c6a43b6feb Author: Bruce Ashfield <bruce.ashfield@windriver.com> Date: Mon Apr 4 00:27:55 2011 -0400 yocto: 2.6.39 baseline Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ...in the full history repo, but with some extraneous files that were deleted post db575247 deleted right here and now at the baseline instead. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>