- Mar 25, 2008
-
-
Stefan Roese authored
Signed-off-by:
Stefan Roese <sr@denx.de>
-
Kyungmin Park authored
Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array using a NOR Flash interface. This on-chip integration enables system designers to reduce external system logic and use high-density NAND Flash in applications that would otherwise have to use more NOR components. Flex-OneNAND enables users to configure to partition it into SLC and MLC areas in more flexible way. While MLC area of Flex-OneNAND can be used to store data that require low reliability and high density, SLC area of Flex-OneNAND to store data that need high reliability and high performance. Flex-OneNAND can let users take advantage of storing these two different types of data into one chip, which is making Flex-OneNAND more cost- and space-effective. Signed-off-by:
Kyungmin Park <kyungmin.park@samsung.com>
-
André Schwarz authored
Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is defined. Systems without FEC, i.e. no FEC node in DTB, should be possible. Signed-off-by:
Andre Schwarz <andre.schwarz@matrix-vision.de> Acked-by:
Grant Likely <grant.likely@secretlab.ca>
-
Jon Loeliger authored
Signed-off-by:
Jon Loeliger <jdl@freescale.com>
-
Jon Loeliger authored
Signed-off-by:
Jon Loeliger <jdl@freescale.com>
-
Jon Loeliger authored
Signed-off-by:
Jon Loeliger <jdl@freescale.com>
-
goda.yusuke authored
AX88796L is device of NE2000 compatible. This patch support AX88796L ethernet device. Signed-off-by:
Yusuke Goda <goda.yusuke@renesas.com> Acked-by:
Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
goda.yusuke authored
There are more devices of the NE2000 base. A present code is difficult for us to support more devices. To support more NE2000 clone devices, separated the function. Signed-off-by:
Yusuke Goda <goda.yusuke@renesas.com> Acked-by:
Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
-
Mike Frysinger authored
The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board directory, but it is not board specific, so relocate it to the drivers dir so that other Blackfin ports can utilize it. Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
Mike Frysinger authored
Since the "ssync" instruction may have hardware anomalies associated with it, have the smc91111 driver use the SSYNC macro rather than invoking it directly. We workaround all the anomalies via this macro. Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
Bryan O'Donoghue authored
This patch does some shifting around of OF support on 8xx. Signed-off-by:
Bryan O'Donoghue <bodonoghue@codehermit.ie>
-
Kumar Gala authored
For historical reasons we limited the stack to 256M because some boards could only map that much via BATS. However newer boards are capable of mapping more memory (for example 85xx is capble of doing up to 2G). Signed-off-by:
Kumar Gala <galak@kernel.crashing.org>
-
Bryan O'Donoghue authored
Signed-off-by:
Bryan O'Donoghue <bodonoghue@codehermit.ie>
-
Kumar Gala authored
Add a simple expr style command that will set an env variable as the result of the command. This allows us to do simple math in shell. The following operations are supported: &, |, ^, +, -, *, /. Signed-off-by:
Kumar Gala <galak@kernel.crashing.org>
-
- Mar 24, 2008
-
-
Yuri Tikhonov authored
If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be run on the board, then the SYSMON POST controls the display backlight (doesn't switch backlight ON if POST FAILED, and does switch the backlight ON if PASSED). If not, then the video driver controls the display backlight (just switch ON the backlight upon initialization). Signed-off-by:
Yuri Tikhonov <yur@emcraft.com>
-
Yuri Tikhonov authored
Fix errors in the LWMON5 Sysmon POST for negative temperatures. Signed-off-by:
Yuri Tikhonov <yur@emcraft.com>
-
Wolfgang Denk authored
-
- Mar 23, 2008
-
-
Nobuhiro Iwamatsu authored
In current source code, when the device number of PCI is 0, process PCI bridge without fail. However, when the device number is 0, it is not PCI always bridge. There are times when device of PCI allocates. When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when use this patch. Signed-off-by:
Nobuhiro Iwamatsu <iwamatsu@nigauri.org> Acked-by:
Stefan Roese <sr@denx.de>
-
- Mar 22, 2008
-
-
Wolfgang Denk authored
-
Yuri Tikhonov authored
Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST. Signed-off-by: Yuri Tikhonov <yur@emcraft.com> ---
- Mar 21, 2008
-
- Mar 20, 2008
-
-
Wolfgang Denk authored
plus some coding style cleanup Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Yuri Tikhonov authored
Modify the RTC API to provide one a status for the time reported by the rtc_get() function: 0 - a reliable time is guaranteed, < 0 - a reliable time isn't guaranteed (power fault, clock issues, and so on). The RTC chip drivers are responsible for providing this info if the corresponding chip supports such functionality. If not - always report that the time is reliable. The POST RTC test was modified to detect the RTC faults utilizing this new rtc_get() feature. Signed-off-by:
Yuri Tikhonov <yur@emcraft.com>
-
- Mar 19, 2008
-
-
Martin Krause authored
- insert partition for dtb blob to TQM5200B MTD layout - set env variables dependent on the configured board (TQM5200 or TQM5200B) Signed-off-by:
Martin Krause <martin.krause@tqs.de>
-
Stefan Roese authored
With this patch we don't need that many #ifdef's in the code. It moves the subtraction into the macro and defines a NOP-macro when CONFIG_FLASH_SHOW_PROGRESS is not defined. Signed-off-by:
Stefan Roese <sr@denx.de> Acked-by:
Gerald Van Baren <vanbaren@cideas.com>
-
Jerry Van Baren authored
Signed-off-by:
Gerald Van Baren <vanbaren@cideas.com>
-
David Gibson authored
Since fdt_node_offset_by_compatible() was converted to the new fdt_next_node() iterator, a chunk of initialization code became redundant, but was not removed by oversight. This patch cleans it up. Signed-off-by:
David Gibson <david@gibson.dropbear.id.au>
-
David Gibson authored
Currently the CHECK_HEADER() macro is defined local to fdt_ro.c. However, there are a handful of functions (fdt_move, rw_check_header, fdt_open_into) from other files which could also use it (currently they open-code something more-or-less identical). Therefore, this patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those places. Signed-off-by:
David Gibson <david@gibson.dropbear.id.au>
-
Kumar Gala authored
The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'. Signed-off-by:
Kumar Gala <galak@kernel.crashing.org>
-
Kumar Gala authored
fdt header - Display header info fdt bootcpu <id> - Set boot cpuid fdt memory <addr> <size> - Add/Update memory node fdt rsvmem print - Show current mem reserves fdt rsvmem add <addr> <size> - Add a mem reserve fdt rsvmem delete <index> - Delete a mem reserves Signed-off-by:
Kumar Gala <galak@kernel.crashing.org>
-
David Gibson authored
fdt_add_subnode_namelen() has a bug if asked to add a subnode to a node which has NOP tags interspersed with its properties. In this case fdt_add_subnode_namelen() will put the new subnode before the first NOP tag, even if there are properties after it, which will result in an invalid blob. This patch fixes the bug, and adds a testcase for it. Signed-off-by:
David Gibson <david@gibson.dropbear.id.au>
-
David Gibson authored
This patch adds an fdt_next_node() function which can be used to iterate through nodes of the tree while keeping track of depth. This function is used to simplify the iteration code in a lot of other functions, and is also exported for use by library users. Signed-off-by:
David Gibson <david@gibson.dropbear.id.au>
-
David Gibson authored
This patch adds an fdt_set_name() function to libfdt, mirroring fdt_get_name(). This is a r/w function which alters the name of a given device tree node. Signed-off-by:
David Gibson <david@gibson.dropbear.id.au>
-
- Mar 18, 2008
-
-
Yuri Tikhonov authored
Signed-off-by:
Dmitry Rakhchev <rda@emcraft.com> Signed-off-by:
Yuri Tikhonov <yur@emcraft.com>
-
Yuri Tikhonov authored
Backlight was switched on even when temperature was too low. Signed-off-by:
Dmitry Rakhchev <rda@emcraft.com> Signed-off-by:
Yuri Tikhonov <yur@emcraft.com>
-
Yuri Tikhonov authored
The patch introduces the alternative configuration of the log buffer for the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory), the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ..., PPC440EPX_GPT0_COMP5). To enable this, alternative, configuration the U-Boot board configuration file for lwmon5 includes the definitions of alternative addresses for header (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR). The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set, and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h). Signed-off-by:
Yuri Tikhonov <yur@emcraft.com>
-