blob: d530f68b4eef6b56cf6b4aa51593b2280f23e62f [file] [log] [blame]
Vitaly Bordug3dd0dcb2006-09-21 17:27:15 +04001/*
2 * Platform information definitions.
3 *
4 * 2006 (c) MontaVista Software, Inc.
5 * Vitaly Bordug <vbordug@ru.mvista.com>
6 *
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.
10 */
11
12#ifndef FS_PD_H
13#define FS_PD_H
14#include <sysdev/fsl_soc.h>
15#include <asm/time.h>
16
17static inline int uart_baudrate(void)
18{
19 return get_baudrate();
20}
21
22static inline int uart_clock(void)
23{
24 return ppc_proc_freq;
25}
26
27#endif