xref: /onnv-gate/usr/src/uts/sun4u/sys/pci/pci_chip.h (revision 2050:6648ed7f9bd5)
10Sstevel@tonic-gate /*
20Sstevel@tonic-gate  * CDDL HEADER START
30Sstevel@tonic-gate  *
40Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*2050Ssuha  * Common Development and Distribution License (the "License").
6*2050Ssuha  * You may not use this file except in compliance with the License.
70Sstevel@tonic-gate  *
80Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
90Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
100Sstevel@tonic-gate  * See the License for the specific language governing permissions
110Sstevel@tonic-gate  * and limitations under the License.
120Sstevel@tonic-gate  *
130Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
140Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
150Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
160Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
170Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
180Sstevel@tonic-gate  *
190Sstevel@tonic-gate  * CDDL HEADER END
200Sstevel@tonic-gate  */
210Sstevel@tonic-gate /*
22*2050Ssuha  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
230Sstevel@tonic-gate  * Use is subject to license terms.
240Sstevel@tonic-gate  */
250Sstevel@tonic-gate 
260Sstevel@tonic-gate #ifndef	_SYS_PCI_CHIP_H
270Sstevel@tonic-gate #define	_SYS_PCI_CHIP_H
280Sstevel@tonic-gate 
290Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
300Sstevel@tonic-gate 
310Sstevel@tonic-gate #ifdef	__cplusplus
320Sstevel@tonic-gate extern "C" {
330Sstevel@tonic-gate #endif
340Sstevel@tonic-gate 
350Sstevel@tonic-gate extern void pci_post_init_child(pci_t *pci_p, dev_info_t *child);
360Sstevel@tonic-gate extern void pci_post_uninit_child(pci_t *pci_p);
370Sstevel@tonic-gate 
380Sstevel@tonic-gate extern int pci_obj_setup(pci_t *pci_p);
390Sstevel@tonic-gate extern void pci_obj_destroy(pci_t *pci_p);
400Sstevel@tonic-gate extern void pci_obj_resume(pci_t *pci_p);
410Sstevel@tonic-gate extern void pci_obj_suspend(pci_t *pci_p);
420Sstevel@tonic-gate 
430Sstevel@tonic-gate extern void pci_kstat_init(void);
440Sstevel@tonic-gate extern void pci_kstat_fini(void);
450Sstevel@tonic-gate 
460Sstevel@tonic-gate extern void pci_add_pci_kstat(pci_t *pci_p);
470Sstevel@tonic-gate extern void pci_rem_pci_kstat(pci_t *pci_p);
480Sstevel@tonic-gate 
490Sstevel@tonic-gate extern void pci_add_upstream_kstat(pci_t *pci_p);
500Sstevel@tonic-gate 
510Sstevel@tonic-gate extern void pci_fix_ranges(pci_ranges_t *rng_p, int rng_entries);
520Sstevel@tonic-gate extern int map_pci_registers(pci_t *pci_p, dev_info_t *dip);
530Sstevel@tonic-gate 
540Sstevel@tonic-gate extern uint_t pbm_disable_pci_errors(pbm_t *pbm_p);
550Sstevel@tonic-gate extern uintptr_t get_pbm_reg_base(pci_t *pci_p);
560Sstevel@tonic-gate 
570Sstevel@tonic-gate extern uint32_t ib_map_reg_get_cpu(volatile uint64_t reg);
580Sstevel@tonic-gate extern uint64_t *ib_intr_map_reg_addr(ib_t *ib_p, ib_ino_t ino);
590Sstevel@tonic-gate extern uint64_t *ib_clear_intr_reg_addr(ib_t *ib_p, ib_ino_t ino);
600Sstevel@tonic-gate extern void pci_pbm_intr_dist(pbm_t *pbm_p);
610Sstevel@tonic-gate 
620Sstevel@tonic-gate extern void pci_cb_setup(pci_t *pci_p);
630Sstevel@tonic-gate extern void pci_cb_teardown(pci_t *pci_p);
640Sstevel@tonic-gate extern int cb_register_intr(pci_t *pci_p);
650Sstevel@tonic-gate extern void cb_enable_intr(pci_t *pci_p);
660Sstevel@tonic-gate extern uint64_t cb_ino_to_map_pa(cb_t *cb_p, ib_ino_t ino);
670Sstevel@tonic-gate extern uint64_t cb_ino_to_clr_pa(cb_t *cb_p, ib_ino_t ino);
680Sstevel@tonic-gate extern int cb_remove_xintr(pci_t *pci_p, dev_info_t *dip, dev_info_t *rdip,
690Sstevel@tonic-gate 		ib_ino_t ino, ib_mondo_t mondo);
700Sstevel@tonic-gate extern uint32_t pci_xlate_intr(dev_info_t *dip, dev_info_t *rdip,
710Sstevel@tonic-gate 		ib_t *ib_p, uint32_t intr);
720Sstevel@tonic-gate extern uint32_t pci_intr_dist_cpuid(ib_t *ib_p, ib_ino_info_t *ino_p);
730Sstevel@tonic-gate 
740Sstevel@tonic-gate extern void pci_ecc_setup(ecc_t *ecc_p);
750Sstevel@tonic-gate extern ushort_t pci_ecc_get_synd(uint64_t afsr);
760Sstevel@tonic-gate 
770Sstevel@tonic-gate extern uintptr_t pci_iommu_setup(iommu_t *iommu_p);
780Sstevel@tonic-gate extern void pci_iommu_teardown(iommu_t *iommu_p);
790Sstevel@tonic-gate extern void pci_iommu_config(iommu_t *iommu_p, uint64_t iommu_ctl,
800Sstevel@tonic-gate 		uint64_t cfgpa);
810Sstevel@tonic-gate 
820Sstevel@tonic-gate extern dvma_context_t pci_iommu_get_dvma_context(iommu_t *iommu_p,
830Sstevel@tonic-gate 		dvma_addr_t dvma_pg_index);
840Sstevel@tonic-gate extern void pci_iommu_free_dvma_context(iommu_t *iommu_p, dvma_context_t ctx);
850Sstevel@tonic-gate 
860Sstevel@tonic-gate extern void pci_pbm_setup(pbm_t *pbm_p);
870Sstevel@tonic-gate extern void pci_pbm_teardown(pbm_t *pbm_p);
880Sstevel@tonic-gate extern void pci_pbm_dma_sync(pbm_t *pbm_p, ib_ino_t ino);
890Sstevel@tonic-gate 
900Sstevel@tonic-gate extern uint64_t pci_sc_configure(pci_t *pci_p);
910Sstevel@tonic-gate extern void pci_sc_setup(sc_t *sc_p);
920Sstevel@tonic-gate extern int pci_sc_ctx_inv(dev_info_t *dip, sc_t *sc_p, ddi_dma_impl_t *mp);
930Sstevel@tonic-gate 
940Sstevel@tonic-gate extern uintptr_t pci_ib_setup(ib_t *ib_p);
950Sstevel@tonic-gate extern int pci_get_numproxy(dev_info_t *dip);
960Sstevel@tonic-gate 
970Sstevel@tonic-gate extern int pci_ecc_add_intr(pci_t *pci_p, int inum, ecc_intr_info_t *eii_p);
980Sstevel@tonic-gate extern void pci_ecc_rem_intr(pci_t *pci_p, int inum, ecc_intr_info_t *eii_p);
990Sstevel@tonic-gate 
1000Sstevel@tonic-gate extern int pci_pbm_err_handler(dev_info_t *dip, ddi_fm_error_t *derr,
1010Sstevel@tonic-gate 		const void *impl_data, int caller);
1020Sstevel@tonic-gate extern void pci_ecc_classify(uint64_t err, ecc_errstate_t *ecc_err_p);
1030Sstevel@tonic-gate extern int pci_pbm_classify(pbm_errstate_t *pbm_err_p);
1040Sstevel@tonic-gate extern void pci_format_addr(dev_info_t *dip, uint64_t *afar, uint64_t afsr);
1050Sstevel@tonic-gate extern int pci_check_error(pci_t *pci_p);
1060Sstevel@tonic-gate 
1070Sstevel@tonic-gate extern int pci_pbm_add_intr(pci_t *pci_p);
1080Sstevel@tonic-gate extern void pci_pbm_rem_intr(pci_t *pci_p);
1090Sstevel@tonic-gate 
1100Sstevel@tonic-gate extern void pci_pbm_suspend(pci_t *pci_p);
1110Sstevel@tonic-gate extern void pci_pbm_resume(pci_t *pci_p);
1120Sstevel@tonic-gate 
1130Sstevel@tonic-gate extern int pci_bus_quiesce(pci_t *pci_p, dev_info_t *dip, void *arg);
1140Sstevel@tonic-gate extern int pci_bus_unquiesce(pci_t *pci_p, dev_info_t *dip, void *arg);
1150Sstevel@tonic-gate 
1160Sstevel@tonic-gate extern void pci_vmem_free(iommu_t *iommu_p, ddi_dma_impl_t *mp,
1170Sstevel@tonic-gate 		void *dvma_addr, size_t npages);
1180Sstevel@tonic-gate 
119*2050Ssuha extern dma_bypass_addr_t pci_iommu_bypass_end_configure(void);
120*2050Ssuha 
1210Sstevel@tonic-gate #ifdef	__cplusplus
1220Sstevel@tonic-gate }
1230Sstevel@tonic-gate #endif
1240Sstevel@tonic-gate 
1250Sstevel@tonic-gate #endif	/* _SYS_PCI_CHIP_H */
126