Path: blob/master/arch/powerpc/platforms/iseries/setup.h
10820 views
/*1* Copyright (c) 2000 Mike Corrigan <[email protected]>2* Copyright (c) 1999-2000 Grant Erickson <[email protected]>3*4* Description:5* Architecture- / platform-specific boot-time initialization code for6* the IBM AS/400 LPAR. Adapted from original code by Grant Erickson and7* code by Gary Thomas, Cort Dougan <[email protected]>, and Dan Malek8* <[email protected]>.9*10* This program is free software; you can redistribute it and/or11* modify it under the terms of the GNU General Public License12* as published by the Free Software Foundation; either version13* 2 of the License, or (at your option) any later version.14*/1516#ifndef __ISERIES_SETUP_H__17#define __ISERIES_SETUP_H__1819extern void *iSeries_early_setup(void);20extern unsigned long iSeries_get_boot_time(void);21extern int iSeries_set_rtc_time(struct rtc_time *tm);22extern void iSeries_get_rtc_time(struct rtc_time *tm);2324extern void *build_flat_dt(unsigned long phys_mem_size);2526#endif /* __ISERIES_SETUP_H__ */272829