Blame view

include/linux/mtd/xip.h 2.67 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  /*
   * MTD primitives for XIP support
   *
   * Author:	Nicolas Pitre
   * Created:	Nov 2, 2004
   * Copyright:	(C) 2004 MontaVista Software, Inc.
   *
   * This XIP support for MTD has been loosely inspired
   * by an earlier patch authored by David Woodhouse.
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   *
61ecfa877   Thomas Gleixner   [MTD] includes: C...
15
   * $Id: xip.h,v 1.5 2005/11/07 11:14:55 gleixner Exp $
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16
17
18
19
   */
  
  #ifndef __LINUX_MTD_XIP_H__
  #define __LINUX_MTD_XIP_H__
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
21
22
23
  
  #ifdef CONFIG_MTD_XIP
  
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24
25
26
27
28
29
   * We really don't want gcc to guess anything.
   * We absolutely _need_ proper inlining.
   */
  #include <linux/compiler.h>
  
  /*
fb0258730   Nicolas Pitre   [MTD] Don't let g...
30
31
32
33
34
35
36
   * Function that are modifying the flash state away from array mode must
   * obviously not be running from flash.  The __xipram is therefore marking
   * those functions so they get relocated to ram.
   */
  #define __xipram noinline __attribute__ ((__section__ (".data")))
  
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
   * Each architecture has to provide the following macros.  They must access
   * the hardware directly and not rely on any other (XIP) functions since they
   * won't be available when used (flash not in array mode).
   *
   * xip_irqpending()
   *
   * 	return non zero when any hardware interrupt is pending.
   *
   * xip_currtime()
   *
   * 	return a platform specific time reference to be used with
   * 	xip_elapsed_since().
   *
   * xip_elapsed_since(x)
   *
   * 	return in usecs the elapsed timebetween now and the reference x as
   * 	returned by xip_currtime().
   *
   * 	note 1: convertion to usec can be approximated, as long as the
   * 		returned value is <= the real elapsed time.
   * 	note 2: this should be able to cope with a few seconds without
   * 		overflowing.
97f927a4d   Thomas Gleixner   [MTD] XIP cleanup
59
60
   *
   * xip_iprefetch()
61ecfa877   Thomas Gleixner   [MTD] includes: C...
61
   *
97f927a4d   Thomas Gleixner   [MTD] XIP cleanup
62
   *      Macro to fill instruction prefetch
61ecfa877   Thomas Gleixner   [MTD] includes: C...
63
   *	e.g. a series of nops:  asm volatile (".rep 8; nop; .endr");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
64
   */
97f927a4d   Thomas Gleixner   [MTD] XIP cleanup
65
  #include <asm/mtd-xip.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
66

97f927a4d   Thomas Gleixner   [MTD] XIP cleanup
67
  #ifndef xip_irqpending
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
68
69
70
71
72
73
74
75
76
77
  
  #warning "missing IRQ and timer primitives for XIP MTD support"
  #warning "some of the XIP MTD support code will be disabled"
  #warning "your system will therefore be unresponsive when writing or erasing flash"
  
  #define xip_irqpending()	(0)
  #define xip_currtime()		(0)
  #define xip_elapsed_since(x)	(0)
  
  #endif
97f927a4d   Thomas Gleixner   [MTD] XIP cleanup
78
79
80
  #ifndef xip_iprefetch
  #define xip_iprefetch()		do { } while (0)
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
81
82
83
84
  /*
   * xip_cpu_idle() is used when waiting for a delay equal or larger than
   * the system timer tick period.  This should put the CPU into idle mode
   * to save power and to be woken up only when some interrupts are pending.
97f927a4d   Thomas Gleixner   [MTD] XIP cleanup
85
   * This should not rely upon standard kernel code.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
86
   */
97f927a4d   Thomas Gleixner   [MTD] XIP cleanup
87
  #ifndef xip_cpu_idle
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
88
89
90
91
92
93
94
95
96
97
  #define xip_cpu_idle()  do { } while (0)
  #endif
  
  #else
  
  #define __xipram
  
  #endif /* CONFIG_MTD_XIP */
  
  #endif /* __LINUX_MTD_XIP_H__ */