tree: 94160cae0c90784873f7005f6df57000030dfc68 [path history] [tgz]
  1. android/
  2. benchmark/
  3. build/
  4. client_porting/
  5. common/
  6. contrib/
  7. doc/
  8. egl_and_gles/
  9. elf_loader/
  10. evergreen/
  11. examples/
  12. linux/
  13. loader_app/
  14. nplb/
  15. optional/
  16. raspi/
  17. sabi/
  18. shared/
  19. stub/
  20. testing/
  21. tools/
  22. win/
  23. .gitignore
  24. __init__.py
  25. accessibility.h
  26. atomic.h
  27. audio_sink.h
  28. BUILD.gn
  29. byte_swap.h
  30. CHANGELOG.md
  31. character.h
  32. condition_variable.h
  33. configuration.h
  34. configuration_constants.h
  35. cpu_features.h
  36. decode_target.h
  37. directory.h
  38. double.h
  39. drm.h
  40. egl.h
  41. event.h
  42. export.h
  43. file.h
  44. gles.h
  45. image.h
  46. input.h
  47. key.h
  48. LICENSE
  49. log.h
  50. media.h
  51. memory.h
  52. memory_reporter.h
  53. microphone.h
  54. mutex.h
  55. once.h
  56. player.h
  57. queue.h
  58. README.md
  59. socket.h
  60. socket_waiter.h
  61. speech_recognizer.h
  62. speech_synthesis.h
  63. spin_lock.h
  64. starboard.syms
  65. storage.h
  66. string.h
  67. system.h
  68. thread.h
  69. time.h
  70. time_zone.h
  71. types.h
  72. ui_navigation.h
  73. user.h
  74. window.h
starboard/README.md

Starboard

Starboard is Cobalt's porting layer and OS abstraction. It attempts to encompass all the platform-specific functionality that Cobalt actually uses, and nothing that it does not.

GN Migration Notice

Cobalt and Starboard have been migrated from the GYP build system to the GN build system. This readme only contains instructions for GN, as GYP is no longer supported.

Documentation

See starboard/doc for more detailed documentation.

Interesting Source Locations

All source locations are specified relative to starboard/ (this directory).

  • . - This is the root directory for the Starboard project, and contains all the public headers that Starboard defines.
  • examples/ - Example code demonstrating various aspects of Starboard API usage.
  • stub/ - The home of the Stub Starboard implementation. This contains a BUILD.gn file that defines a library with all the source files needed to provide a complete linkable Starboard implementation.
  • nplb/ - “No Platform Left Behind,” Starboard's platform verification test suite.
  • shared/ - The home of all code that can be shared between Starboard implementations. Subdirectories delimit code that can be shared between platforms that share some facet of their OS API.

Quick Guide to Starting a Port

I. Enumerate and Name Your Platform Configurations

Before starting a Cobalt/Starboard port, first you will need to define the canonical names for your set of platform configurations. These will be used when organizing the code for your platforms.

What determines what goes into one platform configuration versus another? A platform configuration has a one-to-one mapping to a production binary. So, if you will need to produce a new binary, you are going to need a new platform configuration for that.

The recommended naming convention for a <platform-configuration> is:

<family-name>-<binary-variant>

Where <family-name> is a name specific to the family of products you are porting to Starboard and <binary-variant> is one or more tokens that uniquely describe the specifics of the binary you want that configuration to produce.

For example, let's say your company is named BobCo. BobCo employs multiple different device architectures so it will need to define multiple platform configurations.

All the BobCo devices are called BobBox, so it's a reasonable choice as a product <family-name>. But they have both big- and little-endian ARM chips. So they might define two platform configurations:

  1. bobbox-armeb - For big-endian ARM devices.
  2. bobbox-armel - For little-endian ARM devices.

II. Choose a Location in the Source Tree for Your Starboard Port

To be perfectly compatible with the Cobalt source tree layout, any code that is written by a party that isn't the Cobalt team should be in the third_party/ directory. The choice is up to you, but we recommend that you follow this practice, even if, as we expect to be common, you do not plan on sharing your Starboard implementation with anyone.

Primarily, following this convention ensures that no future changes to Cobalt or Starboard will conflict with your source code additions. Starboard is intended to be a junction where new Cobalt versions or Starboard implementations can be replaced without significant (and hopefully, any) code changes.

We recommend that you place your code here in the source tree:

third_party/starboard/<family-name>/

With subdirectories:

  • shared/ - For code shared between architectures within a product family.
  • <binary-variant>/ - For any code that is specific to a specific binary variant. Each one of these must at least have BUILD.gn, configuration_public.h, atomic_public.h, platform_configuration/BUILD.gn, platform_configuration/configuration.gni, and toolchain/BUILD.gn files.

In the BobCo's BobBox example, we would see something like:

  • third_party/starboard/bobbox/
    • shared/
    • armeb/
      • platform_configuration/
        • BUILD.gn
        • configuration.gni
      • toolchain/
        • BUILD.gn
      • atomic_public.h
      • BUILD.gn
      • configuration_public.h
    • armel/
      • platform_configuration/
        • BUILD.gn
        • configuration.gni
      • toolchain/
        • BUILD.gn
      • atomic_public.h
      • BUILD.gn
      • configuration_public.h

And so on.

III. Base Your Port on a Reference Port

You can start off by copying files from a reference port to your port's location. Currently these reference ports include:

  • starboard/stub
  • starboard/linux
  • starboard/raspi

The platform's BUILD.gn contains absolute paths, so the paths will still be valid if you copy it to a new directory. You can then incrementally replace files with new implementations as necessary.

The cleanest, simplest starting point is from the Stub reference implementation. Nothing will work, but you should be able to compile and link it with your toolchain. You can then replace stub implementations with implementations from starboard/shared or your own custom implementations module-by-module, until you have gone through all modules.

You may also choose to copy either the Desktop Linux or Raspberry Pi ports and work backwards fixing things that don't compile or work on your platform.

For example, for bobbox-armel, you might do:

mkdir -p third_party/starboard/bobbox
cp -R starboard/stub third_party/starboard/bobbox/armel

Modify the files in <binary-variant>/ as appropriate (you will probably be coming back to these files a lot).

Update <binary-variant>/BUILD.gn to point at all the source files that you want to build as your new Starboard implementation. The // expression in GN refers to the top-level directory of your source tree. Otherwise, files are assumed to be relative to the directory the BUILD.gn or .gni file is in. The BUILD.gn file contains absolute paths, so the paths will still be valid if you copy it to a new directory. You can then incrementally replace files with new implementations as necessary.

In order to use a new platform configuration in a build, you need to ensure that you have a BUILD.gn, toolchain/BUILD.gn, platform_configuration/configuration.gni, and platform_configuration/BUILD.gn in their own directory for each binary variant, plus the header files configuration_public.h and atomic_public.h. You must add your platform name to starboard/build/platforms.py along with the path to the port to be able to build it.

IV. A New Port, Step-by-Step

  1. Recursively copy starboard/stub to third_party/starboard/<family-name>/<binary-variant>. You may also consider copying from another reference platform, like raspi-2 or linux-x64x11.
  2. Add your platform and path to starboard/build/platforms.py.
  3. In platform_configuration/configuration.gni
    1. Delete variables in the file that are not needed for your platform.
    2. Set gl_type to the appropriate value if it is not the default system_gles2.
    3. Set enable_in_app_dial to true or false. This enables or disables the DIAL server that runs inside Cobalt, only when Cobalt is running. You do not want in-app DIAL if you already have system-wide DIAL support.
  4. In platform_configuration/BUILD.gn
    1. Update your toolchain command-line flags and libraries. Make sure you don't assume a particular workstation layout, as it is likely to be different for someone else.
  5. In toolchain/BUILD.gn
    1. Either use the clang_toolchain template and pass the base path to your toolchain, or use the gcc_toolchain and pass the full path to each tool you use.
    2. Set is_clang = true in toolchain_args in gcc_toolchain if the toolchain uses clang.
  6. Go through configuration_public.h and adjust all the configuration values as appropriate for your platform.
  7. Update BUILD.gn to point at all the source files you want to build as part of your new Starboard implementation (as mentioned above).
  8. Update atomic_public.h as necessary to point at the appropriate shared or custom implementations.

If you want to use cobalt/build/gn.py, you‘ll also need a third_party/starboard/<family-name>/<binary-variant>/args.gn file. This should contain the gn arguments necessary to build your platform. Pay particular attention to target_platform, target_os, target_cpu, and is_clang. The defaults for each can be found in starboard/build/config/BUILDCONFIG.gn. If you don’t care about using gn.py, all of these arguments can be passed using gn args or gn gen with --args. For example, the first command below might instead look like gn gen out/bobbox-armeb_debug --args='target_platform="bobbox-armeb" build_type="debug"'.

You should now be able to run GN with your new port. From your the top level directory:

$ python cobalt/build/gn.py -c debug -p bobbox-armeb
$ ninja -C out/bobbox-armeb_debug nplb

This will attempt to build the “No Platform Left Behind” test suite with your new Starboard implementation, and you are ready to start porting!

Suggested Implementation Order

When bringing up a new Starboard platform, it is suggested that you try to get the NPLB tests passing module-by-module. Because of dependencies between modules, you will find it easier to get some modules passing sooner than other modules.

Here's a recommended module implementation order in which to get things going (still significantly subject to change based on feedback):

  1. Configuration
  2. main(), Application, & Event Pump (i.e. the call into SbEventHandle)
  3. Memory
  4. Byte Swap
  5. Time
  6. String/Character/Double
  7. Log
  8. File
  9. Directory
  10. System
  11. Atomic
  12. Thread & Thread Types
  13. Mutex
  14. Condition Variable
  15. Once
  16. Socket
  17. SocketWaiter
  18. Window
  19. Input
  20. Blitter (if applicable)
  21. Audio Sink
  22. Media & Player
  23. DRM
  24. TimeZone
  25. User
  26. Storage