Wolfgang Denk | 6cb142f | 2006-03-12 02:12:27 +0100 | [diff] [blame] | 1 | /* |
| 2 | * U-boot - machdep.h |
| 3 | * |
Aubrey Li | 155fd76 | 2007-04-05 18:31:18 +0800 | [diff] [blame] | 4 | * Copyright (c) 2005-2007 Analog Devices Inc. |
Wolfgang Denk | 6cb142f | 2006-03-12 02:12:27 +0100 | [diff] [blame] | 5 | * |
| 6 | * See file CREDITS for list of people who contributed to this |
| 7 | * project. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation; either version 2 of |
| 12 | * the License, or (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
Aubrey Li | 155fd76 | 2007-04-05 18:31:18 +0800 | [diff] [blame] | 21 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, |
| 22 | * MA 02110-1301 USA |
Wolfgang Denk | 6cb142f | 2006-03-12 02:12:27 +0100 | [diff] [blame] | 23 | */ |
| 24 | |
| 25 | #ifndef _BLACKFIN_MACHDEP_H |
| 26 | #define _BLACKFIN_MACHDEP_H |
| 27 | |
| 28 | /* Machine dependent initial routines: |
| 29 | * |
| 30 | * Based on include/asm-m68knommu/machdep.h |
| 31 | * For blackfin, just now we only have bfin, so they'd point to the default bfin |
| 32 | * |
| 33 | */ |
| 34 | |
| 35 | struct pt_regs; |
| 36 | struct kbd_repeat; |
| 37 | struct mktime; |
| 38 | struct hwclk_time; |
| 39 | struct gendisk; |
| 40 | struct buffer_head; |
| 41 | |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 42 | extern |
| 43 | void (*mach_sched_init) (void (*handler) (int, void *, struct pt_regs *)); |
Wolfgang Denk | 6cb142f | 2006-03-12 02:12:27 +0100 | [diff] [blame] | 44 | |
| 45 | /* machine dependent keyboard functions */ |
| 46 | extern int (*mach_keyb_init) (void); |
| 47 | extern int (*mach_kbdrate) (struct kbd_repeat *); |
| 48 | extern void (*mach_kbd_leds) (unsigned int); |
| 49 | |
| 50 | /* machine dependent irq functions */ |
| 51 | extern void (*mach_init_IRQ) (void); |
| 52 | extern void (*(*mach_default_handler)[]) (int, void *, struct pt_regs *); |
| 53 | extern int (*mach_request_irq) (unsigned int irq, |
| 54 | void (*handler) (int, void *, |
| 55 | struct pt_regs *), |
| 56 | unsigned long flags, const char *devname, |
| 57 | void *dev_id); |
| 58 | extern void (*mach_free_irq) (unsigned int irq, void *dev_id); |
| 59 | extern void (*mach_get_model) (char *model); |
| 60 | extern int (*mach_get_hardware_list) (char *buffer); |
| 61 | extern int (*mach_get_irq_list) (char *buf); |
| 62 | extern void (*mach_process_int) (int irq, struct pt_regs * fp); |
| 63 | |
| 64 | /* machine dependent timer functions */ |
| 65 | extern unsigned long (*mach_gettimeoffset) (void); |
| 66 | extern void (*mach_gettod) (int *year, int *mon, int *day, int *hour, |
| 67 | int *min, int *sec); |
| 68 | extern int (*mach_hwclk) (int, struct hwclk_time *); |
| 69 | extern int (*mach_set_clock_mmss) (unsigned long); |
| 70 | extern void (*mach_reset) (void); |
| 71 | extern void (*mach_halt) (void); |
| 72 | extern void (*mach_power_off) (void); |
| 73 | extern unsigned long (*mach_hd_init) (unsigned long, unsigned long); |
| 74 | extern void (*mach_hd_setup) (char *, int *); |
| 75 | extern long mach_max_dma_address; |
| 76 | extern void (*mach_floppy_setup) (char *, int *); |
| 77 | extern void (*mach_floppy_eject) (void); |
| 78 | extern void (*mach_heartbeat) (int); |
| 79 | extern void (*mach_l2_flush) (int); |
| 80 | extern int mach_sysrq_key; |
| 81 | extern int mach_sysrq_shift_state; |
| 82 | extern int mach_sysrq_shift_mask; |
| 83 | extern char *mach_sysrq_xlate; |
| 84 | |
| 85 | #ifdef CONFIG_UCLINUX |
| 86 | extern void config_BSP(char *command, int len); |
| 87 | extern void (*mach_tick) (void); |
| 88 | #endif |
| 89 | |
| 90 | #endif |