亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? eurotechwdt.c

?? linux和2410結(jié)合開發(fā) 用他可以生成2410所需的zImage文件
?? C
字號(hào):
/* *	Eurotech CPU-1220/1410 on board WDT driver for Linux 2.4.x * *	(c) Copyright 2001 Ascensit <support@ascensit.com> *	(c) Copyright 2001 Rodolfo Giometti <giometti@ascensit.com> * *	Based on wdt.c. *	Original copyright messages: * *      (c) Copyright 1996-1997 Alan Cox <alan@redhat.com>, All Rights Reserved. *                              http://www.redhat.com * *      This program is free software; you can redistribute it and/or *      modify it under the terms of the GNU General Public License *      as published by the Free Software Foundation; either version *      2 of the License, or (at your option) any later version. * *      Neither Alan Cox nor CymruNet Ltd. admit liability nor provide *      warranty for any of this software. This material is provided *      "AS-IS" and at no charge. * *      (c) Copyright 1995    Alan Cox <alan@lxorguk.ukuu.org.uk>* */#include <linux/config.h>#include <linux/module.h>#include <linux/version.h>#include <linux/types.h>#include <linux/errno.h>#include <linux/kernel.h>#include <linux/sched.h>#include <linux/smp_lock.h>#include <linux/miscdevice.h>#include <linux/watchdog.h>#include <linux/slab.h>#include <linux/ioport.h>#include <linux/fcntl.h>#include <asm/io.h>#include <asm/uaccess.h>#include <asm/system.h>#include <linux/notifier.h>#include <linux/reboot.h>#include <linux/init.h>#include <linux/spinlock.h>#include <linux/smp_lock.h>static int eurwdt_is_open;static int eurwdt_timeout; static spinlock_t eurwdt_lock; /* *      You must set these - there is no sane way to probe for this board. *      You can use wdt=x,y to set these now. */ static int io = 0x3f0;static int irq = 10;static char *ev = "int"; #define WDT_TIMEOUT		60                /* 1 minute *//* * Some symbolic names  */#define WDT_CTRL_REG		0x30#define WDT_OUTPIN_CFG		0xe2   #define WDT_EVENT_INT	   0x00   #define WDT_EVENT_REBOOT	   0x08#define WDT_UNIT_SEL		0xf1   #define WDT_UNIT_SECS	   0x80#define WDT_TIMEOUT_VAL		0xf2#define WDT_TIMER_CFG		0xf3 #ifndef MODULE/** *      eurwdt_setup: *      @str: command line string * *      Setup options. The board isn't really probe-able so we have to *      get the user to tell us the configuration. Sane people build it *      modular but the others come here. */ static int __init eurwdt_setup(char *str){   int ints[4];    str = get_options (str, ARRAY_SIZE(ints), ints);    if (ints[0] > 0) {      io = ints[1];      if (ints[0] > 1)         irq = ints[2];   }    return 1;} __setup("wdt=", eurwdt_setup);#endif /* !MODULE */ MODULE_PARM(io, "i");MODULE_PARM_DESC(io, "Eurotech WDT io port (default=0x3f0)");MODULE_PARM(irq, "i");MODULE_PARM_DESC(irq, "Eurotech WDT irq (default=10)");MODULE_PARM(ev, "s");MODULE_PARM_DESC(ev, "Eurotech WDT event type (default is `reboot')");/* *      Programming support */static inline void eurwdt_write_reg(u8 index, u8 data){   outb(index, io);   outb(data, io+1);}static inline void eurwdt_lock_chip(void){   outb(0xaa, io);}static inline void eurwdt_unlock_chip(void){   outb(0x55, io);   eurwdt_write_reg(0x07, 0x08);   /* set the logical device */}static inline void eurwdt_set_timeout(int timeout){   eurwdt_write_reg(WDT_TIMEOUT_VAL, (u8) timeout);}static inline void eurwdt_disable_timer(void){   eurwdt_set_timeout(0);} static void eurwdt_activate_timer(void){   eurwdt_disable_timer();   eurwdt_write_reg(WDT_CTRL_REG, 0x01);      /* activate the WDT */   eurwdt_write_reg(WDT_OUTPIN_CFG, !strcmp("int", ev) ?                                    WDT_EVENT_INT : WDT_EVENT_REBOOT);   /* Setting interrupt line */   if (irq == 2 || irq > 15 || irq < 0) {      printk(KERN_ERR ": invalid irq number\n");      irq = 0;   /* if invalid we disable interrupt */   }   if (irq == 0)      printk(KERN_INFO ": interrupt disabled\n");   eurwdt_write_reg(WDT_TIMER_CFG, irq<<4);   eurwdt_write_reg(WDT_UNIT_SEL, WDT_UNIT_SECS);   /* we use seconds */   eurwdt_set_timeout(0);                           /* the default timeout */ }/* *      Kernel methods. */ void eurwdt_interrupt(int irq, void *dev_id, struct pt_regs *regs){   printk(KERN_CRIT "timeout WDT timeout\n"); #ifdef ONLY_TESTING   printk(KERN_CRIT "Would Reboot.\n");#else   printk(KERN_CRIT "Initiating system reboot.\n");   machine_restart(NULL);#endif}/** *      eurwdt_ping: * *      Reload counter one with the watchdog timeout. */ static void eurwdt_ping(void){   /* Write the watchdog default value */   eurwdt_set_timeout(eurwdt_timeout);} /** *      eurwdt_write: *      @file: file handle to the watchdog *      @buf: buffer to write (unused as data does not matter here *      @count: count of bytes *      @ppos: pointer to the position to write. No seeks allowed * *      A write to a watchdog device is defined as a keepalive signal. Any *      write of data will do, as we we don't define content meaning. */ static ssize_t eurwdt_write(struct file *file, const char *buf, size_t count,loff_t *ppos){   /*  Can't seek (pwrite) on this device  */   if (ppos != &file->f_pos)      return -ESPIPE;    if (count) {      eurwdt_ping();   /* the default timeout */      return 1;   }   return 0;}/** *      eurwdt_ioctl: *      @inode: inode of the device *      @file: file handle to the device *      @cmd: watchdog command *      @arg: argument pointer * *      The watchdog API defines a common set of functions for all watchdogs *      according to their available features. */ static int eurwdt_ioctl(struct inode *inode, struct file *file,        unsigned int cmd, unsigned long arg){   static struct watchdog_info ident = {      options		: WDIOF_CARDRESET | WDIOF_SETTIMEOUT,      firmware_version	: 1,      identity		: "WDT Eurotech CPU-1220/1410"   };   int time;    switch(cmd) {      default:         return -ENOTTY;      case WDIOC_GETSUPPORT:         return copy_to_user((struct watchdog_info *)arg, &ident,               sizeof(ident)) ? -EFAULT : 0;       case WDIOC_GETBOOTSTATUS:         return put_user(0, (int *) arg);      case WDIOC_KEEPALIVE:         eurwdt_ping();         return 0;      case WDIOC_SETTIMEOUT:         if (copy_from_user(&time, (int *) arg, sizeof(int)))            return -EFAULT;         /* Sanity check */         if (time < 0 || time > 255)            return -EINVAL;         eurwdt_timeout = time;          eurwdt_set_timeout(time); 	 /* Fall */      case WDIOC_GETTIMEOUT:	 return put_user(eurwdt_timeout, (int *)arg);   }}/** *      eurwdt_open: *      @inode: inode of device *      @file: file handle to device * *      The misc device has been opened. The watchdog device is single *      open and on opening we load the counter. */ static int eurwdt_open(struct inode *inode, struct file *file){   switch (MINOR(inode->i_rdev)) {      case WATCHDOG_MINOR:         spin_lock(&eurwdt_lock);         if (eurwdt_is_open) {            spin_unlock(&eurwdt_lock);            return -EBUSY;         }         eurwdt_is_open = 1;         eurwdt_timeout = WDT_TIMEOUT;   /* initial timeout */         /* Activate the WDT */         eurwdt_activate_timer();                      spin_unlock(&eurwdt_lock);         MOD_INC_USE_COUNT;         return 0;         case TEMP_MINOR:            return 0;         default:            return -ENODEV;   }} /** *      eurwdt_release: *      @inode: inode to board *      @file: file handle to board * *      The watchdog has a configurable API. There is a religious dispute *      between people who want their watchdog to be able to shut down and *      those who want to be sure if the watchdog manager dies the machine *      reboots. In the former case we disable the counters, in the latter *      case you have to open it again very soon. */ static int eurwdt_release(struct inode *inode, struct file *file){   if (MINOR(inode->i_rdev) == WATCHDOG_MINOR) {#ifndef CONFIG_WATCHDOG_NOWAYOUT      eurwdt_disable_timer();#endif      eurwdt_is_open = 0;      MOD_DEC_USE_COUNT;   }   return 0;} /** *      eurwdt_notify_sys: *      @this: our notifier block *      @code: the event being reported *      @unused: unused * *      Our notifier is called on system shutdowns. We want to turn the card *      off at reboot otherwise the machine will reboot again during memory *      test or worse yet during the following fsck. This would suck, in fact *      trust me - if it happens it does suck. */ static int eurwdt_notify_sys(struct notifier_block *this, unsigned long code,        void *unused){   if (code == SYS_DOWN || code == SYS_HALT) {      /* Turn the card off */      eurwdt_disable_timer();   }   return NOTIFY_DONE;} /* *      Kernel Interfaces */  static struct file_operations eurwdt_fops = {        owner:          THIS_MODULE,        llseek:         no_llseek,        write:          eurwdt_write,        ioctl:          eurwdt_ioctl,        open:           eurwdt_open,        release:        eurwdt_release,};static struct miscdevice eurwdt_miscdev ={        WATCHDOG_MINOR,        "watchdog",        &eurwdt_fops}; /* *      The WDT card needs to learn about soft shutdowns in order to *      turn the timebomb registers off. */ static struct notifier_block eurwdt_notifier ={        eurwdt_notify_sys,        NULL,        0}; /** *      cleanup_module: * *      Unload the watchdog. You cannot do this with any file handles open. *      If your watchdog is set to continue ticking on close and you unload *      it, well it keeps ticking. We won't get the interrupt but the board *      will not touch PC memory so all is fine. You just have to load a new *      module in 60 seconds or reboot. */ static void __exit eurwdt_exit(void){   eurwdt_lock_chip();   misc_deregister(&eurwdt_miscdev);   unregister_reboot_notifier(&eurwdt_notifier);   release_region(io, 2);   free_irq(irq, NULL);} /** *      eurwdt_init: * *      Set up the WDT watchdog board. After grabbing the resources  *      we require we need also to unlock the device. *      The open() function will actually kick the board off. */ static int __init eurwdt_init(void){   int ret;    ret = misc_register(&eurwdt_miscdev);   if (ret) {      printk(KERN_ERR "eurwdt: can't misc_register on minor=%d\n",            WATCHDOG_MINOR);      goto out;   }   ret = request_irq(irq, eurwdt_interrupt, SA_INTERRUPT, "eurwdt", NULL);   if(ret) {      printk(KERN_ERR "eurwdt: IRQ %d is not free.\n", irq);      goto outmisc;   }   if (!request_region(io, 2, "eurwdt")) {       printk(KERN_ERR "eurwdt: IO %X is not free.\n", io);       ret = -EBUSY;       goto outirq;   }   ret = register_reboot_notifier(&eurwdt_notifier);   if (ret) {      printk(KERN_ERR "eurwdt: can't register reboot notifier (err=%d)\n", ret);      goto outreg;   }   eurwdt_unlock_chip();    ret = 0;   printk(KERN_INFO "Eurotech WDT driver 0.01 at %X (Interrupt %d)"                    " - timeout event: %s\n",          io, irq, (!strcmp("int", ev) ? "int" : "reboot"));   spin_lock_init(&eurwdt_lock);   out:      return ret;    outreg:      release_region(io, 2);   outirq:      free_irq(irq, NULL);   outmisc:      misc_deregister(&eurwdt_miscdev);      goto out;} module_init(eurwdt_init);module_exit(eurwdt_exit); MODULE_AUTHOR("Rodolfo Giometti");MODULE_DESCRIPTION("Driver for Eurotech CPU-1220/1410 on board watchdog");MODULE_LICENSE("GPL");EXPORT_NO_SYMBOLS;

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
三级不卡在线观看| 成人av电影在线网| 在线精品亚洲一区二区不卡| 亚洲欧美色图小说| 日韩一二三区不卡| 一区二区三区四区视频精品免费| 欧美日韩mp4| 国内一区二区视频| 亚洲欧美色综合| 国产亚洲精久久久久久| 色呦呦国产精品| 韩国视频一区二区| 亚洲一区二区三区四区的| 精品不卡在线视频| 国产精品1区2区| 久久久精品国产99久久精品芒果 | 91福利精品视频| 久久先锋影音av鲁色资源| 亚洲一区二区四区蜜桃| av资源站一区| 亚洲蜜臀av乱码久久精品| 色婷婷av一区二区三区软件| 一区在线播放视频| 色欧美乱欧美15图片| 亚洲一二三四久久| 欧美精品一区男女天堂| 国产一区二区三区在线观看免费 | 免费亚洲电影在线| 成人自拍视频在线| 一区二区三区高清在线| 欧美日韩国产小视频| 婷婷综合另类小说色区| 91久久国产综合久久| 亚洲成人在线观看视频| 欧美日本韩国一区二区三区视频| 日本一区中文字幕| 欧美一区三区四区| 亚洲国产中文字幕| 成人美女在线观看| 亚洲天堂a在线| 欧美日韩高清在线| 色综合久久久久综合体| 欧美精品成人一区二区三区四区| 自拍偷拍亚洲欧美日韩| 91碰在线视频| 91日韩在线专区| 91在线观看视频| 99riav久久精品riav| 成人国产精品免费观看视频| 国v精品久久久网| 高清在线观看日韩| 99精品一区二区三区| 在线观看一区二区视频| 美女在线视频一区| 亚洲午夜久久久久中文字幕久| 国产日韩欧美精品在线| 欧美日韩在线三区| av一区二区三区四区| 午夜亚洲福利老司机| 国产精品久久久久久久久久免费看 | 欧美色精品在线视频| 日韩电影一区二区三区四区| 亚洲成人一区二区| 亚洲一级二级在线| 亚洲品质自拍视频| 亚洲欧美另类图片小说| 国产精品免费视频网站| 欧美国产一区在线| 国产欧美1区2区3区| 精品国产乱码久久久久久闺蜜| 欧美日韩国产中文| 国产视频一区在线观看 | 99精品视频一区| 日本欧美一区二区| 成人97人人超碰人人99| 国产肉丝袜一区二区| 欧美一级午夜免费电影| 91最新地址在线播放| 欧美日韩精品一区二区三区蜜桃| 日韩欧美激情一区| 中文一区一区三区高中清不卡| 亚洲精品国产成人久久av盗摄| 日韩精品久久理论片| 成人激情文学综合网| 欧美日韩大陆一区二区| 久久久久久久综合狠狠综合| 亚洲免费在线视频一区 二区| 日本 国产 欧美色综合| 成人一区二区三区视频在线观看| 日韩精品一区二区三区三区免费| 精品理论电影在线| 国产精品嫩草影院av蜜臀| 亚洲大片免费看| 国产69精品久久777的优势| 欧美日韩日本视频| 亚洲尤物视频在线| 美女视频黄 久久| 91视频免费看| 日韩欧美一级在线播放| 综合欧美亚洲日本| 美日韩一级片在线观看| 久久日韩精品一区二区五区| 色老汉av一区二区三区| 欧美一区二区成人| 久久久精品综合| 亚洲成人av一区二区| 成人精品亚洲人成在线| 欧美一级片在线看| 亚洲一线二线三线久久久| 国产精品一区二区三区乱码| 欧美日韩亚洲不卡| 亚洲男帅同性gay1069| 国产成a人亚洲精| 久久综合九色综合97婷婷女人| 视频在线观看91| 在线亚洲一区二区| 国产视频一区二区在线观看| 精品系列免费在线观看| 欧美日韩国产天堂| 亚洲美女视频一区| 成人激情视频网站| 国产精品视频线看| 国产成人av电影在线| 久久精子c满五个校花| 另类调教123区| 国产美女一区二区| 国产精品女人毛片| 欧美日韩国产一二三| 婷婷丁香久久五月婷婷| 91精品国产综合久久福利软件 | 欧美日韩免费观看一区二区三区| 国产精品国产馆在线真实露脸| 成人午夜视频免费看| 国产精品护士白丝一区av| 久久亚洲一区二区三区明星换脸| 国产欧美1区2区3区| 国产一区二区三区精品视频| 欧美大片一区二区| 久久精品av麻豆的观看方式| 这里是久久伊人| 日韩高清电影一区| 91精品国产入口在线| 日韩不卡一二三区| 精品久久久久久久人人人人传媒| 欧美一区二区三区思思人| 捆绑调教美女网站视频一区| 欧美一区二区精美| 色婷婷激情综合| 国产剧情av麻豆香蕉精品| 亚洲人成小说网站色在线| 在线亚洲免费视频| 国产精品影音先锋| 丝袜美腿亚洲一区二区图片| 国产乱理伦片在线观看夜一区| 韩国午夜理伦三级不卡影院| 中文字幕一区av| 日韩久久免费av| 美腿丝袜亚洲综合| 国产精品乱码妇女bbbb| 亚洲乱码精品一二三四区日韩在线| 国产精品动漫网站| 亚洲国产精品一区二区久久| 亚洲第一精品在线| 免费观看在线综合| 51精品国自产在线| 日韩一区二区三区高清免费看看| 国产精品麻豆99久久久久久| 久久综合五月天婷婷伊人| 日韩免费电影网站| 亚洲欧洲精品一区二区三区不卡 | 91在线云播放| 亚洲一区二区三区中文字幕| 精品欧美一区二区三区精品久久| 国产精品一二三四| 色噜噜狠狠色综合欧洲selulu| 免费成人在线观看视频| 亚洲桃色在线一区| 久久女同精品一区二区| 欧美日韩精品欧美日韩精品一| 99久久久无码国产精品| 开心九九激情九九欧美日韩精美视频电影 | 欧美精品在欧美一区二区少妇| 视频一区在线播放| 91行情网站电视在线观看高清版| 宅男噜噜噜66一区二区66| 成人免费一区二区三区在线观看| 日本网站在线观看一区二区三区| 91在线一区二区三区| 欧美一区二区三区不卡| 综合欧美亚洲日本| 粉嫩av一区二区三区| 亚洲天堂免费看| 不卡欧美aaaaa| 国产欧美日韩精品在线| 91啪九色porn原创视频在线观看| 国产美女在线精品| 国产乱子伦一区二区三区国色天香| 亚洲综合一区二区三区| 国产欧美精品区一区二区三区| 精品久久国产老人久久综合|