mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-05 08:48:53 +00:00
89d63fe179
Split out PCIC dependent code and SoC dependent code from board dependent code. Now TX4927 PCIC code is independent from TX4927/TX4938 SoC code. Also fix some build problems on CONFIG_PCI=n. As a bonus, "FPCIB0 Backplane Support" is available for all TX39/TX49 boards and PCI66 support is available for all TX49 boards. Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
24 lines
670 B
C
24 lines
670 B
C
/*
|
|
* linux/include/asm-mips/txx9/generic.h
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
* for more details.
|
|
*/
|
|
#ifndef __ASM_TXX9_GENERIC_H
|
|
#define __ASM_TXX9_GENERIC_H
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/ioport.h> /* for struct resource */
|
|
|
|
extern struct resource txx9_ce_res[];
|
|
extern char txx9_pcode_str[8];
|
|
void txx9_reg_res_init(unsigned int pcode, unsigned long base,
|
|
unsigned long size);
|
|
|
|
extern unsigned int txx9_master_clock;
|
|
extern unsigned int txx9_cpu_clock;
|
|
extern unsigned int txx9_gbus_clock;
|
|
|
|
#endif /* __ASM_TXX9_GENERIC_H */
|