ptable.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * Copyright (C) 2008 The Android Open Source Project
  3. * All rights reserved.
  4. *
  5. *Copyright (c) 2009-2011, Code Aurora Forum. All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * * Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * * Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in
  14. * the documentation and/or other materials provided with the
  15. * distribution.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  18. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  19. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  20. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  21. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  22. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  23. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  24. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  25. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  26. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  27. * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  28. * SUCH DAMAGE.
  29. */
  30. #include <list.h>
  31. #include <stdlib.h>
  32. #include <string.h>
  33. #include <lib/ptable.h>
  34. void ptable_init(struct ptable *ptable)
  35. {
  36. ASSERT(ptable);
  37. memset(ptable, 0, sizeof(struct ptable));
  38. }
  39. char* ptype[] = {"Apps", "Modem"};
  40. char* pperm[] = {"No", "Yes"};
  41. void ptable_add(struct ptable *ptable, char *name, unsigned start,
  42. unsigned length, unsigned flags, char type, char perm)
  43. {
  44. struct ptentry *ptn;
  45. ASSERT(ptable && ptable->count < MAX_PTABLE_PARTS);
  46. ptn = &ptable->parts[ptable->count++];
  47. strlcpy(ptn->name, name, MAX_PTENTRY_NAME);
  48. ptn->start = start;
  49. ptn->length = length;
  50. ptn->flags = flags;
  51. ptn->type = type;
  52. ptn->perm = perm;
  53. }
  54. void ptable_dump(struct ptable *ptable)
  55. {
  56. struct ptentry *ptn;
  57. int i;
  58. for (i = 0; i < ptable->count; ++i) {
  59. ptn = &ptable->parts[i];
  60. dprintf(INFO, "ptn %d name='%s' start=%08x len=%08x "
  61. "flags=%08x type=%s Writable=%s\n", i, ptn->name, ptn->start, ptn->length,
  62. ptn->flags, ptype[(unsigned short) ptn->type], pperm[(unsigned short) ptn->perm]);
  63. }
  64. }
  65. struct ptentry *ptable_find(struct ptable *ptable, const char *name)
  66. {
  67. struct ptentry *ptn;
  68. int i;
  69. for (i = 0; i < ptable->count; ++i) {
  70. ptn = &ptable->parts[i];
  71. if (!strcmp(ptn->name, name))
  72. return ptn;
  73. }
  74. return NULL;
  75. }
  76. struct ptentry *ptable_get(struct ptable *ptable, int n)
  77. {
  78. if (n >= ptable->count)
  79. return NULL;
  80. return &ptable->parts[n];
  81. }
  82. int ptable_size(struct ptable *ptable)
  83. {
  84. return ptable->count;
  85. }