From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tolunay Orkun Date: Fri, 07 Apr 2006 17:36:46 -0500 Subject: [U-Boot-Users] PATCH: CPC0_PCI initialization Message-ID: <4436E97E.5010504@orkun.us> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de This was discussed in the list a while ago but a patch was not submitted AFAIK. I've come up with a patch that does not break any existing boards and naming of the macro is in line with other U-Boot macros for similar settings. Re: http://sf.net/mailarchive/message.php?msg_id=14093274 Re: http://sf.net/mailarchive/message.php?msg_id=14095552 I am currently involved with bring-up of an 405EP based board. For our board we do actually need CPC0_PCI[SPE] set to "1" to configure PerWE*/PCI_INT* as PerWE* so write cycles to our flash could be take place (even for just CFI detection) CHANGELOG: * (ppc405ep) Add support for board configuration of CPC0_PCI register This is needed to be able to configure PerWE*/PCI_INT* pin as PerWE* Sign-off-by: Tolunay Orkun diff --git a/cpu/ppc4xx/start.S b/cpu/ppc4xx/start.S index 948de43..316285a 100644 --- a/cpu/ppc4xx/start.S +++ b/cpu/ppc4xx/start.S @@ -1526,7 +1526,8 @@ ppc405ep_init: mtdcr ebccfgd,r3 #endif - addi r3,0,CPC0_PCI_HOST_CFG_EN +#ifndef CFG_CPC0_PCI + li r3,CPC0_PCI_HOST_CFG_EN #ifdef CONFIG_BUBINGA /* !----------------------------------------------------------------------- @@ -1541,6 +1542,9 @@ ppc405ep_init: beq ..pci_cfg_set /* if not set, then bypass reg write*/ #endif ori r3,r3,CPC0_PCI_ARBIT_EN +#else + li r3,CFG_CPC0_PCI +#endif ..pci_cfg_set: mtdcr CPC0_PCI, r3 /* Enable internal arbiter*/