/* SPDX-License-Identifier: GPL-2.0 */ /* * pcic.h: JavaEngine 1 specific PCI definitions. * * Copyright (C) 1998 V. Roganov and G. Raiko */ #ifndef __SPARC_PCIC_H #define __SPARC_PCIC_H #ifndef __ASSEMBLY__ #include <linux/types.h> #include <linux/smp.h> #include <linux/pci.h> #include <linux/ioport.h> #include <asm/pbm.h> struct linux_pcic { void __iomem *pcic_regs; unsigned long pcic_io; void __iomem *pcic_config_space_addr; void __iomem *pcic_config_space_data; struct resource pcic_res_regs; struct resource pcic_res_io; struct resource pcic_res_cfg_addr; struct resource pcic_res_cfg_data; struct linux_pbm_info pbm; struct pcic_ca2irq *pcic_imap; int pcic_imdim; }; #ifdef CONFIG_PCIC_PCI int pcic_present(void); int pcic_probe(void); void pci_time_init(void); void sun4m_pci_init_IRQ(void); #else
static inline int pcic_present(void) { return 0; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Sam Ravnborg | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Sam Ravnborg | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Sam Ravnborg | 8 | 100.00% | 1 | 100.00% |
Total | 8 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Sam Ravnborg | 8 | 100.00% | 1 | 100.00% |
Total | 8 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 469 | 87.66% | 3 | 33.33% |
Sam Ravnborg | 54 | 10.09% | 1 | 11.11% |
William Lee Irwin III | 6 | 1.12% | 1 | 11.11% |
Al Viro | 3 | 0.56% | 1 | 11.11% |
Daniel Hellstrom | 1 | 0.19% | 1 | 11.11% |
Greg Kroah-Hartman | 1 | 0.19% | 1 | 11.11% |
Adrian Bunk | 1 | 0.19% | 1 | 11.11% |
Total | 535 | 100.00% | 9 | 100.00% |