aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorLinas Vepstas <linas@linas.org>2005-11-03 19:54:47 -0500
committerPaul Mackerras <paulus@samba.org>2006-01-09 23:30:05 -0500
commit21e464dd7c943c984dcccd9aff8c9f6a5ea920d7 (patch)
treec5c8cd2e9111ccbdf1d7381c9ac5ee660868df59 /arch
parentfcb7543e3d01ad9ebd3498eb50fcf323edb163ab (diff)
[PATCH] powerpc: set up the RTAS token just like the rest of them.
237-eeh-bridge-token.patch Minor: the rtas-bridge token should be set up the same way that all the other rtas tokens are set up. Signed-off-by: Linas Vepstas <linas@austin.ibm.com> Signed-off-by: Paul Mackerras <paulus@samba.org> (cherry picked from 78379b6c5fc17b6666c40b05988e6708e98479c0 commit)
Diffstat (limited to 'arch')
-rw-r--r--arch/powerpc/platforms/pseries/eeh.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/arch/powerpc/platforms/pseries/eeh.c b/arch/powerpc/platforms/pseries/eeh.c
index 4da77571288b..d8d24502970f 100644
--- a/arch/powerpc/platforms/pseries/eeh.c
+++ b/arch/powerpc/platforms/pseries/eeh.c
@@ -83,6 +83,7 @@ static int ibm_read_slot_reset_state;
83static int ibm_read_slot_reset_state2; 83static int ibm_read_slot_reset_state2;
84static int ibm_slot_error_detail; 84static int ibm_slot_error_detail;
85static int ibm_get_config_addr_info; 85static int ibm_get_config_addr_info;
86static int ibm_configure_bridge;
86 87
87int eeh_subsystem_enabled; 88int eeh_subsystem_enabled;
88EXPORT_SYMBOL(eeh_subsystem_enabled); 89EXPORT_SYMBOL(eeh_subsystem_enabled);
@@ -626,18 +627,14 @@ void
626rtas_configure_bridge(struct pci_dn *pdn) 627rtas_configure_bridge(struct pci_dn *pdn)
627{ 628{
628 int config_addr; 629 int config_addr;
629 int token = rtas_token ("ibm,configure-bridge");
630 int rc; 630 int rc;
631 631
632 if (token == RTAS_UNKNOWN_SERVICE)
633 return;
634
635 /* Use PE configuration address, if present */ 632 /* Use PE configuration address, if present */
636 config_addr = pdn->eeh_config_addr; 633 config_addr = pdn->eeh_config_addr;
637 if (pdn->eeh_pe_config_addr) 634 if (pdn->eeh_pe_config_addr)
638 config_addr = pdn->eeh_pe_config_addr; 635 config_addr = pdn->eeh_pe_config_addr;
639 636
640 rc = rtas_call(token,3,1, NULL, 637 rc = rtas_call(ibm_configure_bridge,3,1, NULL,
641 config_addr, 638 config_addr,
642 BUID_HI(pdn->phb->buid), 639 BUID_HI(pdn->phb->buid),
643 BUID_LO(pdn->phb->buid)); 640 BUID_LO(pdn->phb->buid));
@@ -789,6 +786,7 @@ void __init eeh_init(void)
789 ibm_read_slot_reset_state = rtas_token("ibm,read-slot-reset-state"); 786 ibm_read_slot_reset_state = rtas_token("ibm,read-slot-reset-state");
790 ibm_slot_error_detail = rtas_token("ibm,slot-error-detail"); 787 ibm_slot_error_detail = rtas_token("ibm,slot-error-detail");
791 ibm_get_config_addr_info = rtas_token("ibm,get-config-addr-info"); 788 ibm_get_config_addr_info = rtas_token("ibm,get-config-addr-info");
789 ibm_configure_bridge = rtas_token ("ibm,configure-bridge");
792 790
793 if (ibm_set_eeh_option == RTAS_UNKNOWN_SERVICE) 791 if (ibm_set_eeh_option == RTAS_UNKNOWN_SERVICE)
794 return; 792 return;