Overview.txt 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. Samsung ARM Linux Overview
  2. ==========================
  3. Introduction
  4. ------------
  5. The Samsung range of ARM SoCs spans many similar devices, from the initial
  6. ARM9 through to the newest ARM cores. This document shows an overview of
  7. the current kernel support, how to use it and where to find the code
  8. that supports this.
  9. The currently supported SoCs are:
  10. - S3C24XX: See Documentation/arm/Samsung-S3C24XX/Overview.txt for full list
  11. - S3C64XX: S3C6400 and S3C6410
  12. - S5P6440
  13. - S5P6442
  14. - S5PC100
  15. - S5PC110 / S5PV210
  16. S3C24XX Systems
  17. ---------------
  18. There is still documentation in Documnetation/arm/Samsung-S3C24XX/ which
  19. deals with the architecture and drivers specific to these devices.
  20. See Documentation/arm/Samsung-S3C24XX/Overview.txt for more information
  21. on the implementation details and specific support.
  22. Configuration
  23. -------------
  24. A number of configurations are supplied, as there is no current way of
  25. unifying all the SoCs into one kernel.
  26. s5p6440_defconfig - S5P6440 specific default configuration
  27. s5p6442_defconfig - S5P6442 specific default configuration
  28. s5pc100_defconfig - S5PC100 specific default configuration
  29. s5pc110_defconfig - S5PC110 specific default configuration
  30. s5pv210_defconfig - S5PV210 specific default configuration
  31. Layout
  32. ------
  33. The directory layout is currently being restructured, and consists of
  34. several platform directories and then the machine specific directories
  35. of the CPUs being built for.
  36. plat-samsung provides the base for all the implementations, and is the
  37. last in the line of include directories that are processed for the build
  38. specific information. It contains the base clock, GPIO and device definitions
  39. to get the system running.
  40. plat-s3c24xx is for s3c24xx specific builds, see the S3C24XX docs.
  41. plat-s5p is for s5p specific builds, and contains common support for the
  42. S5P specific systems. Not all S5Ps use all the features in this directory
  43. due to differences in the hardware.
  44. Layout changes
  45. --------------
  46. The old plat-s3c and plat-s5pc1xx directories have been removed, with
  47. support moved to either plat-samsung or plat-s5p as necessary. These moves
  48. where to simplify the include and dependency issues involved with having
  49. so many different platform directories.
  50. It was decided to remove plat-s5pc1xx as some of the support was already
  51. in plat-s5p or plat-samsung, with the S5PC110 support added with S5PV210
  52. the only user was the S5PC100. The S5PC100 specific items where moved to
  53. arch/arm/mach-s5pc100.
  54. Port Contributors
  55. -----------------
  56. Ben Dooks (BJD)
  57. Vincent Sanders
  58. Herbert Potzl
  59. Arnaud Patard (RTP)
  60. Roc Wu
  61. Klaus Fetscher
  62. Dimitry Andric
  63. Shannon Holland
  64. Guillaume Gourat (NexVision)
  65. Christer Weinigel (wingel) (Acer N30)
  66. Lucas Correia Villa Real (S3C2400 port)
  67. Document Author
  68. ---------------
  69. Copyright 2009-2010 Ben Dooks <ben-linux@fluff.org>