Blame view

kernel/linux-imx6_3.14.28/Documentation/driver-model/design-patterns.txt 3 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
  
  Device Driver Design Patterns
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  
  This document describes a few common design patterns found in device drivers.
  It is likely that subsystem maintainers will ask driver developers to
  conform to these design patterns.
  
  1. State Container
  2. container_of()
  
  
  1. State Container
  ~~~~~~~~~~~~~~~~~~
  
  While the kernel contains a few device drivers that assume that they will
  only be probed() once on a certain system (singletons), it is custom to assume
  that the device the driver binds to will appear in several instances. This
  means that the probe() function and all callbacks need to be reentrant.
  
  The most common way to achieve this is to use the state container design
  pattern. It usually has this form:
  
  struct foo {
      spinlock_t lock; /* Example member */
      (...)
  };
  
  static int foo_probe(...)
  {
      struct foo *foo;
  
      foo = devm_kzalloc(dev, sizeof(*foo), GFP_KERNEL);
      if (!foo)
          return -ENOMEM;
      spin_lock_init(&foo->lock);
      (...)
  }
  
  This will create an instance of struct foo in memory every time probe() is
  called. This is our state container for this instance of the device driver.
  Of course it is then necessary to always pass this instance of the
  state around to all functions that need access to the state and its members.
  
  For example, if the driver is registering an interrupt handler, you would
  pass around a pointer to struct foo like this:
  
  static irqreturn_t foo_handler(int irq, void *arg)
  {
      struct foo *foo = arg;
      (...)
  }
  
  static int foo_probe(...)
  {
      struct foo *foo;
  
      (...)
      ret = request_irq(irq, foo_handler, 0, "foo", foo);
  }
  
  This way you always get a pointer back to the correct instance of foo in
  your interrupt handler.
  
  
  2. container_of()
  ~~~~~~~~~~~~~~~~~
  
  Continuing on the above example we add an offloaded work:
  
  struct foo {
      spinlock_t lock;
      struct workqueue_struct *wq;
      struct work_struct offload;
      (...)
  };
  
  static void foo_work(struct work_struct *work)
  {
      struct foo *foo = container_of(work, struct foo, offload);
  
      (...)
  }
  
  static irqreturn_t foo_handler(int irq, void *arg)
  {
      struct foo *foo = arg;
  
      queue_work(foo->wq, &foo->offload);
      (...)
  }
  
  static int foo_probe(...)
  {
      struct foo *foo;
  
      foo->wq = create_singlethread_workqueue("foo-wq");
      INIT_WORK(&foo->offload, foo_work);
      (...)
  }
  
  The design pattern is the same for an hrtimer or something similar that will
  return a single argument which is a pointer to a struct member in the
  callback.
  
  container_of() is a macro defined in <linux/kernel.h>
  
  What container_of() does is to obtain a pointer to the containing struct from
  a pointer to a member by a simple subtraction using the offsetof() macro from
  standard C, which allows something similar to object oriented behaviours.
  Notice that the contained member must not be a pointer, but an actual member
  for this to work.
  
  We can see here that we avoid having global pointers to our struct foo *
  instance this way, while still keeping the number of parameters passed to the
  work function to a single pointer.