device.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * Copyright 2014 Red Hat Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20. * OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. * Authors: Ben Skeggs <bskeggs@redhat.com>
  23. */
  24. #include "device.h"
  25. void
  26. nvif_device_fini(struct nvif_device *device)
  27. {
  28. nvif_object_fini(&device->base);
  29. }
  30. int
  31. nvif_device_init(struct nvif_object *parent, void (*dtor)(struct nvif_device *),
  32. u32 handle, u32 oclass, void *data, u32 size,
  33. struct nvif_device *device)
  34. {
  35. int ret = nvif_object_init(parent, (void *)dtor, handle, oclass,
  36. data, size, &device->base);
  37. if (ret == 0) {
  38. device->object = &device->base;
  39. device->info.version = 0;
  40. ret = nvif_object_mthd(&device->base, NV_DEVICE_V0_INFO,
  41. &device->info, sizeof(device->info));
  42. }
  43. return ret;
  44. }
  45. static void
  46. nvif_device_del(struct nvif_device *device)
  47. {
  48. nvif_device_fini(device);
  49. kfree(device);
  50. }
  51. int
  52. nvif_device_new(struct nvif_object *parent, u32 handle, u32 oclass,
  53. void *data, u32 size, struct nvif_device **pdevice)
  54. {
  55. struct nvif_device *device = kzalloc(sizeof(*device), GFP_KERNEL);
  56. if (device) {
  57. int ret = nvif_device_init(parent, nvif_device_del, handle,
  58. oclass, data, size, device);
  59. if (ret) {
  60. kfree(device);
  61. device = NULL;
  62. }
  63. *pdevice = device;
  64. return ret;
  65. }
  66. return -ENOMEM;
  67. }
  68. void
  69. nvif_device_ref(struct nvif_device *device, struct nvif_device **pdevice)
  70. {
  71. nvif_object_ref(&device->base, (struct nvif_object **)pdevice);
  72. }