Home
last modified time | relevance | path

Searched full:sbs (Results 1 – 25 of 130) sorted by relevance

123456

/OK3568_Linux_fs/kernel/drivers/acpi/
H A Dsbs.c3 * sbs.c - ACPI Smart Battery System Driver ($Revision: 2.0 $)
28 #define ACPI_SBS_CLASS "sbs"
57 struct acpi_sbs *sbs; member
135 struct acpi_sbs *sbs = to_acpi_sbs(psy); in sbs_get_ac_property() local
138 val->intval = sbs->charger_present; in sbs_get_ac_property()
286 .name = "sbs-charger",
327 static int acpi_manager_get_info(struct acpi_sbs *sbs) in acpi_manager_get_info() argument
332 result = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_MANAGER, in acpi_manager_get_info()
335 sbs->batteries_supported = battery_system_info & 0x000f; in acpi_manager_get_info()
344 result = acpi_smbus_read(battery->sbs->hc, in acpi_battery_get_info()
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/power/supply/
H A Dsbs,sbs-battery.yaml4 $id: http://devicetree.org/schemas/power/supply/sbs,sbs-battery.yaml#
7 title: SBS compliant battery
24 - sbs,sbs-battery
26 - const: sbs,sbs-battery
31 sbs,i2c-retry-count:
37 sbs,poll-retry-count:
44 sbs,battery-detect-gpios:
50 sbs,disable-charger-broadcasts:
52 SBS batteries by default send broadcast messages to SBS compliant chargers to
53 configure max. charge current/voltage. If your hardware does not have an SBS
[all …]
H A Dsbs,sbs-manager.txt1 Binding for sbs-manager
4 - compatible: "<vendor>,<part-number>", "sbs,sbs-charger" as fallback. The part
23 compatible = "lltc,ltc1760", "sbs,sbs-manager";
37 compatible = "ti,bq2060", "sbs,sbs-battery";
39 sbs,battery-detect-gpios = <&batman 1 1>;
49 compatible = "ti,bq2060", "sbs,sbs-battery";
51 sbs,battery-detect-gpios = <&batman 2 1>;
61 compatible = "ti,bq2060", "sbs,sbs-battery";
63 sbs,battery-detect-gpios = <&batman 3 1>;
H A Dsbs_sbs-charger.txt1 SBS sbs-charger
5 - compatible: "<vendor>,<part-number>", "sbs,sbs-charger" as fallback. The part
17 compatible = "lltc,ltc4100", "sbs,sbs-charger";
/OK3568_Linux_fs/kernel/drivers/media/tuners/
H A Dtda827x.c338 u8 sbs; member
343 { .lomax = 56875000, .svco = 3, .spd = 4, .scr = 0, .sbs = 0, .gc3 = 1},
344 { .lomax = 67250000, .svco = 0, .spd = 3, .scr = 0, .sbs = 0, .gc3 = 1},
345 { .lomax = 81250000, .svco = 1, .spd = 3, .scr = 0, .sbs = 0, .gc3 = 1},
346 { .lomax = 97500000, .svco = 2, .spd = 3, .scr = 0, .sbs = 0, .gc3 = 1},
347 { .lomax = 113750000, .svco = 3, .spd = 3, .scr = 0, .sbs = 1, .gc3 = 1},
348 { .lomax = 134500000, .svco = 0, .spd = 2, .scr = 0, .sbs = 1, .gc3 = 1},
349 { .lomax = 154000000, .svco = 1, .spd = 2, .scr = 0, .sbs = 1, .gc3 = 1},
350 { .lomax = 162500000, .svco = 1, .spd = 2, .scr = 0, .sbs = 1, .gc3 = 1},
351 { .lomax = 183000000, .svco = 2, .spd = 2, .scr = 0, .sbs = 1, .gc3 = 1},
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/dts/
H A Dcros-ec-sbs.dtsi2 * Smart battery dts fragment for devices that use cros-ec-sbs
10 battery: sbs-battery@b {
11 compatible = "sbs,sbs-battery";
13 sbs,i2c-retry-count = <2>;
14 sbs,poll-retry-count = <1>;
H A Dexynos5800-peach-pi.dts213 battery: sbs-battery@b {
214 compatible = "sbs,sbs-battery";
216 sbs,poll-retry-count = <1>;
217 sbs,i2c-retry-count = <2>;
H A Dexynos5420-peach-pit.dts350 battery: sbs-battery@b {
351 compatible = "sbs,sbs-battery";
353 sbs,poll-retry-count = <1>;
354 sbs,i2c-retry-count = <2>;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/overlay/
H A Dtraversal.hpp384 int& op_index, sbs_type& sbs) const in select_from_cluster_union()
387 sort_by_side::aggregate_operations(sbs, aggregation, m_turns, operation_union); in select_from_cluster_union()
405 for (std::size_t i = 1; i < sbs.m_ranked_points.size(); i++) in select_from_cluster_union()
407 typename sbs_type::rp const& ranked_point = sbs.m_ranked_points[i]; in select_from_cluster_union()
464 int& op_index, sbs_type const& sbs) const in analyze_cluster_intersection()
467 sort_by_side::aggregate_operations(sbs, aggregation, m_turns, operation_intersection); in analyze_cluster_intersection()
548 std::size_t selected_index = sbs.m_ranked_points.size(); in analyze_cluster_intersection()
549 for (std::size_t i = 0; i < sbs.m_ranked_points.size(); i++) in analyze_cluster_intersection()
551 typename sbs_type::rp const& ranked_point = sbs.m_ranked_points[i]; in analyze_cluster_intersection()
570 if (selected_index < sbs.m_ranked_points.size()) in analyze_cluster_intersection()
[all …]
H A Daggregate_operations.hpp195 template <typename Sbs, typename Turns>
196 inline void aggregate_operations(Sbs const& sbs, std::vector<rank_with_rings>& aggregation, in aggregate_operations() argument
204 for (std::size_t i = 0; i < sbs.m_ranked_points.size(); i++) in aggregate_operations()
206 typename Sbs::rp const& ranked_point = sbs.m_ranked_points[i]; in aggregate_operations()
H A Dhandle_colocations.hpp734 sbs_type sbs(strategy); in gather_cluster_properties() local
750 sbs.add(op, turn_index, i, geometry1, geometry2, first); in gather_cluster_properties()
754 sbs.apply(turn_point); in gather_cluster_properties()
756 sbs.find_open(); in gather_cluster_properties()
757 sbs.assign_zones(for_operation); in gather_cluster_properties()
759 cinfo.open_count = sbs.open_count(for_operation); in gather_cluster_properties()
762 for (std::size_t i = 0; i < sbs.m_ranked_points.size(); i++) in gather_cluster_properties()
764 const typename sbs_type::rp& ranked = sbs.m_ranked_points[i]; in gather_cluster_properties()
/OK3568_Linux_fs/kernel/drivers/power/supply/
H A Dsbs-charger.c5 * This adds support for sbs-charger compilant chips as defined here:
6 * http://sbs-forum.org/specs/sbc110.pdf
8 * Implemetation based on sbs-battery.c
159 .name = "sbs-charger",
206 * The sbs-charger spec doesn't impose the use of an interrupt. So in in sbs_probe()
242 { .compatible = "sbs,sbs-charger" },
249 { "sbs-charger", 0 },
259 .name = "sbs-charger",
266 MODULE_DESCRIPTION("SBS smart charger driver");
H A Dsbs-battery.c3 * Gas Gauge driver for SBS Compliant Batteries
19 #include <linux/power/sbs-battery.h>
567 /* SBS spec doesn't have a general health command. */ in sbs_get_battery_presence_and_health()
631 /* sbs spec says that this can be >100 % in sbs_get_battery_property()
666 /* sbs provides energy in units of 10mWh. in sbs_unit_adjustment()
686 /* sbs provides battery temperature in 0.1K in sbs_unit_adjustment()
694 /* sbs provides time to empty and time to full in minutes. in sbs_unit_adjustment()
1086 sbs_desc->name = devm_kasprintf(&client->dev, GFP_KERNEL, "sbs-%s", in sbs_probe()
1105 rc = device_property_read_u32(&client->dev, "sbs,i2c-retry-count", in sbs_probe()
1110 rc = device_property_read_u32(&client->dev, "sbs,poll-retry-count", in sbs_probe()
[all …]
H A Dsbs-manager.c3 * Driver for SBS compliant Smart Battery System Managers
10 * Datasheet SBSM: http://sbs-forum.org/specs/sbsm100b.pdf
413 { "sbs-manager", 0 },
421 { .compatible = "sbs,sbs-manager" },
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/syslinux/syslinux/
H A D0008-libinstaller-syslinuxext-implement-syslinux_patch_bo.patch206 - struct fat_boot_sector *sbs;
227 - sbs = (struct fat_boot_sector *)syslinux_bootsect;
231 - set_16(&sbs->bsSectors, 0);
233 - set_16(&sbs->bsSectors, totalsectors);
235 - set_32(&sbs->bsHugeSectors, totalsectors);
237 - set_16(&sbs->bsBytesPerSec, SECTOR_SIZE);
238 - set_16(&sbs->bsSecPerTrack, geo.sectors);
239 - set_16(&sbs->bsHeads, geo.heads);
240 - set_32(&sbs->bsHiddenSecs, geo.start);
400 + struct fat_boot_sector *sbs;
[all …]
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Dcros-ec-sbs.dtsi2 * Smart battery dts fragment for devices that use cros-ec-sbs
46 battery: sbs-battery@b {
47 compatible = "sbs,sbs-battery";
49 sbs,i2c-retry-count = <2>;
50 sbs,poll-retry-count = <1>;
H A Dimx6q-evi.dts177 battery: sbs-battery@b {
178 compatible = "sbs,sbs-battery";
180 sbs,poll-retry-count = <100>;
181 sbs,i2c-retry-count = <100>;
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/i2c/
H A Dgoogle,cros-ec-i2c-tunnel.yaml59 battery: sbs-battery@b {
60 compatible = "sbs,sbs-battery";
62 sbs,poll-retry-count = <1>;
/OK3568_Linux_fs/yocto/meta-openembedded/meta-multimedia/recipes-multimedia/dvb-apps/files/dvb-scan-table/dvb-t/
H A Dau-Goulburn-Rocky_Hill533 [SBS ONE]
551 [SBS HD]
569 [SBS TWO]
623 [SBS Radio 1]
637 [SBS Radio 2]
651 [SBS Radio 3]
H A Dau-Wollongong62 # SBS UHF54
131 # SBS - same as North
137 # SBS UHF49
H A Dau-Tamworth2 # SBS
69 # SBS
136 # SBS
H A Dau-Hervey_Bay-Ghost_Hill56 # SBS UHF28
69 # SBS UHF34
/OK3568_Linux_fs/kernel/Documentation/admin-guide/media/
H A Ddvb_intro.rst108 SBS 184.500 Mhz
528 [SBS HD]
543 [SBS DIGITAL 1]
558 [SBS DIGITAL 2]
573 [SBS EPG]
588 [SBS RADIO 1]
603 [SBS RADIO 2]
/OK3568_Linux_fs/kernel/Documentation/hwmon/
H A Dlm83.rst46 SBS P014
47 SBS PSL09
78 On the SBS P014, this is different, since the LM83 is the only hardware
/OK3568_Linux_fs/kernel/include/linux/power/
H A Dsbs-battery.h3 * Gas Gauge driver for SBS Compliant Gas Gauges
15 * struct sbs_platform_data - platform data for sbs devices

123456