blob: 0a43ba1c5a77d99e20f15062458686ee722ed874 [file] [log] [blame]
Wolfgang Denk6cb142f2006-03-12 02:12:27 +01001/*
2 * U-boot - machdep.h
3 *
4 * Copyright (c) 2005 blackfin.uclinux.org
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
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
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
35struct pt_regs;
36struct kbd_repeat;
37struct mktime;
38struct hwclk_time;
39struct gendisk;
40struct buffer_head;
41
42extern void (*mach_sched_init) (void (*handler) (int, void *, struct pt_regs *));
43
44/* machine dependent keyboard functions */
45extern int (*mach_keyb_init) (void);
46extern int (*mach_kbdrate) (struct kbd_repeat *);
47extern void (*mach_kbd_leds) (unsigned int);
48
49/* machine dependent irq functions */
50extern void (*mach_init_IRQ) (void);
51extern void (*(*mach_default_handler)[]) (int, void *, struct pt_regs *);
52extern int (*mach_request_irq) (unsigned int irq,
53 void (*handler) (int, void *,
54 struct pt_regs *),
55 unsigned long flags, const char *devname,
56 void *dev_id);
57extern void (*mach_free_irq) (unsigned int irq, void *dev_id);
58extern void (*mach_get_model) (char *model);
59extern int (*mach_get_hardware_list) (char *buffer);
60extern int (*mach_get_irq_list) (char *buf);
61extern void (*mach_process_int) (int irq, struct pt_regs * fp);
62
63/* machine dependent timer functions */
64extern unsigned long (*mach_gettimeoffset) (void);
65extern void (*mach_gettod) (int *year, int *mon, int *day, int *hour,
66 int *min, int *sec);
67extern int (*mach_hwclk) (int, struct hwclk_time *);
68extern int (*mach_set_clock_mmss) (unsigned long);
69extern void (*mach_reset) (void);
70extern void (*mach_halt) (void);
71extern void (*mach_power_off) (void);
72extern unsigned long (*mach_hd_init) (unsigned long, unsigned long);
73extern void (*mach_hd_setup) (char *, int *);
74extern long mach_max_dma_address;
75extern void (*mach_floppy_setup) (char *, int *);
76extern void (*mach_floppy_eject) (void);
77extern void (*mach_heartbeat) (int);
78extern void (*mach_l2_flush) (int);
79extern int mach_sysrq_key;
80extern int mach_sysrq_shift_state;
81extern int mach_sysrq_shift_mask;
82extern char *mach_sysrq_xlate;
83
84#ifdef CONFIG_UCLINUX
85extern void config_BSP(char *command, int len);
86extern void (*mach_tick) (void);
87#endif
88
89#endif