2019-06-20 19:28:46 +03:00
// SPDX-License-Identifier: GPL-2.0+
2006-11-12 20:05:09 +03:00
/*
* intel TCO vendor specific watchdog driver support
*
2009-01-28 23:51:04 +03:00
* ( c ) Copyright 2006 - 2009 Wim Van Sebroeck < wim @ iguana . be > .
2006-11-12 20:05:09 +03:00
*
* Neither Wim Van Sebroeck nor Iguana vzw . admit liability nor
* provide warranty for any of this software . This material is
* provided " AS-IS " and at no charge .
*/
/*
* Includes , defines , variables , module parameters , . . .
*/
2012-02-16 03:06:19 +04:00
# define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
2006-11-12 20:05:09 +03:00
/* Module and version information */
2008-08-07 00:19:41 +04:00
# define DRV_NAME "iTCO_vendor_support"
2009-06-08 21:41:51 +04:00
# define DRV_VERSION "1.04"
2006-11-12 20:05:09 +03:00
/* Includes */
# include <linux/module.h> /* For module specific items */
# include <linux/moduleparam.h> /* For new moduleparam's */
# include <linux/types.h> /* For standard types (like size_t) */
# include <linux/errno.h> /* For the -ENODEV/... values */
# include <linux/kernel.h> /* For printk/panic/... */
# include <linux/init.h> /* For __init/__exit/... */
# include <linux/ioport.h> /* For io-port access */
2008-05-19 17:06:25 +04:00
# include <linux/io.h> /* For inb/outb/... */
# include "iTCO_vendor.h"
2006-11-12 20:05:09 +03:00
/* List of vendor support modes */
2008-05-19 17:06:25 +04:00
/* SuperMicro Pentium 3 Era 370SSE+-OEM1/P3TSSE */
# define SUPERMICRO_OLD_BOARD 1
2018-08-31 16:06:10 +03:00
/* SuperMicro Pentium 4 / Xeon 4 / EMT64T Era Systems - no longer supported */
2008-05-19 17:06:25 +04:00
# define SUPERMICRO_NEW_BOARD 2
2009-06-08 21:41:51 +04:00
/* Broken BIOS */
# define BROKEN_BIOS 911
2006-11-12 20:05:09 +03:00
2020-02-26 16:21:20 +03:00
int iTCO_vendorsupport ;
EXPORT_SYMBOL ( iTCO_vendorsupport ) ;
module_param_named ( vendorsupport , iTCO_vendorsupport , int , 0 ) ;
2009-03-18 11:35:09 +03:00
MODULE_PARM_DESC ( vendorsupport , " iTCO vendor specific support mode, default= "
2018-08-31 16:06:10 +03:00
" 0 (none), 1=SuperMicro Pent3, 911=Broken SMI BIOS " ) ;
2006-11-12 20:05:09 +03:00
/*
* Vendor Specific Support
*/
/*
* Vendor Support : 1
* Board : Super Micro Computer Inc . 370 SSE + - OEM1 / P3TSSE
* iTCO chipset : ICH2
*
* Code contributed by : R . Seretny < lkpatches @ paypc . com >
* Documentation obtained by R . Seretny from SuperMicro Technical Support
*
* To enable Watchdog function :
* BIOS setup - > Power - > TCO Logic SMI Enable - > Within5Minutes
* This setting enables SMI to clear the watchdog expired flag .
* If BIOS or CPU fail which may cause SMI hang , then system will
* reboot . When application starts to use watchdog function ,
* application has to take over the control from SMI .
*
* For P3TSSE , J36 jumper needs to be removed to enable the Watchdog
* function .
*
* Note : The system will reboot when Expire Flag is set TWICE .
* So , if the watchdog timer is 20 seconds , then the maximum hang
* time is about 40 seconds , and the minimum hang time is about
* 20.6 seconds .
*/
2012-04-20 23:14:11 +04:00
static void supermicro_old_pre_start ( struct resource * smires )
2009-01-28 23:51:04 +03:00
{
unsigned long val32 ;
/* Bit 13: TCO_EN -> 0 = Disables TCO logic generating an SMI# */
2012-04-20 23:14:11 +04:00
val32 = inl ( smires - > start ) ;
2009-01-28 23:51:04 +03:00
val32 & = 0xffffdfff ; /* Turn off SMI clearing watchdog */
2012-04-20 23:14:11 +04:00
outl ( val32 , smires - > start ) ; /* Needed to activate watchdog */
2009-01-28 23:51:04 +03:00
}
2012-04-20 23:14:11 +04:00
static void supermicro_old_pre_stop ( struct resource * smires )
2009-01-28 23:51:04 +03:00
{
unsigned long val32 ;
/* Bit 13: TCO_EN -> 1 = Enables the TCO logic to generate SMI# */
2012-04-20 23:14:11 +04:00
val32 = inl ( smires - > start ) ;
2009-01-28 23:51:04 +03:00
val32 | = 0x00002000 ; /* Turn on SMI clearing watchdog */
2012-04-20 23:14:11 +04:00
outl ( val32 , smires - > start ) ; /* Needed to deactivate watchdog */
2009-01-28 23:51:04 +03:00
}
2009-06-08 21:41:51 +04:00
/*
* Vendor Support : 911
* Board : Some Intel ICHx based motherboards
* iTCO chipset : ICH7 +
*
* Some Intel motherboards have a broken BIOS implementation : i . e .
* the SMI handler clear ' s the TIMEOUT bit in the TC01_STS register
* and does not reload the time . Thus the TCO watchdog does not reboot
* the system .
*
* These are the conclusions of Andriy Gapon < avg @ icyb . net . ua > after
* debugging : the SMI handler is quite simple - it tests value in
* TCO1_CNT against 0x800 , i . e . checks TCO_TMR_HLT . If the bit is set
* the handler goes into an infinite loop , apparently to allow the
* second timeout and reboot . Otherwise it simply clears TIMEOUT bit
* in TCO1_STS and that ' s it .
* So the logic seems to be reversed , because it is hard to see how
* TIMEOUT can get set to 1 and SMI generated when TCO_TMR_HLT is set
* ( other than a transitional effect ) .
*
* The only fix found to get the motherboard ( s ) to reboot is to put
* the glb_smi_en bit to 0. This is a dirty hack that bypasses the
* broken code by disabling Global SMI .
*
* WARNING : globally disabling SMI could possibly lead to dramatic
* problems , especially on laptops ! I . e . various ACPI things where
* SMI is used for communication between OS and firmware .
*
* Don ' t use this fix if you don ' t need to ! ! !
*/
2012-04-20 23:14:11 +04:00
static void broken_bios_start ( struct resource * smires )
2009-06-08 21:41:51 +04:00
{
unsigned long val32 ;
2012-04-20 23:14:11 +04:00
val32 = inl ( smires - > start ) ;
2009-06-08 21:41:51 +04:00
/* Bit 13: TCO_EN -> 0 = Disables TCO logic generating an SMI#
Bit 0 : GBL_SMI_EN - > 0 = No SMI # will be generated by ICH . */
val32 & = 0xffffdffe ;
2012-04-20 23:14:11 +04:00
outl ( val32 , smires - > start ) ;
2009-06-08 21:41:51 +04:00
}
2012-04-20 23:14:11 +04:00
static void broken_bios_stop ( struct resource * smires )
2009-06-08 21:41:51 +04:00
{
unsigned long val32 ;
2012-04-20 23:14:11 +04:00
val32 = inl ( smires - > start ) ;
2009-06-08 21:41:51 +04:00
/* Bit 13: TCO_EN -> 1 = Enables TCO logic generating an SMI#
Bit 0 : GBL_SMI_EN - > 1 = Turn global SMI on again . */
val32 | = 0x00002001 ;
2012-04-20 23:14:11 +04:00
outl ( val32 , smires - > start ) ;
2009-06-08 21:41:51 +04:00
}
2006-11-12 20:05:09 +03:00
/*
* Generic Support Functions
*/
2012-04-20 23:14:11 +04:00
void iTCO_vendor_pre_start ( struct resource * smires ,
2006-11-12 20:05:09 +03:00
unsigned int heartbeat )
{
2020-02-26 16:21:20 +03:00
switch ( iTCO_vendorsupport ) {
2009-06-08 21:41:51 +04:00
case SUPERMICRO_OLD_BOARD :
2012-04-20 23:14:11 +04:00
supermicro_old_pre_start ( smires ) ;
2009-06-08 21:41:51 +04:00
break ;
case BROKEN_BIOS :
2012-04-20 23:14:11 +04:00
broken_bios_start ( smires ) ;
2009-06-08 21:41:51 +04:00
break ;
}
2006-11-12 20:05:09 +03:00
}
EXPORT_SYMBOL ( iTCO_vendor_pre_start ) ;
2012-04-20 23:14:11 +04:00
void iTCO_vendor_pre_stop ( struct resource * smires )
2006-11-12 20:05:09 +03:00
{
2020-02-26 16:21:20 +03:00
switch ( iTCO_vendorsupport ) {
2009-06-08 21:41:51 +04:00
case SUPERMICRO_OLD_BOARD :
2012-04-20 23:14:11 +04:00
supermicro_old_pre_stop ( smires ) ;
2009-06-08 21:41:51 +04:00
break ;
case BROKEN_BIOS :
2012-04-20 23:14:11 +04:00
broken_bios_stop ( smires ) ;
2009-06-08 21:41:51 +04:00
break ;
}
2006-11-12 20:05:09 +03:00
}
EXPORT_SYMBOL ( iTCO_vendor_pre_stop ) ;
int iTCO_vendor_check_noreboot_on ( void )
{
2020-02-26 16:21:20 +03:00
switch ( iTCO_vendorsupport ) {
2006-11-12 20:05:09 +03:00
case SUPERMICRO_OLD_BOARD :
return 0 ;
default :
return 1 ;
}
}
EXPORT_SYMBOL ( iTCO_vendor_check_noreboot_on ) ;
static int __init iTCO_vendor_init_module ( void )
{
2020-02-26 16:21:20 +03:00
if ( iTCO_vendorsupport = = SUPERMICRO_NEW_BOARD ) {
2018-08-31 16:06:10 +03:00
pr_warn ( " Option vendorsupport=%d is no longer supported, "
" please use the w83627hf_wdt driver instead \n " ,
SUPERMICRO_NEW_BOARD ) ;
return - EINVAL ;
}
2020-02-26 16:21:20 +03:00
pr_info ( " vendor-support=%d \n " , iTCO_vendorsupport ) ;
2006-11-12 20:05:09 +03:00
return 0 ;
}
static void __exit iTCO_vendor_exit_module ( void )
{
2012-02-16 03:06:19 +04:00
pr_info ( " Module Unloaded \n " ) ;
2006-11-12 20:05:09 +03:00
}
module_init ( iTCO_vendor_init_module ) ;
module_exit ( iTCO_vendor_exit_module ) ;
2009-03-18 11:35:09 +03:00
MODULE_AUTHOR ( " Wim Van Sebroeck <wim@iguana.be>, "
" R. Seretny <lkpatches@paypc.com> " ) ;
2006-11-12 20:05:09 +03:00
MODULE_DESCRIPTION ( " Intel TCO Vendor Specific WatchDog Timer Driver Support " ) ;
MODULE_VERSION ( DRV_VERSION ) ;
MODULE_LICENSE ( " GPL " ) ;