2 * Platform information definitions.
4 * 2006 (c) MontaVista Software, Inc.
5 * Vitaly Bordug <vbordug@ru.mvista.com>
7 * This file is licensed under the terms of the GNU General Public License
8 * version 2. This program is licensed "as is" without any warranty of any
9 * kind, whether express or implied.
15 #include <sysdev/fsl_soc.h>
18 static inline int uart_baudrate(void)
20 return get_baudrate();
23 static inline int uart_clock(void)
28 #define cpm2_map(member) \
30 u32 offset = offsetof(cpm2_map_t, member); \
31 void *addr = ioremap (CPM_MAP_ADDR + offset, \
32 sizeof( ((cpm2_map_t*)0)->member)); \
36 #define cpm2_map_size(member, size) \
38 u32 offset = offsetof(cpm2_map_t, member); \
39 void *addr = ioremap (CPM_MAP_ADDR + offset, size); \
43 #define cpm2_unmap(addr) iounmap(addr)