~ubuntu-branches/ubuntu/saucy/linux-ti-omap4/saucy-proposed

« back to all changes in this revision

Viewing changes to include/linux/platform_data/s3c-hsotg.h

  • Committer: Package Import Robot
  • Author(s): Paolo Pisati, Paolo Pisati, Stefan Bader, Upstream Kernel Changes
  • Date: 2012-08-15 17:17:43 UTC
  • Revision ID: package-import@ubuntu.com-20120815171743-h5wnuf51xe7pvdid
Tags: 3.5.0-207.13
[ Paolo Pisati ]

* Start new release

[ Stefan Bader ]

* (config) Enable getabis to use local package copies

[ Upstream Kernel Changes ]

* fixup: gargabe collect iva_seq[0|1] init
* [Config] enable all SND_OMAP_SOC_*s
* fixup: cm2xxx_3xxx.o is needed for omap2_cm_read|write_reg
* fixup: add some snd_soc_dai* helper functions
* fixup: s/snd_soc_dpcm_params/snd_soc_dpcm/g
* fixup: typo, no_host_mode and useless SDP4430 init
* fixup: enable again aess hwmod

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* include/linux/platform_data/s3c-hsotg.h
 
2
 *
 
3
 * Copyright 2008 Openmoko, Inc.
 
4
 * Copyright 2008 Simtec Electronics
 
5
 *      Ben Dooks <ben@simtec.co.uk>
 
6
 *      http://armlinux.simtec.co.uk/
 
7
 *
 
8
 * S3C USB2.0 High-speed / OtG platform information
 
9
 *
 
10
 * This program is free software; you can redistribute it and/or modify
 
11
 * it under the terms of the GNU General Public License version 2 as
 
12
 * published by the Free Software Foundation.
 
13
*/
 
14
 
 
15
enum s3c_hsotg_dmamode {
 
16
        S3C_HSOTG_DMA_NONE,     /* do not use DMA at-all */
 
17
        S3C_HSOTG_DMA_ONLY,     /* always use DMA */
 
18
        S3C_HSOTG_DMA_DRV,      /* DMA is chosen by driver */
 
19
};
 
20
 
 
21
/**
 
22
 * struct s3c_hsotg_plat - platform data for high-speed otg/udc
 
23
 * @dma: Whether to use DMA or not.
 
24
 * @is_osc: The clock source is an oscillator, not a crystal
 
25
 */
 
26
struct s3c_hsotg_plat {
 
27
        enum s3c_hsotg_dmamode  dma;
 
28
        unsigned int            is_osc:1;
 
29
        int                     phy_type;
 
30
 
 
31
        int (*phy_init)(struct platform_device *pdev, int type);
 
32
        int (*phy_exit)(struct platform_device *pdev, int type);
 
33
};
 
34
 
 
35
extern void s3c_hsotg_set_platdata(struct s3c_hsotg_plat *pd);