)]}'
{
  "log": [
    {
      "commit": "13d99673203085f88fcc690231da96f46b6f695a",
      "tree": "010131a38a996bf17ec0cba788bac663465267eb",
      "parents": [
        "14a7ab7259980e15ead9940a3345f4b2abf45ca5"
      ],
      "author": {
        "name": "Ramesh Masavarapu",
        "email": "rameshm@codeaurora.org",
        "time": "Tue Jul 17 11:05:15 2012 -0700"
      },
      "committer": {
        "name": "Ramesh Masavarapu",
        "email": "rameshm@codeaurora.org",
        "time": "Fri Jul 20 17:12:59 2012 -0700"
      },
      "message": "qseecom: Support multiple clients.\n\nWhen multiple clients request qseecom to load an application, an app\nid is assigned. If the request is to load an app that already exists\nin qsee, the app id should return to the qseecom library.\nReturning the app id was done in the qseecom_load_app() but not done\nin the qseecom_query_app_loaded(). This change fixes the issue when\nmultiple clients request to load the same app in qsee.\n\nChange-Id: Icaa5053906b61ace1d257ff1c96308cc89e3a9cc\nSigned-off-by: Ramesh Masavarapu \u003crameshm@codeaurora.org\u003e\n"
    },
    {
      "commit": "1ee4ac885c1cae01f8e2edb88ac08af43d1b555c",
      "tree": "f5739575b0a8b93a2947fe19c74528b2c894950b",
      "parents": [
        "35042acbd1276886f6a52fa109b7be42eeb64bec"
      ],
      "author": {
        "name": "Ramesh Masavarapu",
        "email": "rameshm@codeaurora.org",
        "time": "Fri Jun 22 15:38:34 2012 -0700"
      },
      "committer": {
        "name": "Linux Build Service Account",
        "email": "lnxbuild@localhost",
        "time": "Mon Jul 02 10:11:05 2012 -0600"
      },
      "message": "qseecom: Add new ioctl call.\n\nCurrently, qseecom user-space library does not have a way to\nverify if a particular secure application is loaded in the\nqsee or not. This new ioctl solves this issue.\n\nChange-Id: Ia96459f3b8aadee2f6a3af564bb1cc83695759b5\nSigned-off-by: Ramesh Masavarapu \u003crameshm@codeaurora.org\u003e\n"
    },
    {
      "commit": "5ab9d77b3a1168e79b77d5146f8ab9644ee7d502",
      "tree": "ce71e91deb7b6e6c2c806c8d9621ca53ef6232c8",
      "parents": [
        "32496fc5f09696b4fc6e948ae678d35ed4e054da"
      ],
      "author": {
        "name": "Mona Hossain",
        "email": "mhossain@codeaurora.org",
        "time": "Wed Apr 11 21:00:40 2012 -0700"
      },
      "committer": {
        "name": "Mona Hossain",
        "email": "mhossain@codeaurora.org",
        "time": "Tue Apr 17 12:52:47 2012 -0700"
      },
      "message": "qseecom: Add support for loading elf images\n\nAdd following IOCTLs\n - QSEECOM_IOCTL_LOAD_EXTERNAL_ELF_REQ\n   sends QSEE command to load and elf image\n - QSEECOM_IOCTL_UNLOAD_EXTERNAL_ELF_REQ\n   sends command to QSEE to unload an elf image\n\nChange-Id: Ia1e0cb4df382af327f9dd8f283fa6a3d0e083f0c\nSigned-off-by: Mona Hossain \u003cmhossain@codeaurora.org\u003e\n"
    },
    {
      "commit": "2892b6bf1e55298f13f49db28c9383c2edb6532e",
      "tree": "f9ac50d64a3f0551c9e8d4e73431d7a306426e4a",
      "parents": [
        "0564f549826e3bdca452d52ab675388cc8d9d1a0"
      ],
      "author": {
        "name": "Mona Hossain",
        "email": "mhossain@codeaurora.org",
        "time": "Fri Feb 17 13:53:11 2012 -0800"
      },
      "committer": {
        "name": "Mona Hossain",
        "email": "mhossain@codeaurora.org",
        "time": "Fri Feb 24 11:15:02 2012 -0800"
      },
      "message": "qseecom: Add qseecom Driver\n\nThis driver is based of the TZCOM (planned to be deprecated soon).\nIt shares the same design as TZCOM with some re-organization and\nnew features added. QSEEcom (Qualcomm Secure Execution environment\nCommunicator) is named accordingly to be consistent with the\nnomenclature used in the secure domain. The following additional\nfeatures (on top of current TZCOM) driver are implemented:\n\n(1) Add support for multi-image loading.\nThe image that was loaded in TZCOM was hard-coded to \"tzapps\".\nDuring a open() tzapps was loaded using pil driver call pil_get().\nThis severly limted the number of images that could be loaded to\none single application: named \"tzapps\". qseecom driver provides a\nway to load any image on request. Client simply send the image\ndata in a specific format and this data is sent over to QSEE\n(Qualcomm Secure Execution enviroment) to load accordingly.\n\n(2) Add support for multi-client.\nTZcom driver did not have provisions to support multiple clients\nto interface with the single tzapp image loaded on the secure\ndomain. The changes added in qseecom driver allows for multiple\nclient to interface with a single image laoded and running in\nsecure domain.\n\n(3) Add support for performance tweaking in QSEE\nAdded capability to send requests to QSEE to set specific clocks\nfor optimal crypto performance. This essentially will increase\nthe crypto performance on the secure domain. The crypto\nfunctionality is used extensively by the current existing qseecom\nclient(s).\n\n(4) Retain legacy support for QSEOS version 1.3.\nIn order for the existing applications to work with old QSEE image,\nqseecom also supports the old mechanism (loading tzapp image via\npil). This was a requirement for existing products that are not\nyet using the latest secure code.\n\nChange-Id: I7cf2d62c612cb4d17b33579e66bee44c9844dfda\nSigned-off-by: Mona Hossain \u003cmhossain@codeaurora.org\u003e\n"
    }
  ]
}
