Initial import of libpciaccess.
[platform/upstream/libpciaccess.git] / src / linux_sysfs.c
1 /*
2  * (C) Copyright IBM Corporation 2006
3  * All Rights Reserved.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * on the rights to use, copy, modify, merge, publish, distribute, sub
9  * license, and/or sell copies of the Software, and to permit persons to whom
10  * the Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.  IN NO EVENT SHALL
19  * IBM AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  */
24
25 /**
26  * \file linux_sysfs.c
27  * Access PCI subsystem using Linux's sysfs interface.  This interface is
28  * available starting somewhere in the late 2.5.x kernel phase, and is the
29  * prefered method on all 2.6.x kernels.
30  *
31  * \author Ian Romanick <idr@us.ibm.com>
32  */
33
34 #define _GNU_SOURCE
35
36 #include <stdlib.h>
37 #include <string.h>
38 #include <stdio.h>
39 #include <unistd.h>
40 #include <sys/types.h>
41 #include <sys/stat.h>
42 #include <fcntl.h>
43 #include <sys/mman.h>
44 #include <dirent.h>
45 #include <errno.h>
46
47 #include "pciaccess.h"
48 #include "pciaccess_private.h"
49
50 static int pci_device_linux_sysfs_read_rom( struct pci_device * dev,
51     void * buffer );
52
53 static int pci_device_linux_sysfs_probe( struct pci_device * dev );
54
55 static int pci_device_linux_sysfs_map_region( struct pci_device * dev,
56     unsigned region, int write_enable );
57
58 static int pci_device_linux_sysfs_unmap_region( struct pci_device * dev,
59     unsigned region );
60
61 static int pci_device_linux_sysfs_read( struct pci_device * dev, void * data,
62     pciaddr_t offset, pciaddr_t size, pciaddr_t * bytes_read );
63
64 static int pci_device_linux_sysfs_write( struct pci_device * dev,
65     const void * data, pciaddr_t offset, pciaddr_t size,
66     pciaddr_t * bytes_wrtten );
67
68 static const struct pci_system_methods linux_sysfs_methods = {
69     .destroy = NULL,
70     .destroy_device = NULL,
71     .read_rom = pci_device_linux_sysfs_read_rom,
72     .probe = pci_device_linux_sysfs_probe,
73     .map = pci_device_linux_sysfs_map_region,
74     .unmap = pci_device_linux_sysfs_unmap_region,
75
76     .read = pci_device_linux_sysfs_read,
77     .write = pci_device_linux_sysfs_write,
78
79     .fill_capabilities = pci_fill_capabilities_generic
80 };
81
82 #define SYS_BUS_PCI "/sys/bus/pci/devices"
83
84
85 static void populate_entries( struct pci_system * pci_sys );
86
87
88 /**
89  * Attempt to access PCI subsystem using Linux's sysfs interface.
90  */
91 int
92 pci_system_linux_sysfs_create( void )
93 {
94     int err = 0;
95     struct stat st;
96
97
98     /* If the directory "/sys/bus/pci/devices" exists, then the PCI subsystem
99      * can be accessed using this interface.
100      */
101     
102     if ( stat( SYS_BUS_PCI, & st ) == 0 ) {
103         pci_sys = calloc( 1, sizeof( struct pci_system ) );
104         if ( pci_sys != NULL ) {
105             pci_sys->methods = & linux_sysfs_methods;
106             populate_entries( pci_sys );
107         }
108         else {
109             err = ENOMEM;
110         }
111     }
112     else {
113         err = errno;
114     }
115
116     return err;
117 }
118
119
120 /**
121  * Filter out the names "." and ".." from the scanned sysfs entries.
122  *
123  * \param d  Directory entry being processed by \c scandir.
124  *
125  * \return
126  * Zero if the entry name matches either "." or "..", non-zero otherwise.
127  *
128  * \sa scandir, populate_entries
129  */
130 static int
131 scan_sys_pci_filter( const struct dirent * d )
132 {
133     return !((strcmp( d->d_name, "." ) == 0) 
134              || (strcmp( d->d_name, ".." ) == 0));
135 }
136
137
138 void
139 populate_entries( struct pci_system * p )
140 {
141     struct dirent ** devices;
142     int n;
143     int i;
144
145
146     n = scandir( SYS_BUS_PCI, & devices, scan_sys_pci_filter, alphasort );
147     if ( n > 0 ) {
148         p->num_devices = n;
149         p->devices = calloc( n, sizeof( struct pci_device_private ) );
150
151
152         for ( i = 0 ; i < n ; i++ ) {
153             unsigned dom, bus, dev, func;
154
155
156             sscanf( devices[ i ]->d_name, "%04x:%02x:%02x.%1u",
157                     & dom, & bus, & dev, & func );
158
159             p->devices[ i ].base.domain = dom;
160             p->devices[ i ].base.bus = bus;
161             p->devices[ i ].base.dev = dev;
162             p->devices[ i ].base.func = func;
163         }
164     }
165 }
166
167
168 static int
169 pci_device_linux_sysfs_probe( struct pci_device * dev )
170 {
171     char     name[256];
172     uint8_t  config[256];
173     char     resource[512];
174     int fd;
175     pciaddr_t bytes;
176     unsigned i;
177     int err;
178
179
180     err = pci_device_linux_sysfs_read( dev, config, 0, 256, & bytes );
181     if ( bytes >= 64 ) {
182         dev->vendor_id = ((uint16_t *) config)[0];
183         dev->device_id = ((uint16_t *) config)[1];
184         dev->device_class = (((uint32_t *) config)[2]) >> 8;
185         dev->revision = config[8];
186         dev->subvendor_id = ((uint16_t *) config)[22];
187         dev->subdevice_id = ((uint16_t *) config)[23];
188         dev->irq = config[60];
189
190
191         /* The PCI config registers can be used to obtain information
192          * about the memory and I/O regions for the device.  However,
193          * doing so requires some tricky parsing (to correctly handle
194          * 64-bit memory regions) and requires writing to the config
195          * registers.  Since we'd like to avoid having to deal with the
196          * parsing issues and non-root users can write to PCI config
197          * registers, we use a different file in the device's sysfs
198          * directory called "resource".
199          * 
200          * The resource file contains all of the needed information in
201          * a format that is consistent across all platforms.  Each BAR
202          * and the expansion ROM have a single line of data containing
203          * 3, 64-bit hex values:  the first address in the region,
204          * the last address in the region, and the region's flags.
205          */
206         snprintf( name, 255, "%s/%04x:%02x:%02x.%1u/resource",
207                   SYS_BUS_PCI,
208                   dev->domain,
209                   dev->bus,
210                   dev->dev,
211                   dev->func );
212         fd = open( name, O_RDONLY );
213         if ( fd != -1 ) {
214             char * next;
215             pciaddr_t  low_addr;
216             pciaddr_t  high_addr;
217             pciaddr_t  flags;
218
219
220             bytes = read( fd, resource, 512 );
221             resource[511] = '\0';
222
223             close( fd );
224
225             next = resource;
226             for ( i = 0 ; i < 6 ; i++ ) {
227
228                 dev->regions[i].base_addr = strtoull( next, & next, 16 );
229                 high_addr = strtoull( next, & next, 16 );
230                 flags = strtoull( next, & next, 16 );
231                     
232                 if ( dev->regions[i].base_addr != 0 ) {
233                     dev->regions[i].size = (high_addr 
234                                             - dev->regions[i].base_addr) + 1;
235
236                     dev->regions[i].is_IO = (flags & 0x01);
237                     dev->regions[i].is_64 = (flags & 0x04);
238                     dev->regions[i].is_prefetchable = (flags & 0x08);
239                 }
240             }
241
242             low_addr = strtoull( next, & next, 16 );
243             high_addr = strtoull( next, & next, 16 );
244             flags = strtoull( next, & next, 16 );
245             if ( low_addr != 0 ) {
246                 dev->rom_size = (high_addr - low_addr) + 1;
247             }
248         }
249     }
250
251     return err;
252 }
253
254
255 static int
256 pci_device_linux_sysfs_read_rom( struct pci_device * dev, void * buffer )
257 {
258     char name[256];
259     int fd;
260     struct stat  st;
261     int err = 0;
262
263
264     snprintf( name, 255, "%s/%04x:%02x:%02x.%1u/rom",
265               SYS_BUS_PCI,
266               dev->domain,
267               dev->bus,
268               dev->dev,
269               dev->func );
270     
271     fd = open( name, O_RDWR );
272     if ( fd == -1 ) {
273         return errno;
274     }
275
276
277     if ( fstat( fd, & st ) == -1 ) {
278         close( fd );
279         return errno;
280     }
281
282
283     /* This is a quirky thing on Linux.  Even though the ROM and the file
284      * for the ROM in sysfs are read-only, the string "1" must be written to
285      * the file to enable the ROM.  After the data has been read, "0" must be
286      * written to the file to disable the ROM.
287      */
288     write( fd, "1", 1 );
289     lseek( fd, 0, SEEK_SET );
290
291     if ( read( fd, buffer, st.st_size ) == -1 ) {
292         err = errno;
293     }
294
295     lseek( fd, 0, SEEK_SET );
296     write( fd, "0", 1 );
297
298     close( fd );
299     return err;
300 }
301
302
303 static int
304 pci_device_linux_sysfs_read( struct pci_device * dev, void * data,
305                              pciaddr_t offset, pciaddr_t size,
306                              pciaddr_t * bytes_read )
307 {
308     char name[256];
309     pciaddr_t temp_size = size;
310     int err = 0;
311     int fd;
312
313
314     if ( bytes_read != NULL ) {
315         *bytes_read = 0;
316     }
317
318     /* Each device has a directory under sysfs.  Within that directory there
319      * is a file named "config".  This file used to access the PCI config
320      * space.  It is used here to obtain most of the information about the
321      * device.
322      */
323     snprintf( name, 255, "%s/%04x:%02x:%02x.%1u/config",
324               SYS_BUS_PCI,
325               dev->domain,
326               dev->bus,
327               dev->dev,
328               dev->func );
329
330     fd = open( name, O_RDONLY );
331     if ( fd == -1 ) {
332         return errno;
333     }
334
335
336     while ( temp_size > 0 ) {
337         const ssize_t bytes = pread64( fd, data, temp_size, offset );
338
339         /* If zero bytes were read, then we assume it's the end of the
340          * config file.
341          */
342         if ( bytes <= 0 ) {
343             err = errno;
344             break;
345         }
346
347         temp_size -= bytes;
348         offset += bytes;
349         data += bytes;
350     }
351     
352     if ( bytes_read != NULL ) {
353         *bytes_read = size - temp_size;
354     }
355
356     close( fd );
357     return err;
358 }
359
360
361 static int
362 pci_device_linux_sysfs_write( struct pci_device * dev, const void * data,
363                              pciaddr_t offset, pciaddr_t size,
364                              pciaddr_t * bytes_written )
365 {
366     char name[256];
367     pciaddr_t temp_size = size;
368     int err = 0;
369     int fd;
370
371
372     if ( bytes_written != NULL ) {
373         *bytes_written = 0;
374     }
375
376     /* Each device has a directory under sysfs.  Within that directory there
377      * is a file named "config".  This file used to access the PCI config
378      * space.  It is used here to obtain most of the information about the
379      * device.
380      */
381     snprintf( name, 255, "%s/%04x:%02x:%02x.%1u/config",
382               SYS_BUS_PCI,
383               dev->domain,
384               dev->bus,
385               dev->dev,
386               dev->func );
387
388     fd = open( name, O_WRONLY );
389     if ( fd == -1 ) {
390         return errno;
391     }
392
393
394     while ( temp_size > 0 ) {
395         const ssize_t bytes = pwrite64( fd, data, temp_size, offset );
396
397         /* If zero bytes were written, then we assume it's the end of the
398          * config file.
399          */
400         if ( bytes <= 0 ) {
401             err = errno;
402             break;
403         }
404
405         temp_size -= bytes;
406         offset += bytes;
407         data += bytes;
408     }
409     
410     if ( bytes_written != NULL ) {
411         *bytes_written = size - temp_size;
412     }
413
414     close( fd );
415     return err;
416 }
417
418
419 /**
420  * Map a memory region for a device using the Linux sysfs interface.
421  * 
422  * \param dev          Device whose memory region is to be mapped.
423  * \param region       Region, on the range [0, 5], that is to be mapped.
424  * \param write_enable Map for writing (non-zero).
425  * 
426  * \return
427  * Zero on success or an \c errno value on failure.
428  *
429  * \sa pci_device_map_region, pci_device_linux_sysfs_unmap_region
430  *
431  * \todo
432  * Some older 2.6.x kernels don't implement the resourceN files.  On those
433  * systems /dev/mem must be used.  On these systems it is also possible that
434  * \c mmap64 may need to be used.
435  */
436 static int
437 pci_device_linux_sysfs_map_region( struct pci_device * dev, unsigned region,
438                                    int write_enable )
439 {
440     char name[256];
441     int fd;
442     int err = 0;
443     int prot = (write_enable) ? (PROT_READ | PROT_WRITE) : PROT_READ;
444
445
446     snprintf( name, 255, "%s/%04x:%02x:%02x.%1u/resource%u",
447               SYS_BUS_PCI,
448               dev->domain,
449               dev->bus,
450               dev->dev,
451               dev->func,
452               region );
453
454     fd = open( name, (write_enable) ? O_RDWR : O_RDONLY );
455     if ( fd == -1 ) {
456         return errno;
457     }
458
459
460     dev->regions[ region ].memory = mmap( NULL, dev->regions[ region ].size,
461                                           prot, MAP_SHARED, fd, 0 );
462     if ( dev->regions[ region ].memory == MAP_FAILED ) {
463         err = errno;
464         dev->regions[ region ].memory = NULL;
465     }
466
467     close( fd );
468     return err;
469 }
470
471
472 /**
473  * Unmap the specified region using the Linux sysfs interface.
474  *
475  * \param dev          Device whose memory region is to be mapped.
476  * \param region       Region, on the range [0, 5], that is to be mapped.
477  *
478  * \return
479  * Zero on success or an \c errno value on failure.
480  *
481  * \sa pci_device_unmap_region, pci_device_linux_sysfs_map_region
482  *
483  * \todo
484  * Some older 2.6.x kernels don't implement the resourceN files.  On those
485  * systems /dev/mem must be used.  On these systems it is also possible that
486  * \c mmap64 may need to be used.
487  */
488 static int
489 pci_device_linux_sysfs_unmap_region( struct pci_device * dev, unsigned region )
490 {
491     return munmap( dev->regions[ region ].memory,
492                    dev->regions[ region ].size );
493 }