mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-01 08:34:21 +00:00
SH: pci-sh7780: enable big-endian operation.
If in big-endian mode, switch the PCI bus, too. Tested on both litte-endian and big-endian sh7785lcr. Signed-off-by: Thomas Schwinge <thomas@codesourcery.com> Cc: Paul Mundt <lethal@linux-sh.org> Cc: linux-sh@vger.kernel.org Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
parent
49d4bcaddc
commit
bfc906d885
@ -21,6 +21,13 @@
|
|||||||
#include <asm/mmu.h>
|
#include <asm/mmu.h>
|
||||||
#include <asm/sizes.h>
|
#include <asm/sizes.h>
|
||||||
|
|
||||||
|
#if defined(CONFIG_CPU_BIG_ENDIAN)
|
||||||
|
# define PCICR_ENDIANNESS SH4_PCICR_BSWP
|
||||||
|
#else
|
||||||
|
# define PCICR_ENDIANNESS 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
static struct resource sh7785_pci_resources[] = {
|
static struct resource sh7785_pci_resources[] = {
|
||||||
{
|
{
|
||||||
.name = "PCI IO",
|
.name = "PCI IO",
|
||||||
@ -254,7 +261,7 @@ static int __init sh7780_pci_init(void)
|
|||||||
__raw_writel(PCIECR_ENBL, PCIECR);
|
__raw_writel(PCIECR_ENBL, PCIECR);
|
||||||
|
|
||||||
/* Reset */
|
/* Reset */
|
||||||
__raw_writel(SH4_PCICR_PREFIX | SH4_PCICR_PRST,
|
__raw_writel(SH4_PCICR_PREFIX | SH4_PCICR_PRST | PCICR_ENDIANNESS,
|
||||||
chan->reg_base + SH4_PCICR);
|
chan->reg_base + SH4_PCICR);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -290,7 +297,8 @@ static int __init sh7780_pci_init(void)
|
|||||||
* Now throw it in to register initialization mode and
|
* Now throw it in to register initialization mode and
|
||||||
* start the real work.
|
* start the real work.
|
||||||
*/
|
*/
|
||||||
__raw_writel(SH4_PCICR_PREFIX, chan->reg_base + SH4_PCICR);
|
__raw_writel(SH4_PCICR_PREFIX | PCICR_ENDIANNESS,
|
||||||
|
chan->reg_base + SH4_PCICR);
|
||||||
|
|
||||||
memphys = __pa(memory_start);
|
memphys = __pa(memory_start);
|
||||||
memsize = roundup_pow_of_two(memory_end - memory_start);
|
memsize = roundup_pow_of_two(memory_end - memory_start);
|
||||||
@ -380,7 +388,8 @@ static int __init sh7780_pci_init(void)
|
|||||||
* Initialization mode complete, release the control register and
|
* Initialization mode complete, release the control register and
|
||||||
* enable round robin mode to stop device overruns/starvation.
|
* enable round robin mode to stop device overruns/starvation.
|
||||||
*/
|
*/
|
||||||
__raw_writel(SH4_PCICR_PREFIX | SH4_PCICR_CFIN | SH4_PCICR_FTO,
|
__raw_writel(SH4_PCICR_PREFIX | SH4_PCICR_CFIN | SH4_PCICR_FTO |
|
||||||
|
PCICR_ENDIANNESS,
|
||||||
chan->reg_base + SH4_PCICR);
|
chan->reg_base + SH4_PCICR);
|
||||||
|
|
||||||
ret = register_pci_controller(chan);
|
ret = register_pci_controller(chan);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user