mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-19 05:35:53 +00:00
* NVME, SATA NAND Security added * Qortal Core exception fetcher is now redone. * Update DT overlays for firmware * Fix for bvb clockj settings * Fix for no audio for sissy desktop porn watchers -_- ( thanks crowetic for watching gay porn and reporting me that bug asshat ) * Normalize the fetch() stream while doing a peer to peer handshake for nodes * Fix for RNG token editing error while performing a SHA256 encryption * Now under voltage errors will blink red led constantly for 5 minutes then go solid. * Improve kernel thread scaling for Qortal 2.0 core * HDMI circuit is now enabled at power up instead. * Added KMS * Added line replication instead of interpolation for VC4 GPU resulting in slightly better frame rates * Fix for long and doubles * Backplane clock is now set at standard rate * Capped HVEC clocks * Add support for Creative Cinema webcam for donkers who like sharing dick pics. *looks at crowetic* * More scanline XGA modes for people who have weird ass monitors of all sorts. * TX/RX flow control support is now 100% stable. No lags over 1Gbps ethernet. ( Hello Qortal 3.0 ) * Using flush cache instead of fetch for QC 2.0 resulting in performance gains * VC4 clock is now enforced for desktop oriented images. * Ondemand governor now waits for 2 seconds instead of 0.5ms to scale down to the lowest safest clock freq preventing lags to the core. * Timeout of OC set at 35ms from 90ms resulting in way better clocks and sync for Qortal 2.0 core
101 lines
2.5 KiB
C
101 lines
2.5 KiB
C
/*
|
|
* Generic DWMAC platform driver
|
|
*
|
|
* Copyright (C) 2007-2011 STMicroelectronics Ltd
|
|
* Copyright (C) 2015 Joachim Eastwood <manabian@gmail.com>
|
|
*
|
|
* This file is licensed under the terms of the GNU General Public
|
|
* License version 2. This program is licensed "as is" without any
|
|
* warranty of any kind, whether express or implied.
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/of.h>
|
|
#include <linux/platform_device.h>
|
|
|
|
#include "stmmac.h"
|
|
#include "stmmac_platform.h"
|
|
|
|
static int dwmac_generic_probe(struct platform_device *pdev)
|
|
{
|
|
struct plat_stmmacenet_data *plat_dat;
|
|
struct stmmac_resources stmmac_res;
|
|
int ret;
|
|
|
|
ret = stmmac_get_platform_resources(pdev, &stmmac_res);
|
|
if (ret)
|
|
return ret;
|
|
|
|
if (pdev->dev.of_node) {
|
|
plat_dat = stmmac_probe_config_dt(pdev, stmmac_res.mac);
|
|
if (IS_ERR(plat_dat)) {
|
|
dev_err(&pdev->dev, "dt configuration failed\n");
|
|
return PTR_ERR(plat_dat);
|
|
}
|
|
} else {
|
|
plat_dat = dev_get_platdata(&pdev->dev);
|
|
if (!plat_dat) {
|
|
dev_err(&pdev->dev, "no platform data provided\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
/* Set default value for multicast hash bins */
|
|
plat_dat->multicast_filter_bins = HASH_TABLE_SIZE;
|
|
|
|
/* Set default value for unicast filter entries */
|
|
plat_dat->unicast_filter_entries = 1;
|
|
}
|
|
|
|
/* Custom initialisation (if needed) */
|
|
if (plat_dat->init) {
|
|
ret = plat_dat->init(pdev, plat_dat->bsp_priv);
|
|
if (ret)
|
|
goto err_remove_config_dt;
|
|
}
|
|
|
|
ret = stmmac_dvr_probe(&pdev->dev, plat_dat, &stmmac_res);
|
|
if (ret)
|
|
goto err_exit;
|
|
|
|
return 0;
|
|
|
|
err_exit:
|
|
if (plat_dat->exit)
|
|
plat_dat->exit(pdev, plat_dat->bsp_priv);
|
|
err_remove_config_dt:
|
|
if (pdev->dev.of_node)
|
|
stmmac_remove_config_dt(pdev, plat_dat);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static const struct of_device_id dwmac_generic_match[] = {
|
|
{ .compatible = "st,spear600-gmac"},
|
|
{ .compatible = "snps,dwmac-3.40a"},
|
|
{ .compatible = "snps,dwmac-3.50a"},
|
|
{ .compatible = "snps,dwmac-3.610"},
|
|
{ .compatible = "snps,dwmac-3.70a"},
|
|
{ .compatible = "snps,dwmac-3.710"},
|
|
{ .compatible = "snps,dwmac-4.00"},
|
|
{ .compatible = "snps,dwmac-4.10a"},
|
|
{ .compatible = "snps,dwmac"},
|
|
{ .compatible = "snps,dwxgmac-2.10"},
|
|
{ .compatible = "snps,dwxgmac"},
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(of, dwmac_generic_match);
|
|
|
|
static struct platform_driver dwmac_generic_driver = {
|
|
.probe = dwmac_generic_probe,
|
|
.remove = stmmac_pltfr_remove,
|
|
.driver = {
|
|
.name = STMMAC_RESOURCE_NAME,
|
|
.pm = &stmmac_pltfr_pm_ops,
|
|
.of_match_table = of_match_ptr(dwmac_generic_match),
|
|
},
|
|
};
|
|
module_platform_driver(dwmac_generic_driver);
|
|
|
|
MODULE_DESCRIPTION("Generic dwmac driver");
|
|
MODULE_LICENSE("GPL v2");
|