/** * Copyright (C) 2008, Creative Technology Ltd. All Rights Reserved. * * This source file is released under GPL v2 license (no other versions). * See the COPYING file included in the main directory of this source * distribution for the license terms and conditions. * * @File ctatc.h * * @Brief * This file contains the definition of the device resource management object. * * @Author Liu Chun * @Date Mar 28 2008 * */ #ifndef CTATC_H #define CTATC_H #include #include #include #include #include #include "ctvmem.h" #include "cthardware.h" #include "ctresource.h" enum CTALSADEVS { /* Types of alsa devices */ FRONT, SURROUND, CLFE, SIDE, IEC958, MIXER, NUM_CTALSADEVS /* This should always be the last */ }; struct ct_atc_chip_sub_details { u16 subsys; const char *nm_model; }; struct ct_atc_chip_details { u16 vendor; u16 device; const struct ct_atc_chip_sub_details *sub_details; const char *nm_card; }; struct ct_atc; struct ct_timer; struct ct_timer_instance; /* alsa pcm stream descriptor */ struct ct_atc_pcm { struct snd_pcm_substream *substream; void (*interrupt)(struct ct_atc_pcm *apcm); struct ct_timer_instance *timer; unsigned int started:1; /* Only mono and interleaved modes are supported now. */ struct ct_vm_block *vm_block; void *src; /* SRC for interacting with host memory */ void **srccs; /* SRCs for sample rate conversion */ void **srcimps; /* SRC Input Mappers */ void **amixers; /* AMIXERs for routing converted data */ void *mono; /* A SUM resource for mixing chs to one */ unsigned char n_srcc; /* Number of converting SRCs */ unsigned char n_srcimp; /* Number of SRC Input Mappers */ unsigned char n_amixer; /* Number of AMIXERs */ }; /* Chip resource management object */ struct ct_atc { struct pci_dev *pci; struct snd_card *card; unsigned int rsr; /* reference sample rate in Hz */ unsigned int msr; /* master sample rate in rsr */ unsigned int pll_rate; /* current rate of Phase Lock Loop */ int chip_type; int model; const char *chip_name; const char *model_name; struct ct_vm *vm; /* device virtual memory manager for this card */ int (*map_audio_buffer)(struct ct_atc *atc, struct ct_atc_pcm *apcm); void (*unmap_audio_buffer)(struct ct_atc *atc, struct ct_atc_pcm *apcm); unsigned long (*get_ptp_phys)(struct ct_atc *atc, int index); struct mutex atc_mutex; int (*pcm_playback_prepare)(struct ct_atc *atc, struct ct_atc_pcm *apcm); int (*pcm_playback_start)(struct ct_atc *atc, struct ct_atc_pcm *apcm); int (*pcm_playback_stop)(struct ct_atc *atc, struct ct_atc_pcm *apcm); int (*pcm_playback_position)(struct ct_atc *atc, struct ct_atc_pcm *apcm); int (*spdif_passthru_playback_prepare)(struct ct_atc *atc, struct ct_atc_pcm *apcm); int (*pcm_capture_prepare)(struct ct_atc *atc, struct ct_atc_pcm *apcm); int (*pcm_capture_start)(struct ct_atc *atc, struct ct_atc_pcm *apcm); int (*pcm_capture_stop)(struct ct_atc *atc, struct ct_atc_pcm *apcm); int (*pcm_capture_position)(struct ct_atc *atc, struct ct_atc_pcm *apcm); int (*pcm_release_resources)(struct ct_atc *atc, struct ct_atc_pcm *apcm); int (*select_line_in)(struct ct_atc *atc); int (*select_mic_in)(struct ct_atc *atc); int (*select_digit_io)(struct ct_atc *atc); int (*line_front_unmute)(struct ct_atc *atc, unsigned char state); int (*line_surround_unmute)(struct ct_atc *atc, unsigned char state); int (*line_clfe_unmute)(struct ct_atc *atc, unsigned char state); int (*line_rear_unmute)(struct ct_atc *atc, unsigned char state); int (*line_in_unmute)(struct ct_atc *atc, unsigned char state); int (*mic_unmute)(struct ct_atc *atc, unsigned char state); int (*spdif_out_unmute)(struct ct_atc *atc, unsigned char state); int (*spdif_in_unmute)(struct ct_atc *atc, unsigned char state); int (*spdif_out_get_status)(struct ct_atc *atc, unsigned int *status); int (*spdif_out_set_status)(struct ct_atc *atc, unsigned int status); int (*spdif_out_passthru)(struct ct_atc *atc, unsigned char state); struct capabilities (*capabilities)(struct ct_atc *atc); int (*output_switch_get)(struct ct_atc *atc); int (*output_switch_put)(struct ct_atc *atc, int position); int (*mic_source_switch_get)(struct ct_atc *atc); int (*mic_source_switch_put)(struct ct_atc *atc, int position); /* Don't touch! Used for internal object. */ void *rsc_mgrs[NUM_RSCTYP]; /* chip resource managers */ void *mixer; /* internal mixer object */ struct hw *hw; /* chip specific hardware access object */ void **daios; /* digital audio io resources */ void **pcm; /* SUMs for collecting all pcm stream */ void **srcs; /* Sample Rate Converters for input signal */ void **srcimps; /* input mappers for SRCs */ unsigned char n_daio; unsigned char n_src; unsigned char n_srcimp; unsigned char n_pcm; struct ct_timer *timer; #ifdef CONFIG_PM_SLEEP int (*suspend)(struct ct_atc *atc); int (*resume)(struct ct_atc *atc); #define NUM_PCMS (NUM_CTALSADEVS - 1) struct snd_pcm *pcms[NUM_PCMS]; #endif }; int ct_atc_create(struct snd_card *card, struct pci_dev *pci, unsigned int rsr, unsigned int msr, int chip_type, unsigned int subsysid, struct ct_atc **ratc); int ct_atc_create_alsa_devs(struct ct_atc *atc); #endif /* CTATC_H */ td colspan='2' class='oid'>0b3589be9b98994ce3d5aeca52445d1f5627c4ba (diff)
perf/x86/intel/rapl: Make package handling more robust
The package management code in RAPL relies on package mapping being available before a CPU is started. This changed with: 9d85eb9119f4 ("x86/smpboot: Make logical package management more robust") because the ACPI/BIOS information turned out to be unreliable, but that left RAPL in broken state. This was not noticed because on a regular boot all CPUs are online before RAPL is initialized. A possible fix would be to reintroduce the mess which allocates a package data structure in CPU prepare and when it turns out to already exist in starting throw it away later in the CPU online callback. But that's a horrible hack and not required at all because RAPL becomes functional for perf only in the CPU online callback. That's correct because user space is not yet informed about the CPU being onlined, so nothing caan rely on RAPL being available on that particular CPU. Move the allocation to the CPU online callback and simplify the hotplug handling. At this point the package mapping is established and correct. This also adds a missing check for available package data in the event_init() function. Reported-by: Yasuaki Ishimatsu <yasu.isimatu@gmail.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Sebastian Siewior <bigeasy@linutronix.de> Cc: Stephane Eranian <eranian@google.com> Cc: Vince Weaver <vincent.weaver@maine.edu> Fixes: 9d85eb9119f4 ("x86/smpboot: Make logical package management more robust") Link: http://lkml.kernel.org/r/20170131230141.212593966@linutronix.de Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'net/ipv6/ah6.c')