2 * SHPCHPRM : SHPCHP Resource Manager for ACPI/non-ACPI platform
4 * Copyright (C) 1995,2001 Compaq Computer Corporation
5 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
6 * Copyright (C) 2001 IBM Corp.
7 * Copyright (C) 2003-2004 Intel Corporation
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
19 * NON INFRINGEMENT. See the GNU General Public License for more
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 * Send feedback to <greg@kroah.com>, <dely.l.sy@intel.com>
33 #ifdef CONFIG_HOTPLUG_PCI_SHPC_PHPRM_LEGACY
34 #include "shpchprm_legacy.h"
36 #include "shpchprm_nonacpi.h"
39 int shpchprm_init(enum php_ctlr_type ct
);
40 void shpchprm_cleanup(void);
41 int shpchprm_print_pirt(void);
42 int shpchprm_find_available_resources(struct controller
*ctrl
);
43 int shpchprm_set_hpp(struct controller
*ctrl
, struct pci_func
*func
, u8 card_type
);
44 void shpchprm_enable_card(struct controller
*ctrl
, struct pci_func
*func
, u8 card_type
);
45 int shpchprm_get_physical_slot_number(struct controller
*ctrl
, u32
*sun
, u8 busnum
, u8 devnum
);
48 #define RES_CHECK(this, bits) \
49 { if (((this) & (bits - 1))) \
50 printk("%s:%d ERR: potential res loss!\n", __FUNCTION__, __LINE__); }
52 #define RES_CHECK(this, bits)
55 #endif /* _SHPCHPRM_H_ */