machdep.h 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  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. #ifndef _BLACKFIN_MACHDEP_H
  25. #define _BLACKFIN_MACHDEP_H
  26. /* Machine dependent initial routines:
  27. *
  28. * Based on include/asm-m68knommu/machdep.h
  29. * For blackfin, just now we only have bfin, so they'd point to the default bfin
  30. *
  31. */
  32. struct pt_regs;
  33. struct kbd_repeat;
  34. struct mktime;
  35. struct hwclk_time;
  36. struct gendisk;
  37. struct buffer_head;
  38. extern void (*mach_sched_init) (void (*handler) (int, void *, struct pt_regs *));
  39. /* machine dependent keyboard functions */
  40. extern int (*mach_keyb_init) (void);
  41. extern int (*mach_kbdrate) (struct kbd_repeat *);
  42. extern void (*mach_kbd_leds) (unsigned int);
  43. /* machine dependent irq functions */
  44. extern void (*mach_init_IRQ) (void);
  45. extern void (*(*mach_default_handler)[]) (int, void *, struct pt_regs *);
  46. extern int (*mach_request_irq) (unsigned int irq,
  47. void (*handler) (int, void *,
  48. struct pt_regs *),
  49. unsigned long flags, const char *devname,
  50. void *dev_id);
  51. extern void (*mach_free_irq) (unsigned int irq, void *dev_id);
  52. extern void (*mach_get_model) (char *model);
  53. extern int (*mach_get_hardware_list) (char *buffer);
  54. extern int (*mach_get_irq_list) (char *buf);
  55. extern void (*mach_process_int) (int irq, struct pt_regs * fp);
  56. /* machine dependent timer functions */
  57. extern unsigned long (*mach_gettimeoffset) (void);
  58. extern void (*mach_gettod) (int *year, int *mon, int *day, int *hour,
  59. int *min, int *sec);
  60. extern int (*mach_hwclk) (int, struct hwclk_time *);
  61. extern int (*mach_set_clock_mmss) (unsigned long);
  62. extern void (*mach_reset) (void);
  63. extern void (*mach_halt) (void);
  64. extern void (*mach_power_off) (void);
  65. extern unsigned long (*mach_hd_init) (unsigned long, unsigned long);
  66. extern void (*mach_hd_setup) (char *, int *);
  67. extern long mach_max_dma_address;
  68. extern void (*mach_floppy_setup) (char *, int *);
  69. extern void (*mach_floppy_eject) (void);
  70. extern void (*mach_heartbeat) (int);
  71. extern void (*mach_l2_flush) (int);
  72. extern int mach_sysrq_key;
  73. extern int mach_sysrq_shift_state;
  74. extern int mach_sysrq_shift_mask;
  75. extern char *mach_sysrq_xlate;
  76. #ifdef CONFIG_UCLINUX
  77. extern void config_BSP(char *command, int len);
  78. extern void (*mach_tick) (void);
  79. #endif
  80. #endif