mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 17:13:52 +02:00
We are about to set loongson_pci_io_resource.start to 0 and adopt
PCIBIOS_MIN_IO. As the first step, PCI controller needs to be registered
in early stage to make it the root of other resources (e.g., i8259) and
prevent resource conflicts.
Register it in plat_mem_setup() instead of arch_initcall().
Fixes: ae81aad5c2 ("MIPS: PCI: Use pci_enable_resources()")
Cc: stable@vger.kernel.org
Tested-by: Beiyan Yun <root@infi.wang>
Tested-by: Yao Zi <me@ziyao.cc>
Signed-off-by: Rong Zhang <rongrong@oss.cipunited.com>
Acked-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
32 lines
615 B
C
32 lines
615 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (C) 2007 Lemote Inc. & Institute of Computing Technology
|
|
* Author: Fuxin Zhang, zhangfx@lemote.com
|
|
*/
|
|
#include <linux/export.h>
|
|
#include <linux/init.h>
|
|
|
|
#include <asm/wbflush.h>
|
|
#include <asm/bootinfo.h>
|
|
|
|
#include <loongson.h>
|
|
|
|
static void wbflush_loongson(void)
|
|
{
|
|
asm(".set\tpush\n\t"
|
|
".set\tnoreorder\n\t"
|
|
".set mips3\n\t"
|
|
"sync\n\t"
|
|
"nop\n\t"
|
|
".set\tpop\n\t"
|
|
".set mips0\n\t");
|
|
}
|
|
|
|
void (*__wbflush)(void) = wbflush_loongson;
|
|
EXPORT_SYMBOL(__wbflush);
|
|
|
|
void __init plat_mem_setup(void)
|
|
{
|
|
loongson2ef_pcibios_init();
|
|
}
|