aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/scripts/python/bin/syscall-counts-report
diff options
context:
space:
mode:
authorCharles Keepax <ckeepax@opensource.wolfsonmicro.com>2013-03-27 12:39:01 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2013-03-27 20:23:56 -0400
commitfa40ef208c955bfe21f53913f51f297ac3237e95 (patch)
tree0b9357803c1bb2742828fd031ab5eba415670dea /tools/perf/scripts/python/bin/syscall-counts-report
parent8bb9660418e05bb1845ac1a2428444d78e322cc7 (diff)
ASoC: compress: Cancel delayed power down if needed
When a new stream is being opened it is necessary to cancel any delayed power down of the audio. [Fixed unused variable -- broonie] Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'tools/perf/scripts/python/bin/syscall-counts-report')
0 files changed, 0 insertions, 0 deletions
s="hl opt">}, { .name = "Bootloader ENV", .size = 0x00040000, .offset = 0x00040000, .mask_flags = MTD_WRITEABLE }, { .name = "Kernel", .size = 0x00100000, .offset = 0x00080000, }, { .name = "Rescue fs", .size = 0x00280000, .offset = 0x00180000, }, { .name = "Filesystem", .size = MTDPART_SIZ_FULL, .offset = 0x00400000 } }; static struct physmap_flash_data xcep_flash_data[] = { { .width = 4, /* bankwidth in bytes */ .parts = xcep_partitions, .nr_parts = ARRAY_SIZE(xcep_partitions) } }; static struct resource flash_resource = { .start = PXA_CS0_PHYS, .end = PXA_CS0_PHYS + SZ_32M - 1, .flags = IORESOURCE_MEM, }; static struct platform_device flash_device = { .name = "physmap-flash", .id = 0, .dev = { .platform_data = xcep_flash_data, }, .resource = &flash_resource, .num_resources = 1, }; /* SMC LAN91C111 network controller. */ static struct resource smc91x_resources[] = { [0] = { .name = "smc91x-regs", .start = XCEP_ETH_PHYS, .end = XCEP_ETH_PHYS_END, .flags = IORESOURCE_MEM, }, [1] = { .start = XCEP_ETH_IRQ, .end = XCEP_ETH_IRQ, .flags = IORESOURCE_IRQ, }, [2] = { .name = "smc91x-attrib", .start = XCEP_ETH_ATTR, .end = XCEP_ETH_ATTR_END, .flags = IORESOURCE_MEM, }, }; static struct smc91x_platdata xcep_smc91x_info = { .flags = SMC91X_USE_32BIT | SMC91X_NOWAIT | SMC91X_USE_DMA, }; static struct platform_device smc91x_device = { .name = "smc91x", .id = -1, .num_resources = ARRAY_SIZE(smc91x_resources), .resource = smc91x_resources, .dev = { .platform_data = &xcep_smc91x_info, }, }; static struct platform_device *devices[] __initdata = { &flash_device, &smc91x_device, }; /* We have to state that there are HWMON devices on the I2C bus on XCEP. * Drivers for HWMON verify capabilities of the adapter when loading and * refuse to attach if the adapter doesn't support HWMON class of devices. * See also Documentation/i2c/porting-clients. */ static struct i2c_pxa_platform_data xcep_i2c_platform_data = { .class = I2C_CLASS_HWMON }; static mfp_cfg_t xcep_pin_config[] __initdata = { GPIO79_nCS_3, /* SMC 91C111 chip select. */ GPIO80_nCS_4, /* CPLD chip select. */ /* SSP communication to MSP430 */ GPIO23_SSP1_SCLK, GPIO24_SSP1_SFRM, GPIO25_SSP1_TXD, GPIO26_SSP1_RXD, GPIO27_SSP1_EXTCLK }; static void __init xcep_init(void) { pxa2xx_mfp_config(ARRAY_AND_SIZE(xcep_pin_config)); pxa_set_ffuart_info(NULL); pxa_set_btuart_info(NULL); pxa_set_stuart_info(NULL); pxa_set_hwuart_info(NULL); /* See Intel XScale Developer's Guide for details */ /* Set RDF and RDN to appropriate values (chip select 3 (smc91x)) */ MSC1 = (MSC1 & 0xffff) | 0xD5540000; /* Set RDF and RDN to appropriate values (chip select 5 (fpga)) */ MSC2 = (MSC2 & 0xffff) | 0x72A00000; platform_add_devices(ARRAY_AND_SIZE(devices)); pxa_set_i2c_info(&xcep_i2c_platform_data); } MACHINE_START(XCEP, "Iskratel XCEP") .phys_io = 0x40000000, .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, .boot_params = 0xa0000100, .init_machine = xcep_init, .map_io = pxa_map_io, .init_irq = pxa25x_init_irq, .timer = &pxa_timer, MACHINE_END