diff options
| author | Vitaly Bordug <vbordug@ru.mvista.com> | 2006-09-21 09:27:15 -0400 |
|---|---|---|
| committer | Vitaly Bordug <vbordug@ru.mvista.com> | 2006-09-21 09:27:15 -0400 |
| commit | 3dd0dcbe9dc5c116df96989c42a062951b644e04 (patch) | |
| tree | 348b654c3e4ae5518369358c5033d0467ce2b4fd /include | |
| parent | fba43665360d361d338efd120a34ad615ca960d8 (diff) | |
cpm_uart: make it possible to utilize from powerpc
Driver core has been updated to make use of the new powerpc OF-inspired
platform devices, yet keeping compatibility to the vast board list from
ppc.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-powerpc/fs_pd.h | 27 | ||||
| -rw-r--r-- | include/asm-ppc/fs_pd.h | 32 |
2 files changed, 59 insertions, 0 deletions
diff --git a/include/asm-powerpc/fs_pd.h b/include/asm-powerpc/fs_pd.h new file mode 100644 index 000000000000..d530f68b4eef --- /dev/null +++ b/include/asm-powerpc/fs_pd.h | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | /* | ||
| 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 | |||
| 17 | static inline int uart_baudrate(void) | ||
| 18 | { | ||
| 19 | return get_baudrate(); | ||
| 20 | } | ||
| 21 | |||
| 22 | static inline int uart_clock(void) | ||
| 23 | { | ||
| 24 | return ppc_proc_freq; | ||
| 25 | } | ||
| 26 | |||
| 27 | #endif | ||
diff --git a/include/asm-ppc/fs_pd.h b/include/asm-ppc/fs_pd.h new file mode 100644 index 000000000000..eed777834121 --- /dev/null +++ b/include/asm-ppc/fs_pd.h | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | /* | ||
| 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 | |||
| 15 | static inline int uart_baudrate(void) | ||
| 16 | { | ||
| 17 | int baud; | ||
| 18 | bd_t *bd = (bd_t *) __res; | ||
| 19 | |||
| 20 | if (bd->bi_baudrate) | ||
| 21 | baud = bd->bi_baudrate; | ||
| 22 | else | ||
| 23 | baud = -1; | ||
| 24 | return baud; | ||
| 25 | } | ||
| 26 | |||
| 27 | static inline int uart_clock(void) | ||
| 28 | { | ||
| 29 | return (((bd_t *) __res)->bi_intfreq); | ||
| 30 | } | ||
| 31 | |||
| 32 | #endif | ||
