summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-04-28apalis_imx6.c: mux pin GPIO18 to GPIO inputtoradex_imx6Max Krummenacher
The bootrom sets the iomux to vselect, potentially connecting two outputs. Set this back to GPIO in early init.
2014-04-02apalis_imx6.c: don't provide CONFIG_REVISION_TAGApalis_iMX6_LinuxImageV2.2Beta1_20140404Max Krummenacher
i.MX6 uses the 'standard' board revision for things, i.e. video decoding no longer works. so don't interfere with the Apalis iMX6 HW Revision */
2014-04-02config: add correct machine type for Apalis iMX6Max Krummenacher
2014-04-02environment: add some video mode templatesMax Krummenacher
2014-04-02board: add Toradex configblock handlingMax Krummenacher
2014-04-02do_fuse: fix help textMax Krummenacher
while at it remove warnings
2014-04-01do_fuse: remove fusing of ethaddrMax Krummenacher
We decided to have the MAC addr only in the configblock
2014-03-14pf0100: Use GPIO1 to control VpgmMax Krummenacher
2014-03-10boot: try emmcboot, nfsboot, then commandlineMax Krummenacher
change the bootcommand to the following boot order - emmcboot - nfsboot - enable usb keyboard and go to command prompt
2014-03-10imx6_fuse: add helpers for OTP fusing during module productionMax Krummenacher
2014-03-10pf0100: only program unprogrammed OTPMax Krummenacher
- add logic to check for an unprogrammed PMIC before programming - add #ifdef debug section to dump all PMIC registers
2014-03-06apalis_imx6: set backlight pins to on for EDT 7"Max Krummenacher
2014-02-19apalis_imx6: unconditionally set backlight pins to onMax Krummenacher
2014-02-18pmic: Use Apalis GPIO1 for programming voltage cntrlMax Krummenacher
2014-02-18config: add env var for loading update scriptMax Krummenacher
- add env var for loading update script - enable fatwrite fatwrite emmits errors but still does its job ERROR: v7_dcache_inval_range - start address is not aligned - 0x4f85b630
2014-02-17environment: fb timings for emb.worldMax Krummenacher
2014-02-17pmic: changed timing values to delay reset to 100msMax Krummenacher
2014-02-07config: setup 4 fbdev, make nfsboot the default for nowMax Krummenacher
2014-02-07config: increase maxargsMax Krummenacher
- setting bootargs fails without this
2014-02-07config: account for changed mmc orderMax Krummenacher
2014-02-07mmc: eMMC is now first device, fix SD1 cardMax Krummenacher
- order the SD Controllers. eMMC, MMC1, SD1 - SD1 is on Controller 2, but some references went to Controller 4
2014-01-31config: replaced bootscript with hardcoded bootingMax Krummenacher
- added emmcboot (internal) sdboot (external card) nfsboot options - whitespace cleanup
2014-01-31pmic: pmic otp programming, add 'try before buy'Max Krummenacher
2014-01-28pmic: initial code for pmic otp programmingMax Krummenacher
- move current code in its own source file - add OTP programming code, results to be tested - add OTP settings file, generated from excel check sed commands to convert from text output to c-code
2014-01-27pinmuxing: fix lcd, analog rgb pinmuxingMax Krummenacher
2014-01-25apalis_imx6: integrate usb keyboardMarcel Ziswiler
Integrate USB keyboard support and enable VGA console. This allows for operating U-Boot without any regular serial debug console. While at it clean out some more irrelevant stuff.
2014-01-25apalis_imx6: fix ethernetMarcel Ziswiler
Fix Ethernet by limiting Micrel KSZ9031 PHY to 10/100 Mbps for now. This has been ported from the following mainline commit for the uDoo board: 078813d21db0600d440625327a1728c32e9fcc90 While at it clean out some more irrelevant stuff.
2014-01-22Apalis imx6: further bringupMax Krummenacher
- Switched on some PMIC rails until we fuse the PMIC - Added/corrected pinmuxings - ETH still not working - Corrected board name were Colibri was used instead of Apalis
2014-01-16config: remove further SPI-Flash related stuffMax Krummenacher
2014-01-16u-boot: add initial Apalis iMX6Max Krummenacher
Used Nitrogen6x as a starting point
2013-10-16Prepare v2013.10v2013.10Tom Rini
Signed-off-by: Tom Rini <trini@ti.com>
2013-10-16microblaze: Fix watchdog initializationMichal Simek
The patch: "blackfin: Move blackfin watchdog driver out of the blackfin arch folder." (sha1: e9a389a18477c1c57a0b30e9ea8f4d38c6e26e63) changed hw_watchdog_init() prototype which didn't match with Microblaze one. This patch fixes the driver and Microblaze initialization. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
2013-10-16common: fsl: Fix broken SPDX-License-Identifier changeMichal Simek
This bug was introduced by: "Add GPL-2.0+ SPDX-License-Identifier to source files" (sha1: 1a4596601fd395f3afb8f82f3f840c5e00bdd57a) Signed-off-by: Michal Simek <michal.simek@xilinx.com>
2013-10-15mtd: fix warnings due to 64-bit partition supportScott Wood
commit 39ac34473f3c96e77cbe03a49141771ed1639486 ("cmd_mtdparts: use 64 bits for flash size, partition size & offset") introduced warnings in a couple places due to printf formats or pointer casting. This patch fixes the warnings pointed out here: http://lists.denx.de/pipermail/u-boot/2013-October/164981.html Signed-off-by: Scott Wood <scottwood@freescale.com> Cc: York Sun <yorksun@freescale.com> Cc: Stefan Roese <sr@denx.de> Cc: Paul Burton <paul.burton@imgtec.com> Cc: Tom Rini <trini@ti.com>
2013-10-16spi: mxc_spi: Fix double incrementing read pointer for unaligned buffersTimo Herbrecher
If dout buffer is not 32 bit-aligned or data to transmit is not multiple of 32 bit the read data pointer is already incremented on single byte reads. Signed-off-by: Timo Herbrecher <t.herbrecher@gateware.de> Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
2013-10-16sf: probe: Add missing Atmel at25df321 flashBo Shen
As the spi flash transfer to multiple parts, it is forgot to add Atmel AT25DF321 spi flash support, which broken several Atmel EK boards which this chip. So, add it Signed-off-by: Bo Shen <voice.shen@atmel.com> Reviewed-by: Jagannadha Sutradharudu Teki <jagannadh.teki@gmail.com>
2013-10-16spi: Add GPL-2.0+ SPDX-License-Identifier for missing filesJagannadha Sutradharudu Teki
Added GPL-2.0+ SPDX-License-Identifier for missed spi source files. Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
2013-10-16sf: Add GPL-2.0+ SPDX-License-Identifier for missing onesJagannadha Sutradharudu Teki
Added GPL-2.0+ SPDX-License-Identifier for missed sf source files. Signed-off-by: Jagannadha Sutradharudu Teki <jagannadh.teki@gmail.com> Signed-off-by: Bo Shen <voice.shen@atmel.com>
2013-10-16sf: Minor cleanups.Jagannadha Sutradharudu Teki
- Add comments. - Renamed few macros. - Add tabs. Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com> Signed-off-by: Bo Shen <voice.shen@atmel.com>
2013-10-16sf_ops: Unify bank_sel calculation codeJagannadha Sutradharudu Teki
Unified the bank_sel calculation code for erase and write ops. Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
2013-10-15buildman: Use env to pick the python from $PATHJagannadha Sutradharudu Teki
python used in buildman doesn't need to be placed in /usr/bin/python, So use env to ensure that the interpreter will pick the python from environment. Usefull with several versions of python's installed on system. Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com> Acked-by: Simon Glass <sjg@chromium.org>
2013-10-14Merge branch 'buildman' of git://git.denx.de/u-boot-x86Tom Rini
2013-10-14cmd_sandbox.c: Update for do_(load|save) not taking a number baseTom Rini
Signed-off-by: Tom Rini <trini@ti.com>
2013-10-14Prevent null pointer dereference originating in cmd_pxe.cSteven Falco
Pass a valid cmdtp into do_tftpb(), do_ext2load(), and do_get_fat(), to avoid possible crashes due to null pointer dereferencing. Commit d7884e047d08447dfd1374e9fa2fdf7ab36e56f5 does not go far enough. There is still at least one call chain that can result in a crash. The do_tftpb(), do_ext2load(), and do_get_fat() functions expect a valid cmdtp. Passing in NULL is particularly bad in the do_tftpb() case, because eventually boot_get_kernel() will be called with a NULL cmdtp: do_tftpb() -> netboot_common() -> bootm_maybe_autostart() -> do_bootm() -> do_bootm_states() -> bootm_find_os() -> boot_get_kernel() Around line 991 in cmd_bootm.c, boot_get_kernel() will dereference the null pointer, and the board will crash. Signed-off-by: Steven A. Falco <stevenfalco@gmail.com>
2013-10-14Coding Style cleanup: drop some excessive empty linesWolfgang Denk
Signed-off-by: Wolfgang Denk <wd@denx.de>
2013-10-14Coding Style cleanup: remove trailing empty linesWolfgang Denk
Signed-off-by: Wolfgang Denk <wd@denx.de>
2013-10-14Coding Style cleanup: replace leading SPACEs by TABsWolfgang Denk
Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Drop changes for PEP 4 following python tools] Signed-off-by: Tom Rini <trini@ti.com>
2013-10-14Coding Style cleanup: remove trailing white spaceWolfgang Denk
Signed-off-by: Wolfgang Denk <wd@denx.de>
2013-10-14ARM: omap4-panda: Add MAC address creation for pandaDan Murphy
Add a MAC address create based on the OMAP die ID registers. Then poplulate the ethaddr enviroment variable so that the device tree alias can be updated prior to boot. Signed-off-by: Dan Murphy <dmurphy@ti.com>
2013-10-14pmic: max77686: fix the wrong offsetJaehoon Chung
0x1D is reserved. So BUCK3DVS1 is started from 0x1e. Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>