- Nov 21, 2008
-
-
Stelian Pop authored
At least some (old ?) versions of the AT91Bootstrap do not set up the PLLB correctly to 48 MHz in order to make USB host function correctly. This patch sets up the PLLB to the same values Linux uses, and makes USB work ok on the following CPUs: - AT91CAP9 - AT91SAM9260 - AT91SAM9263 This patch also defines CONFIG_USB_STORAGE and CONFIG_CMD_FAT for all the relevant AT91CAP9/AT91SAM9 atmel boards. Signed-off-by:
Stelian Pop <stelian@popies.net> Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-
Stelian Pop authored
Introduce AT91_CPU_CLOCK and use it for displaying the CPU speed in the LCD driver. Also make AT91_MAIN_CLOCK and AT91_MASTER_CLOCK reflect the corresponding board clocks. Signed-off-by:
Stelian Pop <stelian@popies.net>
-
- Nov 18, 2008
-
-
Selvamuthukumar authored
Most of the bss initialization loop increments 4 bytes at a time. And the loop end is checked for an 'equal' condition. Make the bss end address aligned by 4, so that the loop will end as expected. Signed-off-by:
Selvamuthukumar <selva.muthukumar@e-coninfotech.com> Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
-
- Nov 11, 2008
-
-
Becky Bruce authored
address-cells defaults to 2, not 1; so in the unlikely event that it isn't specified, this patch is required for correct operation. Signed-off-by:
Becky Bruce <becky.bruce@freescale.com>
-
- Nov 10, 2008
-
-
Becky Bruce authored
Doing trap_init immediately once we're running from RAM means we're no longer dependent on the physical location of the flash on non-BookE platforms. Before trap_init, those platforms switch to real mode and go to 0xfff00100 on exception. After the switch, they go to 0x00000100 This makes it easier to move the flash location. Signed-off-by:
Becky Bruce <becky.bruce@freescale.com>
-
Becky Bruce authored
Since we've changed the memory map of the board, be nice and add some checking to try to catch out-of-date .dts files. We do this by checking the CCSRBAR location in the .dts and comparing it to the CCSRBAR location in u-boot. If they don't match, a warning msg is printed. This isn't foolproof, but it's simple and will catch most of the cases where an out-of-date .dts is present, including all of the cases where a new u-boot is used with an old standard MPC8641 .dts file as supplied with Linux. Signed-off-by:
Becky Bruce <becky.bruce@freescale.com>
-
Becky Bruce authored
This will enable CONFIG_PHYS_36BIT for MPC8641HPCN. Signed-off-by:
Becky Bruce <becky.bruce@freescale.com>
-
Becky Bruce authored
This patch creates a memory map with all the devices in 36-bit physical space, in addition to the 32-bit map. The CCSR relocation is moved (again, sorry) to allow for the physical address to be 36 bits - this requires translation to be enabled. With 36-bit physical addressing enabled, we are no longer running with VA=PA translations. This means we have to distinguish between the two in the config file. The existing region name is used to indicate the virtual address, and a _PHYS variety is created to represent the physical address. Large physical addressing is not enabled by default. Set CONFIG_PHYS_64BIT in the config file to turn this on. Signed-off-by:
Becky Bruce <becky.bruce@freescale.com>
-
Becky Bruce authored
The memory map on the 8641hpcn is modified to look more like the 85xx boards; this is a step towards a more standardized layout going forward. As part of this change, we now relocate the flash. The regions for some of the mappings were far larger than they needed to be. I have reduced the mappings to match the actual sizes supported by the hardware. In addition I have removed the comments at the head of the BAT blocks in the config file, rather than updating them. These get horribly out of date, and it's a simple matter to look at the defines to see what they are set to since everything is right here in the same file. Documentation has been changed to reflect the new map, as this change is user visible, and affects the OS which runs post-uboot. Signed-off-by:
Becky Bruce <becky.bruce@freescale.com>
-
Becky Bruce authored
We define CONFIG_MONITOR_BASE_EARLY to define the initial location of the bootpage in flash. Use this to create an early mapping definition for the FLASH, and change the early_bats code to use this. This change facilitates the relocation of the flash since the early mappings are no longer tied to the final location of the flash. Signed-off-by:
Becky Bruce <becky.bruce@freescale.com>
-
Becky Bruce authored
Using a mtmsr/blr means that you have to be executing at the same virtual address once you enable translation. This is unnecessarily restrictive, and is not really how this is usually done. Change it to use the more common mtspr SRR0/SRR1 and rfi method. Signed-off-by:
Becky Bruce <becky.bruce@freescale.com>
-
Becky Bruce authored
Currently, that's what it is, but it's hardcoded. Signed-off-by:
Becky Bruce <becky.bruce@freescale.com>
-
Becky Bruce authored
There's a lot of setup and foo for the second flash bank. The problem is, this board doesn't actually have one. Clean this up. Also, the flash is 8M in size. Get rid of the confusing aliased overmapping, and just map 8M. Signed-off-by:
Becky Bruce <becky.bruce@freescale.com>
-
Becky Bruce authored
It's currently defined twice inside in an if/else block, but both halves set the same value. Move the define outside the if. Signed-off-by:
Becky Bruce <becky.bruce@freescale.com>
-
Becky Bruce authored
In order to later allow for a physical relocation of the flash, setup_bats, which sets up the final BAT mapping for the board, needs to happen *after* init_laws(). Otherwise, there will be no window programmed for the flash at the new physical location at the point when we change the mmu translation. Signed-off-by:
Becky Bruce <becky.bruce@freescale.com>
-
Becky Bruce authored
Signed-off-by:
Becky Bruce <becky.bruce@freescale.com>
-
Jon Loeliger authored
-
Richard Retanubun authored
Copied over the fixed PHY driver as used in pp4xx/4xx_enet.c. This adds support for PHY-less MAC connections to the UEC. Signed-off-by:
Richard Retanubun <RichardRetanubun@RuggedCom.com> Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
TsiChung Liew authored
All CF platforms' mii.c are consolidated into one Signed-off-by:
TsiChung Liew <Tsi-Chung.Liew@freescale.com> Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
Ben Warren authored
Removed initialization of the driver from net/eth.c Signed-off-by:
Ben Warren <biggerbadderben@gmail.com> Acked-by:
Stefan Roese <sr@denx.de>
-
Ben Warren authored
Also changed path in all linker scripts that reference this driver Signed-off-by:
Ben Warren <biggerbadderben@gmail.com> Acked-by:
Stefan Roese <sr@denx.de>
-
Ben Warren authored
All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG Signed-off-by:
Ben Warren <biggerbadderben@gmail.com> Acked-by:
Stefan Roese <sr@denx.de>
-
Ben Warren authored
Removed initialization of the driver from net/eth.c Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
Ben Warren authored
Removed initialization of the driver from net/eth.c Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
Ben Warren authored
Removed initialization of the driver from net/eth.c Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
Ben Warren authored
Affected boards: Several MPC8xx boards Several MPC8260/MPC8272 boards Several MPC85xx boards Removed initialization of the driver from net/eth.c Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
Ben Warren authored
CONFIG_MPC85xx_FEC -> CONFIG_MPC85XX_FEC Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
Shinya Kuribayashi authored
This patch will move au1x00_eth_initialize from net/eth.c to cpu_eth_init as a part of ongoing eth_initialize cleanup work. The function ret value is also fixed as it should be negative on fail. Signed-off-by:
Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
Ben Warren authored
Also, removed the driver initialization from net/eth.c Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
Clive Stubbings authored
Patch to fix buffer allocation size and alignment. Buffer needs to be u32 aligned and PKTSIZE_ALIGN bytes long. Acked-by:
Michal Simek <monstr@monstr.eu> Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
richardretanubun authored
The current uec_miiphy_read and uec_miiphy_write hardcode access devlist[0] This patch makes these function use the devname argument that is passed in to allow access to the phy registers of other devices in devlist[]. Signed-of-by:
Richard Retanubun <RichardRetanubun@RugggedCom.com> Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
richardretanubun authored
Fixed compiler warning "declared but unused" eth5_uec_info and eth6_uec_info. Signed-off-by:
Richard Retanubun <RichardRetanubun@RugggedCom.com> Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
- Nov 08, 2008
-
-
Wolfgang Denk authored
-
-
Wolfgang Denk authored
-
-
Wolfgang Denk authored
-
-
- Nov 07, 2008
-
-
Stelian Pop authored
AT91_BASE_EMAC is never used outside the board specific files, so replace its usage by the board specific AT91xxx_BASE_EMAC. Signed-off-by:
Stelian Pop <stelian@popies.net> Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-