1. 15 3月, 2011 3 次提交
  2. 12 3月, 2011 1 次提交
  3. 10 3月, 2011 6 次提交
  4. 09 3月, 2011 1 次提交
  5. 08 3月, 2011 4 次提交
  6. 03 3月, 2011 1 次提交
    • M
      arm: omap: fix section mismatch warning · 790ab7e9
      Ming Lei 提交于
      WARNING: arch/arm/plat-omap/built-in.o(.data+0x6d4): Section mismatch in reference from the variable omap_driver to the function .init.text:omap_cpu_init()
      The variable omap_driver references
      the function __init omap_cpu_init()
      If the reference is valid then annotate the
      variable with __init* or __refdata (see linux/init.h) or name the variable:
      *_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console,
      Signed-off-by: NMing Lei <tom.leiming@gmail.com>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      790ab7e9
  7. 02 3月, 2011 4 次提交
    • R
      OMAP2+: omap_device/clock: Do not expect an entry in clkdev for opt_clks · da0653fe
      Rajendra Nayak 提交于
      The _add_optional_clock_alias function expects an entry
      already existing in the clkdev table in the form of
      <dev-id=NULL, con-id=role> which might not be the case
      always.
      
      Instead, just check if an entry already exists in clkdev
      in the <dev-id=dev_name, con-id=role> form, else go ahead
      and add one.
      
      Remove any assumption of an entry already existing in clkdev
      table in any form.
      
      Since this means, adding a new entry in clkdev if it does
      not already exist, and not really adding an 'alias',
      also rename the function name
      (s/_add_optional_clock_alias/_add_optional_clock_clkdev)
      to reflect this.
      Signed-off-by: NRajendra Nayak <rnayak@ti.com>
      Reported-by: NSumit Semwal <sumit.semwal@ti.com>
      Cc: Sumit Semwal <sumit.semwal@ti.com>
      Cc: Paul Walmsley <paul@pwsan.com>
      Cc: Benoit Cousson <b-cousson@ti.com>
      Cc: Kevin Hilman <khilman@ti.com>
      Cc: Partha Basak <p-basak2@ti.com>
      Signed-off-by: NPaul Walmsley <paul@pwsan.com>
      da0653fe
    • K
      OMAP: adapt hsmmc to hwmod framework · 4621d5f8
      Kishore Kadiyala 提交于
      OMAP2420 platform consists of mmc block as in omap1 and not the
      hsmmc block as present in omap2430, omap3, omap4 platforms.
      Removing all base address macro defines except keeping one for OMAP2420 and
      adapting only hsmmc device registration and driver to hwmod framework.
      
      Changes involves:
      1) Remove controller reset in devices.c which is taken care of
         by hwmod framework.
      2) Using omap-device layer to register device and utilizing data from
         hwmod data file for base address, dma channel number, Irq_number,
         device attribute.
      3) Update the driver to use dev_attr to find whether controller
         supports dual volt cards
      Signed-off-by: NPaul Walmsley <paul@pwsan.com>
      Signed-off-by: NKishore Kadiyala <kishore.kadiyala@ti.com>
      Reviewed-by: NBalaji T K <balajitk@ti.com>
      Cc: Benoit Cousson <b-cousson@ti.com>
      CC: Kevin Hilman <khilman@deeprootsystems.com>
      Cc: Tony Lindgren <tony@atomide.com>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      4621d5f8
    • K
      OMAP: hwmod data: Add dev_attr and use in the host driver · 6ab8946f
      Kishore Kadiyala 提交于
      Add a device attribute to hwmod data of omap2430, omap3, omap4.
      Currently the device attribute holds information regarding dual volt MMC card
      support by the controller which will be later passed to the host driver via
      platform data.
      Signed-off-by: NKevin Hilman <khilman@deeprootsystems.com>
      Signed-off-by: NKishore Kadiyala <kishore.kadiyala@ti.com>
      Acked-by: Benoit Cousson<b-cousson@ti.com>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      6ab8946f
    • A
      omap: mmc: split out init for 2420 · e08016d0
      Anand Gadiyar 提交于
      The MMC controller on the OMAP2420 is different from those
      on the OMAP2430, OMAP3 and OMAP4 families - all of the latter
      are identical. The one on the OMAP2420 is closer to that
      on OMAP1 chips.
      
      Currently, the n8x0 is the only OMAP2420 platform supported
      in mainline which registers the MMC controller. Upcoming
      changes to register the controllers using hwmod data are
      potentially invasive. To reduce the risk, separate out the
      2420 controller registration from the common init function
      and update its only user. Also seperating out mux settings
      for OMAP2420.
      Signed-off-by: NAnand Gadiyar <gadiyar@ti.com>
      Signed-off-by: NKishore Kadiyala <kishore.kadiyala@ti.com>
      Cc: Tony Lindgren <tony@atomide.com>
      Cc: Madhusudhan Chikkature <madhu.cr@ti.com>
      Cc: Chris Ball <cjb@laptop.org>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      e08016d0
  8. 01 3月, 2011 3 次提交
    • P
      OMAP2+: sdrc: fix compile break on OMAP4-only config on current omap-for-linus · d6b5d01b
      Paul Walmsley 提交于
      On non-OMAP2 and non-OMAP3 kernel configs, turn omap2_sdrc_init() into
      a no-op.  Otherwise, compilation breaks on an OMAP4-only config with
      the current omap-for-linus branch:
      
      arch/arm/mach-omap2/built-in.o: In function `omap2_init_common_devices':
      ../mach-omap2/io.c:421: undefined reference to `omap2_sdrc_init'
      
      Thanks to Sergei Shtylyov <sshtylyov@mvista.com> for suggesting the use
      of a empty static inline function rather than a macro.
      Signed-off-by: NPaul Walmsley <paul@pwsan.com>
      Cc: Tony Lindgren <tony@atomide.com>
      Cc: Sergei Shtylyov <sshtylyov@mvista.com>
      [tony@atomide.com: updated not to use __init for inline omap2_sdrc_init]
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      d6b5d01b
    • P
      OMAP2+: hwmod: add ability to setup individual hwmods · a2debdbd
      Paul Walmsley 提交于
      Add omap_hwmod_setup_one(), which is intended for use early in boot to
      selectively setup the hwmods needed for system clocksources and
      clockevents, and any other hwmod that is needed in early boot.
      omap_hwmod_setup_all() can then be called later in the boot process.
      The point is to minimize the amount of code that needs to be run
      early.
      Signed-off-by: NPaul Walmsley <paul@pwsan.com>
      Cc: Benoît Cousson <b-cousson@ti.com>
      Cc: Kevin Hilman <khilman@ti.com>
      Cc: Santosh Shilimkar <santosh.shilimkar@ti.com>
      Cc: Tony Lindgren <tony@atomide.com>
      a2debdbd
    • P
      OMAP2+: hwmod: rename some init functions · 550c8092
      Paul Walmsley 提交于
      Rename omap_hwmod_init() to omap_hwmod_register().  Rename
      omap_hwmod_late_init() to omap_hwmod_setup_all().  Also change all of
      the callers to reflect the new names.  While here, update some
      copyrights.
      
      Suggested by Tony Lindgren <tony@atomide.com>.
      
      N.B. The comment in mach-omap2/serial.c may no longer be correct, given
           recent changes in init order.
      Signed-off-by: NPaul Walmsley <paul@pwsan.com>
      Cc: Benoît Cousson <b-cousson@ti.com>
      Cc: Kevin Hilman <khilman@ti.com>
      Cc: Tony Lindgren <tony@atomide.com>
      550c8092
  9. 28 2月, 2011 1 次提交
  10. 26 2月, 2011 3 次提交
    • R
      OMAP4: DPLL: Add dpll api to control GATE_CTRL · 97f67898
      Rajendra Nayak 提交于
      On OMAP4, the dpll post divider outputs (MX outputs)
      along with clockout_x2 output provide a way to allow/deny
      hardware level autogating.
      Allowing autoidle would mean that the hw would autogate
      this clock when there is no dependency for it.
      Denying idle would mean that this clock output will be
      forced to stay enabled.
      
      Add dpll api's to read/allow/deny idle control
      for these dpll mx postdividers.
      
      NOTE: The gatectrl bit set to 0 allows gatectrl,
      and the bit set to 1 denies gatectrl.
      Signed-off-by: NRajendra Nayak <rnayak@ti.com>
      [paul@pwsan.com: moved OMAP4-specific DPLL control code to
       mach-omap2/dpll44xx.c; added some documentation for CLOCK_CLKOUTX2]
      Signed-off-by: NPaul Walmsley <paul@pwsan.com>
      97f67898
    • P
      OMAP2+: clock: autoidle as many clocks as possible if CONFIG_OMAP_RESET_CLOCKS · b80b956d
      Paul Walmsley 提交于
      Attempt to enable autoidle for as many clocks as possible in the
      OMAP2+-common CONFIG_OMAP_RESET_CLOCKS code.  Currently, this only
      enables DPLL autoidle for OMAP3/4 DPLLs; but future patches will
      enable autoidle for other clocks and the OMAP2 DPLL/APLLs.
      
      In the long run, we should probably get rid of
      CONFIG_OMAP_RESET_CLOCKS, and unconditionally run the code that it
      selects.  Otherwise, the state of the clock tree won't match the
      hardware state - this could result in clocks being enabled or disabled
      unpredictably.
      
      Based on a patch by Rajendra Nayak <rnayak@ti.com> that did this in
      the pm34xx.c/pm44xx.c code.
      Signed-off-by: NPaul Walmsley <paul@pwsan.com>
      Cc: Rajendra Nayak <rnayak@ti.com>
      b80b956d
    • R
      OMAP: clock: Add allow_idle/deny_idle support in clkops · 58e846fe
      Rajendra Nayak 提交于
      On OMAP various clock nodes (dpll's, mx post dividers, interface clocks)
      support hardware level autogating which can be controlled from
      software.
      Support such functionality by adding two new function pointer
      allow_idle and deny_idle in the clkops structure.
      
      These function pointers can be populated for any clock
      node which supports hardware level autogating.
      
      Also add 2 new functions (omap_clk_enable_autoidle_all and
      omap_clk_disable_autoidle_all) which can be called from
      architecture specific PM core code, if hardware level
      autogating (for all supported clock nodes) is to be
      enabled or disabled.
      Signed-off-by: NRajendra Nayak <rnayak@ti.com>
      [paul@pwsan.com: use spinlock rather than mutex due to race; renamed functions;
       functions now return ints]
      Signed-off-by: NPaul Walmsley <paul@pwsan.com>
      58e846fe
  11. 25 2月, 2011 13 次提交