Changeset 2907b36 in rtems
- Timestamp:
- 08/13/03 08:04:44 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- d4b5e876
- Parents:
- 652b53a
- Location:
- doc/bsp_howto
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/bsp_howto/ChangeLog
r652b53a r2907b36 1 2003-08-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * ide-ctrl.t: Merger from 4.6-branch. 4 1 5 2003-01-28 Joel Sherrill <joel@OARcorp.com> 2 6 -
doc/bsp_howto/ide-ctrl.t
r652b53a r2907b36 26 26 is based on the libchip concept and allows to work with any of the IDE 27 27 Controller chips simply by appropriate configuration of BSP. Drivers for a 28 pa ticular IDE Controller chips locate in the following directories: drivers28 particular IDE Controller chips locate in the following directories: drivers 29 29 for well-known IDE Controller chips locate into 30 30 @code{$RTEMS_SRC_ROOT/c/src/libchip/ide}, drivers for IDE Controller chips … … 39 39 @section Initialization 40 40 41 IDE Controller chips used by a BSP are statically confi ured into41 IDE Controller chips used by a BSP are statically configured into 42 42 @code{IDE_Controller_Table}. The @code{ide_controller_initialize} routine is 43 43 responsible for initialization of all configured IDE controller chips. … … 57 57 @{ 58 58 for each IDE Controller chip configured in IDE_Controller_Table 59 if (BSP depend ant probe(if exists) AND device probe for this IDE chip59 if (BSP dependent probe(if exists) AND device probe for this IDE chip 60 60 indicates it is present) 61 61 perform initialization of the particular chip … … 74 74 @group 75 75 void ide_controller_read_register(rtems_device_minor_number minor, 76 unsigned32 reg, unsig ed32 *value)76 unsigned32 reg, unsigned32 *value) 77 77 @{ 78 78 get IDE Controller chip configuration information from … … 93 93 @group 94 94 void ide_controller_write_register(rtems_device_minor_number minor, 95 unsigned32 reg, unsig ed32 value)95 unsigned32 reg, unsigned32 value) 96 96 @{ 97 97 get IDE Controller chip configuration information from
Note: See TracChangeset
for help on using the changeset viewer.