Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Variables
devices-db8500.c File Reference
#include <linux/kernel.h>
#include <linux/platform_device.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/gpio.h>
#include <linux/amba/bus.h>
#include <linux/amba/pl022.h>
#include <plat/ste_dma40.h>
#include <mach/hardware.h>
#include <mach/setup.h>
#include "ste-dma40-db8500.h"

Go to the source code of this file.

Variables

struct stedma40_chan_cfg dma40_memcpy_conf_phy
 
struct stedma40_chan_cfg dma40_memcpy_conf_log
 
struct platform_device u8500_dma40_device
 
struct resource keypad_resources []
 
struct platform_device u8500_ske_keypad_device
 

Variable Documentation

struct stedma40_chan_cfg dma40_memcpy_conf_log
Initial value:
= {
.src_info.data_width = STEDMA40_BYTE_WIDTH,
.src_info.psize = STEDMA40_PSIZE_LOG_1,
.src_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
.dst_info.data_width = STEDMA40_BYTE_WIDTH,
.dst_info.psize = STEDMA40_PSIZE_LOG_1,
.dst_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
}

Definition at line 57 of file devices-db8500.c.

struct stedma40_chan_cfg dma40_memcpy_conf_phy
Initial value:
= {
.src_info.data_width = STEDMA40_BYTE_WIDTH,
.src_info.psize = STEDMA40_PSIZE_PHY_1,
.src_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
.dst_info.data_width = STEDMA40_BYTE_WIDTH,
.dst_info.psize = STEDMA40_PSIZE_PHY_1,
.dst_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
}

Definition at line 44 of file devices-db8500.c.

struct resource keypad_resources[]
Initial value:
= {
[0] = {
.start = U8500_SKE_BASE,
.end = U8500_SKE_BASE + SZ_4K - 1,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = IRQ_DB8500_KB,
.end = IRQ_DB8500_KB,
.flags = IORESOURCE_IRQ,
},
}

Definition at line 178 of file devices-db8500.c.

struct platform_device u8500_dma40_device
Initial value:
= {
.dev = {
.platform_data = &dma40_plat_data,
},
.name = "dma40",
.id = 0,
.num_resources = ARRAY_SIZE(dma40_resources),
.resource = dma40_resources
}

Definition at line 168 of file devices-db8500.c.

struct platform_device u8500_ske_keypad_device
Initial value:
= {
.name = "nmk-ske-keypad",
.id = -1,
.num_resources = ARRAY_SIZE(keypad_resources),
.resource = keypad_resources,
}

Definition at line 191 of file devices-db8500.c.