diff options
author | Dima Zavin <dima@android.com> | 2011-10-02 18:59:49 -0700 |
---|---|---|
committer | Dima Zavin <dima@android.com> | 2011-10-25 23:10:19 -0700 |
commit | 31763ea4205553ec79a24f24bf355219fb4d9041 (patch) | |
tree | 948ad14828c27907ad679dfa6bbcf0eaf2076a7b /arch/arm/mach-omap2/include/mach | |
parent | 7400e81d5726164b6f9d114a0f073e104ef46416 (diff) | |
download | kernel_samsung_tuna-31763ea4205553ec79a24f24bf355219fb4d9041.zip kernel_samsung_tuna-31763ea4205553ec79a24f24bf355219fb4d9041.tar.gz kernel_samsung_tuna-31763ea4205553ec79a24f24bf355219fb4d9041.tar.bz2 |
ARM: omap4: add OMAP support for the fiq debugger
Due to platform limitations, it only currently supports IRQ-only
fiq debugger.
Change-Id: I95508183a40793e1220769e34305bbe9fb6ede4e
Signed-off-by: Dima Zavin <dima@android.com>
Diffstat (limited to 'arch/arm/mach-omap2/include/mach')
-rw-r--r-- | arch/arm/mach-omap2/include/mach/omap_fiq_debugger.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/include/mach/omap_fiq_debugger.h b/arch/arm/mach-omap2/include/mach/omap_fiq_debugger.h new file mode 100644 index 0000000..c49608e --- /dev/null +++ b/arch/arm/mach-omap2/include/mach/omap_fiq_debugger.h @@ -0,0 +1,35 @@ +/* + * Copyright (C) 2011 Google, Inc. + * + * This software is licensed under the terms of the GNU General Public + * License version 2, as published by the Free Software Foundation, and + * may be copied, distributed, and modified under those terms. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + */ + +#ifndef __MACH_OMAP_FIQ_DEBUGGER_H +#define __MACH_OMAP_FIQ_DEBUGGER_H + +#ifdef CONFIG_OMAP_FIQ_DEBUGGER +int __init omap_serial_debug_init(int id, bool is_fiq, bool is_high_prio_irq, + struct omap_device_pad *pads, int num_pads); +u32 omap_debug_uart_resume_idle(void); + +#else +static inline int __init omap_serial_debug_init(int id, bool is_fiq, bool is_high_prio_irq, + struct omap_device_pad *pads, int num_pads) +{ +} + +static inline u32 omap_debug_uart_resume_idle(void) +{ + return 0; +} +#endif + +#endif |