-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'x86-platform-for-linus' of git://git.kernel.org/pub/scm…
…/linux/kernel/git/tip/tip Pull x86 platform changes from Ingo Molnar: "The main changes in this cycle were: - SGI UV updates (Andrew Banman) - Intel MID updates (Andy Shevchenko) - Initial Mellanox systems platform (Vadim Pasternak)" * 'x86-platform-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86/platform/mellanox: Fix return value check in mlxplat_init() x86/platform/mellanox: Introduce support for Mellanox systems platform x86/platform/uv/BAU: Add UV4-specific functions x86/platform/uv/BAU: Fix payload queue setup on UV4 hardware x86/platform/uv/BAU: Disable software timeout on UV4 hardware x86/platform/uv/BAU: Populate ->uvhub_version with UV4 version information x86/platform/uv/BAU: Use generic function pointers x86/platform/uv/BAU: Add generic function pointers x86/platform/uv/BAU: Convert uv_physnodeaddr() use to uv_gpa_to_offset() x86/platform/uv/BAU: Clean up pq_init() x86/platform/uv/BAU: Clean up and update printks x86/platform/uv/BAU: Clean up vertical alignment x86/platform/intel-mid: Keep SRAM powered on at boot x86/platform/intel-mid: Add Intel Penwell to ID table x86/cpu: Rename Merrifield2 to Moorefield x86/platform/intel-mid: Implement power off sequence x86/platform/intel-mid: Enable SD card detection on Merrifield x86/platform/intel-mid: Enable WiFi on Intel Edison x86/platform/intel-mid: Run PWRMU command immediately
- Loading branch information
Showing
18 changed files
with
669 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
95 changes: 95 additions & 0 deletions
95
arch/x86/platform/intel-mid/device_libs/platform_bcm43xx.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
/* | ||
* platform_bcm43xx.c: bcm43xx platform data initilization file | ||
* | ||
* (C) Copyright 2016 Intel Corporation | ||
* Author: Andy Shevchenko <andriy.shevchenko@linux.intel.com> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* as published by the Free Software Foundation; version 2 | ||
* of the License. | ||
*/ | ||
|
||
#include <linux/gpio.h> | ||
#include <linux/platform_device.h> | ||
#include <linux/regulator/machine.h> | ||
#include <linux/regulator/fixed.h> | ||
#include <linux/sfi.h> | ||
|
||
#include <asm/intel-mid.h> | ||
|
||
#define WLAN_SFI_GPIO_IRQ_NAME "WLAN-interrupt" | ||
#define WLAN_SFI_GPIO_ENABLE_NAME "WLAN-enable" | ||
|
||
#define WLAN_DEV_NAME "0000:00:01.3" | ||
|
||
static struct regulator_consumer_supply bcm43xx_vmmc_supply = { | ||
.dev_name = WLAN_DEV_NAME, | ||
.supply = "vmmc", | ||
}; | ||
|
||
static struct regulator_init_data bcm43xx_vmmc_data = { | ||
.constraints = { | ||
.valid_ops_mask = REGULATOR_CHANGE_STATUS, | ||
}, | ||
.num_consumer_supplies = 1, | ||
.consumer_supplies = &bcm43xx_vmmc_supply, | ||
}; | ||
|
||
static struct fixed_voltage_config bcm43xx_vmmc = { | ||
.supply_name = "bcm43xx-vmmc-regulator", | ||
/* | ||
* Announce 2.0V here to be compatible with SDIO specification. The | ||
* real voltage and signaling are still 1.8V. | ||
*/ | ||
.microvolts = 2000000, /* 1.8V */ | ||
.gpio = -EINVAL, | ||
.startup_delay = 250 * 1000, /* 250ms */ | ||
.enable_high = 1, /* active high */ | ||
.enabled_at_boot = 0, /* disabled at boot */ | ||
.init_data = &bcm43xx_vmmc_data, | ||
}; | ||
|
||
static struct platform_device bcm43xx_vmmc_regulator = { | ||
.name = "reg-fixed-voltage", | ||
.id = PLATFORM_DEVID_AUTO, | ||
.dev = { | ||
.platform_data = &bcm43xx_vmmc, | ||
}, | ||
}; | ||
|
||
static int __init bcm43xx_regulator_register(void) | ||
{ | ||
int ret; | ||
|
||
bcm43xx_vmmc.gpio = get_gpio_by_name(WLAN_SFI_GPIO_ENABLE_NAME); | ||
ret = platform_device_register(&bcm43xx_vmmc_regulator); | ||
if (ret) { | ||
pr_err("%s: vmmc regulator register failed\n", __func__); | ||
return ret; | ||
} | ||
|
||
return 0; | ||
} | ||
|
||
static void __init *bcm43xx_platform_data(void *info) | ||
{ | ||
int ret; | ||
|
||
ret = bcm43xx_regulator_register(); | ||
if (ret) | ||
return NULL; | ||
|
||
pr_info("Using generic wifi platform data\n"); | ||
|
||
/* For now it's empty */ | ||
return NULL; | ||
} | ||
|
||
static const struct devs_id bcm43xx_clk_vmmc_dev_id __initconst = { | ||
.name = "bcm43xx_clk_vmmc", | ||
.type = SFI_DEV_TYPE_SD, | ||
.get_platform_data = &bcm43xx_platform_data, | ||
}; | ||
|
||
sfi_device(bcm43xx_clk_vmmc_dev_id); |
47 changes: 47 additions & 0 deletions
47
arch/x86/platform/intel-mid/device_libs/platform_mrfld_sd.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* SDHCI platform data initilisation file | ||
* | ||
* (C) Copyright 2016 Intel Corporation | ||
* Author: Andy Shevchenko <andriy.shevchenko@linux.intel.com> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* as published by the Free Software Foundation; version 2 | ||
* of the License. | ||
*/ | ||
|
||
#include <linux/init.h> | ||
#include <linux/pci.h> | ||
|
||
#include <linux/mmc/sdhci-pci-data.h> | ||
|
||
#include <asm/intel-mid.h> | ||
|
||
#define INTEL_MRFLD_SD 2 | ||
#define INTEL_MRFLD_SD_CD_GPIO 77 | ||
|
||
static struct sdhci_pci_data mrfld_sdhci_pci_data = { | ||
.rst_n_gpio = -EINVAL, | ||
.cd_gpio = INTEL_MRFLD_SD_CD_GPIO, | ||
}; | ||
|
||
static struct sdhci_pci_data * | ||
mrfld_sdhci_pci_get_data(struct pci_dev *pdev, int slotno) | ||
{ | ||
unsigned int func = PCI_FUNC(pdev->devfn); | ||
|
||
if (func == INTEL_MRFLD_SD) | ||
return &mrfld_sdhci_pci_data; | ||
|
||
return NULL; | ||
} | ||
|
||
static int __init mrfld_sd_init(void) | ||
{ | ||
if (intel_mid_identify_cpu() != INTEL_MID_CPU_CHIP_TANGIER) | ||
return -ENODEV; | ||
|
||
sdhci_pci_get_data = mrfld_sdhci_pci_get_data; | ||
return 0; | ||
} | ||
arch_initcall(mrfld_sd_init); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.