)]}'
{
  "log": [
    {
      "commit": "bc71c0961c61d6082472203bfae9596899c9c896",
      "tree": "8a29af932f2acdb8249b1aedb12f7d48d14cf51b",
      "parents": [
        "66f75a5d028beaf67c931435fdc3e7823125730c"
      ],
      "author": {
        "name": "Linus Walleij",
        "email": "linus.walleij@linaro.org",
        "time": "Mon Jan 23 11:54:44 2012 +0100"
      },
      "committer": {
        "name": "Linus Walleij",
        "email": "linus.walleij@linaro.org",
        "time": "Wed May 02 00:25:13 2012 +0200"
      },
      "message": "ARM: ux500: core U9540 support\n\nThis adds support for the U9540 variant of the U8500 series. This\nis an application processor without internal modem. This is the\nmost basic part with ASIC ID, CPU-related fixes, IRQ list, register\nranges, timer, UART, and L2 cache setup. This is based on a patch\nby Michel Jaouen which was rewritten to fit with the latest 3.3\nkernel.\n\nChangeLog v1-\u003ev2: deleted the irqs-db9540.h file since we expect to\n  migrate to using Device Tree for getting the IRQs to devices.\nChangeLog v2-\u003ev3: introduced a fixed virtual offset for the ROM\n  as suggested by Arnd Bergmann.\n\nAcked-by: Arnd Bergmann \u003carnd@arndb.de\u003e\nSigned-off-by: Sebastien Pasdeloup \u003csebastien.pasdeloup-nonst@stericsson.com\u003e\nSigned-off-by: Michel Jaouen \u003cmichel.jaouen@stericsson.com\u003e\nSigned-off-by: Linus Walleij \u003clinus.walleij@linaro.org\u003e\n"
    },
    {
      "commit": "88d8cd52bc9dd7696617b31ea91263d6c47f22e4",
      "tree": "076007985f591ee6b622e3a4335ee84f53984b7e",
      "parents": [
        "0b5f9c005def154f9c21f9be0223b65b50d54368"
      ],
      "author": {
        "name": "Rusty Russell",
        "email": "rusty@rustcorp.com.au",
        "time": "Thu Mar 29 15:38:30 2012 +1030"
      },
      "committer": {
        "name": "Rusty Russell",
        "email": "rusty@rustcorp.com.au",
        "time": "Thu Mar 29 15:38:30 2012 +1030"
      },
      "message": "drivers/cpufreq/db8500-cpufreq: remove references to cpu_*_map.\n\nThis has been obsolescent for a while; time for the final push.\n\nSigned-off-by: Rusty Russell \u003crusty@rustcorp.com.au\u003e\nCc: Dave Jones \u003cdavej@redhat.com\u003e\nCc: cpufreq@vger.kernel.org\nCc: Sundar Iyer \u003csundar.iyer@stericsson.com\u003e\nCc: Martin Persson \u003cmartin.persson@stericsson.com\u003e\nCc: Jonas Aaberg \u003cjonas.aberg@stericsson.com\u003e\n"
    },
    {
      "commit": "c72fe851df21603cd149320df49064eb2f903707",
      "tree": "5b9ad3e93799c1d0973d91918887f4ff56885fd1",
      "parents": [
        "e536b62095301271d974983044a011c29fcb2ea2"
      ],
      "author": {
        "name": "Daniel Willerud",
        "email": "daniel.willerud@stericsson.com",
        "time": "Fri Jan 13 16:20:03 2012 +0100"
      },
      "committer": {
        "name": "Samuel Ortiz",
        "email": "sameo@linux.intel.com",
        "time": "Tue Mar 06 18:46:31 2012 +0100"
      },
      "message": "mfd: Remove db8500-prcmu U8400 legacy\n\nThis removes the U8400 legacy from PRCMU and cpufreq drivers.\nThis platform has no current in-kernel users.\n\nSigned-off-by: Daniel Willerud \u003cdaniel.willerud@stericsson.com\u003e\nSigned-off-by: Linus Walleij \u003clinus.walleij@linaro.org\u003e\nSigned-off-by: Samuel Ortiz \u003csameo@linux.intel.com\u003e\n"
    },
    {
      "commit": "eb0b38a5d2c063cd8dc9e44415ce08e30d95f571",
      "tree": "59002baad22e0f8f5ba2a6b8d652c591798780b9",
      "parents": [
        "8f042aa75afccc45c5b60517f51644bce3f52545"
      ],
      "author": {
        "name": "Axel Lin",
        "email": "axel.lin@gmail.com",
        "time": "Fri Nov 04 20:04:41 2011 +0800"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Fri Nov 11 22:28:33 2011 -0500"
      },
      "message": "[CPUFREQ] db8500: fix build error due to undeclared i variable\n\nThe variable i is removed by commit ded8433\n\"[CPUFREQ] db8500: remove unneeded for loop iteration over freq_table\",\nbut current code to print available frequencies still uses the i variable.\nThus add the i variable back to fix below buld error:\n\n  CC      drivers/cpufreq/db8500-cpufreq.o\ndrivers/cpufreq/db8500-cpufreq.c: In function \u0027db8500_cpufreq_init\u0027:\ndrivers/cpufreq/db8500-cpufreq.c:123: error: \u0027i\u0027 undeclared (first use in this function)\ndrivers/cpufreq/db8500-cpufreq.c:123: error: (Each undeclared identifier is reported only once\ndrivers/cpufreq/db8500-cpufreq.c:123: error: for each function it appears in.)\nmake[2]: *** [drivers/cpufreq/db8500-cpufreq.o] Error 1\nmake[1]: *** [drivers/cpufreq] Error 2\nmake: *** [drivers] Error 2\n\nThis patch also fixes using uninitialized i variable as array index.\n\nSigned-off-by: Axel Lin \u003caxel.lin@gmail.com\u003e\nAcked-by: Linus Walleij \u003clinus.walleij@linaro.org\u003e\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "70c9f18ca8f3652c7dcf715e9f0d41c399fe130d",
      "tree": "5824f0937025688aab07582838d1a0aea5a24a3f",
      "parents": [
        "a0a4194c943bc64dd7b6e26cccb036cb26b81363",
        "6283e328fb8148a8a5753e95c04c16aaef2287c0"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Nov 03 09:59:39 2011 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Nov 03 09:59:39 2011 -0700"
      },
      "message": "Merge branch \u0027next\u0027 of git://github.com/kernelslacker/cpufreq\n\n* \u0027next\u0027 of git://github.com/kernelslacker/cpufreq:\n  [CPUFREQ] db8500: support all frequencies\n  [CPUFREQ] db8500: remove unneeded for loop iteration over freq_table\n  [CPUFREQ] ARM Exynos4210 PM/Suspend compatibility with different bootloaders\n  [CPUFREQ] ARM: ux500: send cpufreq notification for all cpus\n  [CPUFREQ] e_powersaver: Allow user to lower maximum voltage\n  [CPUFREQ] e_powersaver: Check BIOS limit for CPU frequency\n  [CPUFREQ] e_powersaver: Additional checks\n  [CPUFREQ] exynos4210: Show list of available frequencies\n"
    },
    {
      "commit": "6283e328fb8148a8a5753e95c04c16aaef2287c0",
      "tree": "48f7e4d623b3f4a7cd55dca5451766c701a7dd1f",
      "parents": [
        "ded84337ac820700f1b9dda724201e64b2ad3536"
      ],
      "author": {
        "name": "Linus Walleij",
        "email": "linus.walleij@linaro.org",
        "time": "Fri Sep 02 08:52:10 2011 +0200"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Wed Oct 26 17:19:47 2011 -0400"
      },
      "message": "[CPUFREQ] db8500: support all frequencies\n\nThis adds support for the 200 MHz frequency mode of the\nDB8500 SoC, and prints the available frequencies at init\ntime.\n\nCc: Vincent Guittot \u003cvincent.guittot@linaro.org\u003e\nSigned-off-by: Linus Walleij \u003clinus.walleij@linaro.org\u003e\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "ded84337ac820700f1b9dda724201e64b2ad3536",
      "tree": "d8edc047850124ad01714c201eb32d099e0b489e",
      "parents": [
        "0073f538c1c35f996982b583f5de7a6a43408b9b"
      ],
      "author": {
        "name": "Axel Lin",
        "email": "axel.lin@gmail.com",
        "time": "Tue Sep 27 15:11:42 2011 +0800"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Wed Oct 26 17:19:47 2011 -0400"
      },
      "message": "[CPUFREQ] db8500: remove unneeded for loop iteration over freq_table\n\nDon\u0027t know why to do the loop iteration here. It looks unneeded.\n\nSigned-off-by: Axel Lin \u003caxel.lin@gmail.com\u003e\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "8efd072b32d67436413e98e25e9a316216e88900",
      "tree": "fc51b67fa90ea4c34354a5be5fce526036134bc6",
      "parents": [
        "826e570bb24de7671be66de7a6f036c304caad1e"
      ],
      "author": {
        "name": "Vincent Guittot",
        "email": "vincent.guittot@linaro.org",
        "time": "Thu Aug 25 08:31:20 2011 +0200"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Wed Oct 26 17:19:46 2011 -0400"
      },
      "message": "[CPUFREQ] ARM: ux500: send cpufreq notification for all cpus\n\nThe same clock is used for all cpus so we must notify the frequency change\nfor each one in order to update the configuration of all twd clockevents.\n\nchange since V1:\n* use policy-\u003ecpus instead of cpu_online_mask\n\nSigned-off-by: Vincent Guittot \u003cvincent.guittot@linaro.org\u003e\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "73180f85f4ffbb66843f8248811b2ade29b22df2",
      "tree": "26b48bd3369e2f38d741bae92ceef25e8da35948",
      "parents": [
        "fea799e3d3ab84ac675de7e48a13a79fb76b6e63"
      ],
      "author": {
        "name": "Mattias Nilsson",
        "email": "mattias.i.nilsson@stericsson.com",
        "time": "Fri Aug 12 10:28:10 2011 +0200"
      },
      "committer": {
        "name": "Samuel Ortiz",
        "email": "sameo@linux.intel.com",
        "time": "Mon Oct 24 14:09:18 2011 +0200"
      },
      "message": "mfd: Move to the new db500 PRCMU API\n\nNow that we have a shared API between the DB8500 and DB5500\nPRCMU\u0027s, switch to using this neutral API instead. We delete the\nparts of db8500-prcmu.h that is now PRCMU-neutral, and calls will\nbe diverted to respective driver. Common registers are in\ndbx500-prcmu-regs.h and common accessors and defines in\n\u003clinux/mfd/dbx500-prcmu.h\u003e This way we get a a lot more\nabstraction and code reuse.\n\nSigned-off-by: Mattias Nilsson \u003cmattias.i.nilsson@stericsson.com\u003e\nSigned-off-by: Linus Walleij \u003clinus.walleij@linaro.org\u003e\nSigned-off-by: Samuel Ortiz \u003csameo@linux.intel.com\u003e\n"
    },
    {
      "commit": "72b2fd5cb89933a5b0dba32735d9b22ae3fb866e",
      "tree": "19d14ce721d8d070ebdb80707e4f5f200de1be5d",
      "parents": [
        "46936340c4e545f3be935b9d34e0554d16dbac30"
      ],
      "author": {
        "name": "Linus Walleij",
        "email": "linus.walleij@linaro.org",
        "time": "Sun May 15 19:19:51 2011 +0200"
      },
      "committer": {
        "name": "Linus Walleij",
        "email": "linus.walleij@linaro.org",
        "time": "Tue May 24 22:20:05 2011 +0200"
      },
      "message": "cpufreq: update DB8500 cpufreq driver\n\nThis updates the ux500 cpufreq driver to the new interface from the\nupdated DB8500 PRCMU\n\nCc: Arnd Bergmann \u003carnd@arndb.de\u003e\nAcked-by: Dave Jones \u003cdavej@redhat.com\u003e\nSigned-off-by: Linus Walleij \u003clinus.walleij@linaro.org\u003e\n"
    },
    {
      "commit": "46936340c4e545f3be935b9d34e0554d16dbac30",
      "tree": "9c65f184d4dc3d07ee1c79f0e046cfd855fb48da",
      "parents": [
        "8317797ca657081ed81312ea3501f3a3d59d52e9"
      ],
      "author": {
        "name": "Linus Walleij",
        "email": "linus.walleij@linaro.org",
        "time": "Sun May 15 19:16:38 2011 +0200"
      },
      "committer": {
        "name": "Linus Walleij",
        "email": "linus.walleij@linaro.org",
        "time": "Tue May 24 22:19:55 2011 +0200"
      },
      "message": "mach-ux500: move CPUfreq driver to cpufreq subsystem\n\nAs part of the ARM arch subsystem migration, move the DB8500\ncpufreq driver to drivers/cpufreq as discussed with Dave Jones. The\nMakefile is not updated in order to avoid cross-subsystem conflicts\nfor this file in merges.\n\nCc: Arnd Bergmann \u003carnd@arndb.de\u003e\nAcked-by: Dave Jones \u003cdavej@redhat.com\u003e\nSigned-off-by: Linus Walleij \u003clinus.walleij@linaro.org\u003e\n"
    },
    {
      "commit": "650c2a2145981696c414be1d540a32447d0e353e",
      "tree": "f05aadb054bffb88fee3056b78310b148ceed9bf",
      "parents": [
        "118718905de6e32c11e09a8f41c7abff6155ba19"
      ],
      "author": {
        "name": "Linus Walleij",
        "email": "linus.walleij@linaro.org",
        "time": "Sun May 15 22:53:56 2011 +0200"
      },
      "committer": {
        "name": "Linus Walleij",
        "email": "linus.walleij@linaro.org",
        "time": "Tue May 24 22:14:31 2011 +0200"
      },
      "message": "mach-ux500: move the DB8500 PRCMU driver to MFD\n\nWe have decided that this function arbiter fits better in the MFD\nsubsystem. Since we need to concatenate the split header files we move\nit basically like this:\n\nmv mach-ux500/prcmu-db8500.c drivers/mfd/db8500-prcmu.c\nmv mach-ux500/include/mach/prcmu-defs.h include/linux/mfd/db8500-prcmu.h\nmv mach-ux500/include/mach/prcmu-regs.h drivers/mfd/db8500-prcmu-regs.h\nmach-ux500/include/mach/prcmu.h \u003e\u003e include/linux/mfd/db8500-prcmu.h\nrm arch/arm/mach-ux500/include/mach/prcmu.h\n\nThen we update different #include statements and Makefile orders etc\nto make the PRCMU driver compile, link and boot in the new place\nwithout really changing any code.\n\nAcked-by: Samuel Ortiz \u003csameo@linux.intel.com\u003e\nSigned-off-by: Linus Walleij \u003clinus.walleij@linaro.org\u003e\n"
    },
    {
      "commit": "7c1a70e99819d723cde610d83de48a8ab01ec609",
      "tree": "8396d095948577a11f9f47e05e271d17d2641049",
      "parents": [
        "e0befb23dfed4d4d0de9d97dac936ccc0bbec093"
      ],
      "author": {
        "name": "Martin Persson",
        "email": "martin.persson@stericsson.com",
        "time": "Wed Dec 08 15:13:42 2010 +0100"
      },
      "committer": {
        "name": "Linus Walleij",
        "email": "linus.walleij@stericsson.com",
        "time": "Thu Dec 09 10:06:15 2010 +0100"
      },
      "message": "ux500: Add cpufreq support for u8500\n\nSigned-off-by: Martin Persson \u003cmartin.persson@stericsson.com\u003e\nSigned-off-by: Linus Walleij \u003clinus.walleij@stericsson.com\u003e\n"
    }
  ]
}
