blob: a2288afbc74be6b4e35501d9658a0d39e274ad57 (
plain) (
blame)
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//FreeBSD//DTD XHTML 1.0 Transitional-Based Extension//EN"
"http://www.FreeBSD.org/XML/doc/share/sgml/xhtml10-freebsd.dtd" [
<!ENTITY base "../..">
<!ENTITY title "Projet FreeBSD ACPI">
<!ENTITY email 'marks'>
<!-- Status levels -->
<!ENTITY status.na "<font color=green>Non prévu</font>">
<!ENTITY status.done "<font color=green>Achevé</font>">
<!ENTITY status.wip "<font color=blue>En cours</font>">
<!ENTITY status.untested "<font color=yellow>Nécessite des tests</font>">
<!ENTITY status.new "<font color=red>Pas encore commencé</font>">
<!ENTITY status.unknown "<font color=red>Inconnu</font>">
<!-- The list of contributors was moved to a separate file so that it can
be used by other documents in the FreeBSD web site. -->
]>
<!--
The FreeBSD French Documentation Project
Original revision: 1.1
Version francaise : Antoine Brodin <antoine.brodin@laposte.net>
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>&title;</title>
<cvs:keyword xmlns:cvs="http://www.FreeBSD.org/XML/CVS">$FreeBSD$</cvs:keyword>
</head>
<body class="navinclude.developers">
<h2>Contenu</h2>
<ul>
<li><a href="#description">Description</a></li>
<li><a href="#todo-list">Liste des choses à faire</a></li>
<li><a href="#platform-status">Statut du Support des Architectures</a></li>
<li><a href="#references">Références</a></li>
</ul>
<a name="description"></a>
<h2>Description</h2>
<p>Le pilote acpi apporte le support du standard ACPI Intel/Microsoft/Compaq/Toshiba.
Ce support comprend la reconnaissance du matériel (remplaçant
le PnP et le BIOS PCI), ainsi que la gestion de l'énergie (remplaçant
l'APM) et d'autres dispositifs. Le coeur du support de l'ACPI est fourni par
l'implémentation de référence ACPI CA d'Intel.</p>
<a name="todo-list"></a>
<h2>Liste des choses à faire</h2>
<table class="tblbasic">
<tr>
<th> Tâche </th>
<th> Description </th>
<th> Responsable </th>
<th> Dernière mise à jour </th>
<th> Priorité </th>
<th> Statut </th>
<th> Notes </th>
</tr>
<tr>
<td> Verrouillage sans le mutex Giant </td>
<td> Ne plus dépendre du mutex Giant </td>
<td> &a.njl; </td>
<td> 14 Avril 2004 </td>
<td> Haute </td>
<td> &status.wip; </td>
<td> codé à moitié, il faut remanier la partie batterie avant le verrouillage. </td>
</tr>
<tr>
<td> attachements newbus pour les processeurs </td>
<td> Utiliser newbus pour les processeurs pour que des pilotes tels que cpufreq puissent effectuer des opérations de sondage/attachement </td>
<td> &a.njl; </td>
<td> 14 Avril 2004 </td>
<td> Haute </td>
<td> &status.wip; </td>
<td> Gérer les conflits imprévus sur les architectures non x86 </td>
</tr>
</table>
<a name="platform-status"></a>
<h2>Statut du Support des Architectures</h2>
<table class="tblbasic">
<tr>
<th> Tâche </th>
<th> Responsable </th>
<th> Dernière mise à jour </th>
<th> Statut </th>
<th> Details </th>
</tr>
<tr>
<td> amd64 </td>
<td> freebsd-acpi@ </td>
<td> 14 Avril 2004 </td>
<td> &status.wip; </td>
<td> </td>
</tr>
<tr>
<td> i386 </td>
<td> freebsd-acpi@ </td>
<td> 14 Avril 2004 </td>
<td> &status.wip; </td>
<td> </td>
</tr>
<tr>
<td> ia64 </td>
<td> freebsd-acpi@ </td>
<td> 14 Avril 2004 </td>
<td> &status.wip; </td>
<td> </td>
</tr>
</table>
<a name="references"></a>
<h2>Références</h2>
<ul>
<li><a href="http://acpi.info/spec.htm">Spécification de l'interface de
configuration avancé et de gestion de l'énergie</a></li>
</ul>
</body>
</html>
|