/* * This file contains the RTC driver table for Motorola shared BSPs. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ */ #include #include #include /* Forward function declaration */ #if !defined(mvme2100) uint32_t mvmertc_get_register( uint32_t, uint8_t ); void mvmertc_set_register( uint32_t, uint8_t, uint32_t ); #endif /* The following table configures the RTC drivers used in this BSP */ rtc_tbl RTC_Table[] = { { "/dev/rtc", /* sDeviceName */ RTC_M48T08, /* deviceType -- actually M48T59 */ &m48t08_fns, /* pDeviceFns */ rtc_probe, /* deviceProbe */ NULL, /* pDeviceParams */ #if defined(mvme2100) 0xFFE81ff8, /* ulCtrlPort1 */ 0x00, /* ulDataPort */ m48t08_get_register, /* getRegister */ m48t08_set_register /* setRegister */ #else 0xFFE81ff8, /* ulCtrlPort1 */ 0x00, /* ulDataPort */ mvmertc_get_register, /* getRegister */ mvmertc_set_register /* setRegister */ #endif } }; /* Some information used by the RTC driver */ #define NUM_RTCS (sizeof(RTC_Table)/sizeof(rtc_tbl)) size_t RTC_Count = NUM_RTCS; rtems_device_minor_number RTC_Minor; #if !defined(mvme2100) #include void mvmertc_set_register( uint32_t base, uint8_t reg, uint32_t value ) { printk( "RTC SUPPORT NOT IMPLEMENTED ON THIS BOARD\n"); } uint32_t mvmertc_get_register( uint32_t base, uint8_t reg ) { printk( "RTC SUPPORT NOT IMPLEMENTED ON THIS BOARD\n"); return 0; } #endif