iseries_setup.h
来自「是关于linux2.5.1的完全源码」· C头文件 代码 · 共 62 行
H
62 行
/* * Copyright (c) 2000 Mike Corrigan <mikejc@us.ibm.com> * Copyright (c) 1999-2000 Grant Erickson <grant@lcse.umn.edu> * * Module name: iSeries_setup.h * * Description: * Architecture- / platform-specific boot-time initialization code for * the IBM iSeries LPAR. Adapted from original code by Grant Erickson and * code by Gary Thomas, Cort Dougan <cort@cs.nmt.edu>, and Dan Malek * <dan@netx4.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. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */#ifndef __ISERIES_SETUP_H__#define __ISERIES_SETUP_H__#ifdef __cplusplusextern "C" {#endifextern void iSeries_init(unsigned long r3, unsigned long ird_start, unsigned long ird_end, unsigned long cline_start, unsigned long cline_end);extern void iSeries_setup_arch(void);extern int iSeries_setup_residual(char *buffer);extern int iSeries_get_cpuinfo(char *buffer);extern void iSeries_init_IRQ(void);extern int iSeries_get_irq(struct pt_regs *regs);extern void iSeries_restart(char *cmd);extern void iSeries_power_off(void);extern void iSeries_halt(void);extern void iSeries_time_init(void);extern int iSeries_set_rtc_time(unsigned long now);extern unsigned long iSeries_get_rtc_time(void);extern void iSeries_calibrate_decr(void);extern void iSeries_progress( char *, unsigned short );extern unsigned int iSeries_build_hose_list(void);#ifdef __cplusplus}#endif#endif /* __ISERIES_SETUP_H__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?