1How to port a serial driver to driver model 2=========================================== 3 4About 16 of 33 serial drivers have been converted as at September 2015. It 5is time for maintainers to start converting over the remaining serial drivers: 6 7 arm_dcc.c 8 lpc32xx_hsuart.c 9 mcfuart.c 10 mxs_auart.c 11 opencores_yanu.c 12 serial_bfin.c 13 serial_imx.c 14 serial_max3100.c 15 serial_pxa.c 16 serial_s3c24x0.c 17 serial_sa1100.c 18 usbtty.c 19 20You should complete this by the end of January 2016. 21 22Here is a suggested approach for converting your serial driver over to driver 23model. Please feel free to update this file with your ideas and suggestions. 24 25- #ifdef out all your own serial driver code (#ifndef CONFIG_DM_SERIAL) 26- Define CONFIG_DM_SERIAL for your board, vendor or architecture 27- If the board does not already use driver model, you need CONFIG_DM also 28- Your board should then build, but will not boot since there will be no serial 29 driver 30- Add the U_BOOT_DRIVER piece at the end (e.g. copy serial_s5p.c for example) 31- Add a private struct for the driver data - avoid using static variables 32- Implement each of the driver methods, perhaps by calling your old methods 33- You may need to adjust the function parameters so that the old and new 34 implementations can share most of the existing code 35- If you convert all existing users of the driver, remove the pre-driver-model 36 code 37 38In terms of patches a conversion series typically has these patches: 39- clean up / prepare the driver for conversion 40- add driver model code 41- convert at least one existing board to use driver model serial 42- (if no boards remain that don't use driver model) remove the old code 43 44This may be a good time to move your board to use device tree also. Mostly 45this involves these steps: 46 47- define CONFIG_OF_CONTROL and CONFIG_OF_SEPARATE 48- add your device tree files to arch/<arch>/dts 49- update the Makefile there 50- Add stdout-path to your /chosen device tree node if it is not already there 51- build and get u-boot-dtb.bin so you can test it 52- Your drivers can now use device tree 53- For device tree in SPL, define CONFIG_SPL_OF_CONTROL 54