aboutsummaryrefslogtreecommitdiffstats
path: root/docs
Commit message (Expand)AuthorAgeFilesLines
* Delete docs/keycode.txt (#4505)fauxpark2018-12-061-263/+0
* Re-order feature list in sidebar (#4555)Drashna Jaelre2018-12-052-2/+2
* Make ARM Audio max volume configurable (#4540)Drashna Jaelre2018-12-031-0/+7
* Add sidebar for ZH (#4533)Jack Humbert2018-12-022-32/+99
* Second try at configuring i18n for docsify and gitbook (#4531)Jack Humbert2018-12-023-1/+38
* Add tap_random_base64 and software timer info to Useful Functions doc (#4360)Drashna Jaelre2018-12-012-17/+21
* Test out i18n of the docs (#4519)Jack Humbert2018-11-301-0/+32
* Typo fix (#4515)Paul Massendari2018-11-291-1/+1
* Add Extrakey support for Brightness up/down (#4477)Giuseppe Rota2018-11-283-0/+6
* Remove RGB_SMOD alias and replace uses with RGB_MOD (#4319)Konstantin Đorđević2018-11-271-2/+0
* Fixed docs/newbs_testing_debugging.md and tmk_core/common/print.hmtei2018-11-271-1/+1
* Revert "Add support for PR and Issue templates to QMK_firmware GitHub (#4491)...Drashna Jaelre2018-11-261-43/+0
* Add support for PR and Issue templates to QMK_firmware GitHub (#4491)Drashna Jaelre2018-11-261-0/+43
* Keymap FAQ: fix positions of KC_HENK and KC_MHEN for JIS layout (#4482)noroadsleft2018-11-251-2/+2
* Add EEPROM_RESET keycode to keycodes.md doc (#4473)noroadsleft2018-11-231-12/+13
* Allows disabling rgb effects in userspace (#4422)Florian Didron2018-11-181-0/+24
* Use a single endpoint for HID reports (#3951)James Laird-Wah2018-11-151-0/+29
* Docs: Supporting a keyboard in the QMK Configurator (#4396)noroadsleft2018-11-143-0/+197
* Backlight status functions (#4259)Phillip Tennen2018-11-141-8/+11
* Fixed Unicode Support heading (#4425)James Osborn2018-11-141-0/+1
* Docs: Fix descriptions of KC_INT1 and KC_INT3KOBAYASHI Daisuke2018-11-132-4/+4
* Remove duplicate row from Available functions table in i2c_driver doc (#4416)Junya Ogura2018-11-131-1/+0
* Fixed incorrect link to feature_combo.md in features.md docs file. Was linked...TheOneTrueTrench2018-11-121-1/+1
* Make sure that avr-gcc@7 gets linked into the path on MacOS.Michael Kaylan2018-11-122-1/+2
* I2C driver docs (#4298)yiancar2018-11-103-0/+85
* Configurable Rainbow Swirl range (#4376)Frank Tackitt2018-11-071-0/+1
* Improve wording, punctuation and capitalization in newbs_getting_started guid...Konstantin Đorđević2018-11-061-40/+38
* Update Features page to reflect all of the features linked in the sidebar/sum...Drashna Jaelre2018-11-061-0/+4
* fix example to reflect caveatDrashna Jaelre2018-11-061-5/+5
* Add EEPROM_RESET keycode to core code (#4234)Drashna Jaelre2018-11-061-12/+13
* Clarify the Mod Tap defines in documentation (#4352)Drashna Jaelre2018-11-062-19/+52
* Remove ALTG(kc) as it's misleading and is not actually AltGr (#4338)Konstantin Đorđević2018-11-062-2/+0
* Instructions on how to flash via STM32 bootloader (#4316)Michael Pio2018-11-031-4/+27
* Add support for Atmega32A to pin declarations and universal matrix (#4015)Jack Humbert2018-11-021-1/+1
* Update feature_bootmagic.md (#4290)Leah2018-10-301-1/+1
* Add Bootmagic Lite to QMK (#4215)Drashna Jaelre2018-10-271-1/+51
* Docs: Add references to One Shot functions, and clean up formatting (#4189)Drashna Jaelre2018-10-271-5/+12
* Add caveat for basic keycodes in Tap Dance docsDrashna Jaelre2018-10-271-0/+2
* Add key caveat to combos docDrashna Jaelre2018-10-271-0/+1
* add better exampleJack Humbert2018-10-261-2/+9
* add support for encoders to coreJack Humbert2018-10-263-0/+43
* Fix incorrect doctoring in feature.backlight.md (#4244)Phillip Tennen2018-10-261-1/+1
* Fix syntax for windowsDrashna Jaelre2018-10-241-1/+1
* Update the installation script PR (#4167)Drashna Jaelre2018-10-221-1/+1
* Add caveats for shifted characters (#4192)Drashna Jaelre2018-10-222-6/+18
* Update hardware config warnings to be more accurateDrashna Jaelre2018-10-221-1/+1
* Minor updates to build tools docs revised (#4195)Dylan Khor2018-10-221-3/+3
* Updates docs - planck 6 and macos instructions (#4201)Colin T.A. Gray2018-10-222-0/+3
* Add instructions for zadig when bootloader device is unknownDrashna Jaelre2018-10-201-1/+9
* Some cleanup of the Useful Functions docs (#4064)Drashna Jaelre2018-10-191-14/+64
n>; /* sanity checks */ regs = platform_get_resource(dev, IORESOURCE_MEM, 0); if (!regs) { HCD_DBG("no IOMEM resource found\n"); return -ENODEV; } irq = platform_get_irq(dev, 0); if (irq < 0) { HCD_DBG("no IRQ resource found\n"); return -ENODEV; } hcd = usb_create_hcd(driver, &dev->dev, "ADM5120"); if (!hcd) return -ENOMEM; hcd->rsrc_start = regs->start; hcd->rsrc_len = regs->end - regs->start + 1; if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) { HCD_DBG("request_mem_region failed\n"); retval = -EBUSY; goto err_dev; } hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len); if (!hcd->regs) { HCD_DBG("ioremap failed\n"); retval = -ENOMEM; goto err_mem; } admhc_hcd_init(hcd_to_admhcd(hcd)); retval = usb_add_hcd(hcd, irq, IRQF_DISABLED); if (retval) goto err_io; return 0; err_io: iounmap(hcd->regs); err_mem: release_mem_region(hcd->rsrc_start, hcd->rsrc_len); err_dev: usb_put_hcd(hcd); return retval; } /* may be called without controller electrically present */ /* may be called with controller, bus, and devices active */ static void admhc_adm5120_remove(struct usb_hcd *hcd, struct platform_device *dev) { usb_remove_hcd(hcd); iounmap(hcd->regs); release_mem_region(hcd->rsrc_start, hcd->rsrc_len); usb_put_hcd(hcd); } /*-------------------------------------------------------------------------*/ static int __devinit admhc_adm5120_start(struct usb_hcd *hcd) { struct admhcd *ahcd = hcd_to_admhcd (hcd); int ret; ret = admhc_init(ahcd); if (ret < 0) { HCD_ERR("unable to init %s\n", hcd->self.bus_name); goto err; } ret = admhc_run(ahcd); if (ret < 0) { HCD_ERR("unable to run %s\n", hcd->self.bus_name); goto err_stop; } return 0; err_stop: admhc_stop(hcd); err: return ret; } /*-------------------------------------------------------------------------*/ static const struct hc_driver adm5120_hc_driver = { .description = hcd_name, .product_desc = "ADM5120 built-in USB 1.1 Host Controller", .hcd_priv_size = sizeof(struct admhcd), /* * generic hardware linkage */ .irq = admhc_irq, .flags = HCD_USB11 | HCD_MEMORY, /* * basic lifecycle operations */ .start = admhc_adm5120_start, .stop = admhc_stop, .shutdown = admhc_shutdown, /* * managing i/o requests and associated device resources */ .urb_enqueue = admhc_urb_enqueue, .urb_dequeue = admhc_urb_dequeue, .endpoint_disable = admhc_endpoint_disable, /* * scheduling support */ .get_frame_number = admhc_get_frame_number, /* * root hub support */ .hub_status_data = admhc_hub_status_data, .hub_control = admhc_hub_control, .hub_irq_enable = admhc_hub_irq_enable, #ifdef CONFIG_PM .bus_suspend = admhc_bus_suspend, .bus_resume = admhc_bus_resume, #endif .start_port_reset = admhc_start_port_reset, }; /*-------------------------------------------------------------------------*/ static int usb_hcd_adm5120_probe(struct platform_device *pdev) { int ret; ret = admhc_adm5120_probe(&adm5120_hc_driver, pdev); return ret; } static int usb_hcd_adm5120_remove(struct platform_device *pdev) { struct usb_hcd *hcd = platform_get_drvdata(pdev); admhc_adm5120_remove(hcd, pdev); return 0; } #ifdef CONFIG_PM /* TODO */ static int usb_hcd_adm5120_suspend(struct platform_device *dev) { struct usb_hcd *hcd = platform_get_drvdata(dev); return 0; } static int usb_hcd_adm5120_resume(struct platform_device *dev) { struct usb_hcd *hcd = platform_get_drvdata(dev); return 0; } #else #define usb_hcd_adm5120_suspend NULL #define usb_hcd_adm5120_resume NULL #endif /* CONFIG_PM */ static struct platform_driver usb_hcd_adm5120_driver = { .probe = usb_hcd_adm5120_probe, .remove = usb_hcd_adm5120_remove, .shutdown = usb_hcd_platform_shutdown, .suspend = usb_hcd_adm5120_suspend, .resume = usb_hcd_adm5120_resume, .driver = { .name = "adm5120-hcd", .owner = THIS_MODULE, }, };